svn commit: r217102 - head/lib/libcompiler_rt

Konstantin Belousov kib at FreeBSD.org
Fri Jan 7 15:59:23 UTC 2011


Author: kib
Date: Fri Jan  7 15:59:23 2011
New Revision: 217102
URL: http://svn.freebsd.org/changeset/base/217102

Log:
  Fix braino in r217101. -Wa is used to supply assembler flag to cc driver.
  
  Noted by:	Anonymous <swell.k gmail com>

Modified:
  head/lib/libcompiler_rt/Makefile

Modified: head/lib/libcompiler_rt/Makefile
==============================================================================
--- head/lib/libcompiler_rt/Makefile	Fri Jan  7 14:35:45 2011	(r217101)
+++ head/lib/libcompiler_rt/Makefile	Fri Jan  7 15:59:23 2011	(r217102)
@@ -158,7 +158,7 @@ SYMLINKS+=libcompiler_rt_p.a ${LIBDIR}/l
 
 .if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386"
 AFLAGS+=--noexecstack
-ACFLAGS+=-Wl,a,--noexecstack
+ACFLAGS+=-Wa,--noexecstack
 .endif
 
 


More information about the svn-src-head mailing list