svn commit: r248365 - head/sys/conf

Andrew Turner andrew at FreeBSD.org
Sat Mar 16 03:57:46 UTC 2013


Author: andrew
Date: Sat Mar 16 03:57:46 2013
New Revision: 248365
URL: http://svnweb.freebsd.org/changeset/base/248365

Log:
  The compiler argument -mno-apcs-frame has no meaning when using EABI as we
  will use aapcs frames, not apcs frames.

Modified:
  head/sys/conf/Makefile.arm

Modified: head/sys/conf/Makefile.arm
==============================================================================
--- head/sys/conf/Makefile.arm	Sat Mar 16 03:50:27 2013	(r248364)
+++ head/sys/conf/Makefile.arm	Sat Mar 16 03:57:46 2013	(r248365)
@@ -44,7 +44,9 @@ CFLAGS += -mno-thumb-interwork
 .endif
 
 .if empty(DDB_ENABLED)
+.if !defined(WITH_ARM_EABI)
 CFLAGS += -mno-apcs-frame
+.endif
 .elif defined(WITH_ARM_EABI)
 CFLAGS += -funwind-tables
 .if ${COMPILER_TYPE} == "clang"


More information about the svn-src-all mailing list