Add a comment explaining why gcc is needed.

X-MFC-With:	278231
MFC after:	2 weeks
This commit is contained in:
Justin Hibbits 2015-02-06 02:35:29 +00:00
parent a1d03f4480
commit 4656c46d63
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=278305

View File

@ -9,6 +9,10 @@ CFLAGS+= -I${.CURDIR}/../common \
-I${.CURDIR}/../../libc/include \
-mlongcall
# XXX: See the log for r232932 as to why the above -mlongcall is needed. Since
# clang doesn't support -mlongcall, and testing shows a clang linked with a
# clang-built csu segfaults, this must currently be compiled with gcc. Once
# clang supports -mlongcall, or we get a fixed ld, this can be revisited.
CC:= gcc
COMPILER_TYPE:= gcc