[Bug 202586] mail/thunderbird fail to build/wrong CFLAGS sse2 on i386
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Fri Aug 28 17:26:45 UTC 2015
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=202586
Jan Beich <jbeich at FreeBSD.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Resolution|--- |Not A Bug
CC| |jbeich at FreeBSD.org
Status|New |Closed
--- Comment #3 from Jan Beich <jbeich at FreeBSD.org> ---
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.
More information about the freebsd-gecko
mailing list