https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=202586
Jan Beich <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |Not A Bug CC| |[email protected] Status|New |Closed --- Comment #3 from Jan Beich <[email protected]> --- So, your toolchain is indeed broken as one or more clang headers are missing. Most likely due to a pilot error. Better ask for an advice how to recover on freebsd-questions@ maillist. (In reply to sasamotikomi from comment #2) > Target: i386-unknown-freebsd10.1 [...] > find /usr/include /usr/lib/clang -name emmintrin.h > find: /usr/lib/clang: No such file or directory How did you end up on 10.1? Was it clean install or an upgrade? Perhaps, something went wrong during a major version upgrade or when switching branches (e.g. -CURRENT to -STABLE). # my poudriere jail for 10.1-RELEASE-p19 i386 $ find /usr/include /usr/lib/clang -name emmintrin.h /usr/include/clang/3.4.1/emmintrin.h find: /usr/lib/clang: No such file or directory # my poudriere jail for 9.3-RELEASE-p24 i386 $ find /usr/include /usr/lib/clang -name emmintrin.h /usr/include/clang/3.4.1/emmintrin.h /usr/include/gcc/4.2/emmintrin.h find: /usr/lib/clang: No such file or directory If you have /usr/src populated try reinstalling just headers and comparing the list of files. $ mv /usr/include /usr/include.old $ make distrib-dirs -C /usr/src $ make installincludes -C /usr/src $ (cd /usr/include.old && find . | sort) >old.list $ (cd /usr/include && find . | sort) >new.list $ diff -u old.list new.list -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-gecko To unsubscribe, send any mail to "[email protected]"
