svn commit: r314152 - head/lib/libcompiler_rt

Jung-uk Kim jkim at FreeBSD.org
Thu Feb 23 17:46:39 UTC 2017


Author: jkim
Date: Thu Feb 23 17:46:38 2017
New Revision: 314152
URL: https://svnweb.freebsd.org/changeset/base/314152

Log:
  Remove an assembler flag, which is redundant since r309124.  The upstream
  took care of it by introducing a macro NO_EXEC_STACK_DIRECTIVE.
  
  http://llvm.org/viewvc/llvm-project?rev=273500&view=rev
  
  Reviewed by:	dim

Modified:
  head/lib/libcompiler_rt/Makefile

Modified: head/lib/libcompiler_rt/Makefile
==============================================================================
--- head/lib/libcompiler_rt/Makefile	Thu Feb 23 17:44:06 2017	(r314151)
+++ head/lib/libcompiler_rt/Makefile	Thu Feb 23 17:46:38 2017	(r314152)
@@ -25,10 +25,4 @@ SYMLINKS+=	libcompiler_rt.a ${LIBDIR}/li
 SYMLINKS+=	libcompiler_rt_p.a ${LIBDIR}/libgcc_p.a
 .endif
 
-.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386" || \
-    ${MACHINE_CPUARCH} == "powerpc" || ${MACHINE_ARCH:Marmv6*}
-AFLAGS+=	--noexecstack
-ACFLAGS+=	-Wa,--noexecstack
-.endif
-
 .include <bsd.lib.mk>


More information about the svn-src-all mailing list