svn commit: r208351 - projects/clangbsd

Roman Divacky rdivacky at FreeBSD.org
Thu May 20 15:45:04 UTC 2010


Author: rdivacky
Date: Thu May 20 15:45:04 2010
New Revision: 208351
URL: http://svn.freebsd.org/changeset/base/208351

Log:
  switch 32bit shims to using -isysroot instead of -isystem
  fixing build after the recent move of clang/llvm libs
  to lib/ (and being generally more correct)

Modified:
  projects/clangbsd/Makefile.inc1

Modified: projects/clangbsd/Makefile.inc1
==============================================================================
--- projects/clangbsd/Makefile.inc1	Thu May 20 13:16:42 2010	(r208350)
+++ projects/clangbsd/Makefile.inc1	Thu May 20 15:45:04 2010	(r208351)
@@ -276,7 +276,7 @@ LIB32CPUFLAGS=	-march=i686 -mmmx -msse -
 LIB32CPUFLAGS=	-march=${TARGET_CPUTYPE}
 .endif
 LIB32FLAGS=	-m32 ${LIB32CPUFLAGS} -mfancy-math-387 -DCOMPAT_32BIT \
-		-isystem ${LIB32TMP}/usr/include/ \
+		-isysroot ${LIB32TMP}/ \
 		-L${LIB32TMP}/usr/lib32 \
 		-B${LIB32TMP}/usr/lib32
 


More information about the svn-src-projects mailing list