svn commit: r217393 - head/lib/libcompiler_rt

Konstantin Belousov kib at FreeBSD.org
Fri Jan 14 11:23:39 UTC 2011


Author: kib
Date: Fri Jan 14 11:23:39 2011
New Revision: 217393
URL: http://svn.freebsd.org/changeset/base/217393

Log:
  Mark libcompiler_rt as not needed executable stack on powerpc.
  
  Reviewed and tested by:	nwhitehorn

Modified:
  head/lib/libcompiler_rt/Makefile

Modified: head/lib/libcompiler_rt/Makefile
==============================================================================
--- head/lib/libcompiler_rt/Makefile	Fri Jan 14 11:12:56 2011	(r217392)
+++ head/lib/libcompiler_rt/Makefile	Fri Jan 14 11:23:39 2011	(r217393)
@@ -156,7 +156,8 @@ SYMLINKS+=libcompiler_rt_p.a ${LIBDIR}/l
 . endif
 .endif
 
-.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386"
+.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386" || \
+    ${MACHINE_CPUARCH} == "powerpc"
 AFLAGS+=--noexecstack
 ACFLAGS+=-Wa,--noexecstack
 .endif


More information about the svn-src-all mailing list