Date: Fri, 7 Jan 2011 15:59:23 +0000 (UTC) From: Konstantin Belousov <kib@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r217102 - head/lib/libcompiler_rt Message-ID: <201101071559.p07FxNRV057425@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201101071559.p07FxNRV057425>