Disable avx512dq extension to make CI pass

This commit is contained in:
Brendan Hansknecht 2020-10-26 21:10:30 -07:00
parent aeaba90e28
commit adb2e932e7

View file

@ -68,7 +68,7 @@ pub fn target_machine(
Target::from_name(arch).unwrap().create_target_machine(
&TargetTriple::create(target_triple_str(target)),
arch,
"+avx2", // TODO this string was used uncritically from an example, and should be reexamined
"-avx512dq", // TODO: this probably should be TargetMachine::get_host_cpu_features() to enable all features
opt,
reloc,
model,