From: Lionel Sambuc Date: Mon, 1 Sep 2014 09:11:32 +0000 (+0200) Subject: tools/llvm: Do not build with symbols X-Git-Tag: v3.3.0~29 X-Git-Url: http://zhaoyanbai.com/repos/dnssec-keyfromlabel.html?a=commitdiff_plain;h=45474c53684de4c17829b66af46d7779dd845237;p=minix.git tools/llvm: Do not build with symbols Do not build clang and llvm libraries with debug symbols, when built as a cross-compilation tool. This saves a lot of space (about 4G), and hopefully also some compilation time. Change-Id: Ifeb91d6932d667fa901a8efe1a95a922e6f6ba98 --- diff --git a/external/bsd/llvm/Makefile.inc b/external/bsd/llvm/Makefile.inc index 8cfb4ca75..4e8282247 100644 --- a/external/bsd/llvm/Makefile.inc +++ b/external/bsd/llvm/Makefile.inc @@ -42,7 +42,11 @@ MCLINKER_INCLUDE_CONFIG= ${LLVM_TOPLEVEL}/config/mclinker LLVM_INCLUDE_OBJDIR!= cd ${NETBSDSRCDIR}/tools/llvm-include && ${PRINTOBJDIR} LLVM_TOOLCONF_OBJDIR!= cd ${NETBSDSRCDIR}/tools/llvm && ${PRINTOBJDIR} HOST_CPPFLAGS+= ${CPPFLAGS} +.if !defined(__MINIX) HOST_CXXFLAGS+= -O2 -g -fno-rtti -fno-exceptions +.else +HOST_CXXFLAGS+= -O2 -fno-rtti -fno-exceptions +.endif # !defined(__MINIX) .if ${MKLLD:Uno} == "yes" HOST_CPPFLAGS+= -std=c++11 .endif