-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rg crashes with -C target-cpu=native
on Xeon E5-2670
#36677
Comments
looks like #36448? EDIT: Although that one's about skylake |
Likely not; the arch is ivy bridge here (= different detection pathes), but then the detection for all ivy bridges should be wrong… which is strange if it went for so long undetected. Does anybody else have an ivy bridge ( Either way the bug likely goes into LLVM repo. |
Getting the same error on skylake and LLVM 3.9. I understand it's an LLVM bug but shouldn't it be fixed?
ripgrep compiled with:
|
Getting this error too. Minimal example from #36448 still works: fn main() {
println!("{:?}", std::env::current_dir());
} Additional information: $ rustc -vV
rustc 1.17.0-nightly (b1e31766d 2017-03-03)
binary: rustc
commit-hash: b1e31766da75b188062c59f38cd6e8544b902afd
commit-date: 2017-03-03
host: x86_64-unknown-linux-gnu
release: 1.17.0-nightly
LLVM version: 3.9
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 78
model name : Intel(R) Core(TM) i7-6500U CPU @ 2.50GHz
stepping : 3
microcode : 0x49
cpu MHz : 424.835
cache size : 4096 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 22
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch epb intel_pt tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx rdseed adx smap clflushopt xsaveopt xsavec xgetbv1 dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp
bugs :
bogomips : 5183.95
clflush size : 64
cache_alignment : 64
address sizes : 39 bits physical, 48 bits virtual
power management:
(3 more cores) Changing |
I posted my cpuinfo earlier but here is the output of
I seem to understand that |
I did some more digging and what I am experiencing (and maybe others) is an LLVM bug that's been fixed by this commit: llvm-mirror/llvm@6974a46 |
triage: P-medium We discussed this in the @rust-lang/compiler meeting. The conclusion was that we ought to wait for LLVM 4.0 upgrade to fix it, which is apparently coming Real Soon Now (see #37609 for info). |
I can confirm it's fixed for me on nightly 2017-06-21. |
If I
RUSTFLAGS="-C target-cpu=native" cargo install ripgrep
then runrg --version
it crashes with an illegal instruction.rg version is 0.1.17, rustc is
rustc 1.13.0-nightly (4f9812a59 2016-09-21)
.Seems like rustc is using avx2 when it doesn't exist. cc @BurntSushi
The text was updated successfully, but these errors were encountered: