$CFLAGS are redundant for compiling .s files.
GCC stays quiet, but Clang gives a warning of unused arguments. The configure check greps for warning, so the check fails. Remove $CFLAGS to clang doesn't emit the warnings. PR: ports/152480 Submitted by: me Patch by: dim@ Approved by: maintainer
This commit is contained in:
parent
ee86f5414d
commit
62ea53c8fb
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=266303
@ -1,5 +1,5 @@
|
||||
--- configure.orig 2010-06-03 20:49:28.000000000 +0000
|
||||
+++ configure 2010-06-03 20:50:18.000000000 +0000
|
||||
--- configure.orig 2010-11-22 12:53:14.000000000 +0100
|
||||
+++ configure 2010-11-22 12:53:26.000000000 +0100
|
||||
@@ -12231,6 +12231,9 @@
|
||||
powerpc-*-freebsd*)
|
||||
TARGET=POWERPC_FREEBSD; TARGETDIR=powerpc
|
||||
@ -10,5 +10,12 @@
|
||||
powerpc*-*-rtems*)
|
||||
TARGET=POWERPC; TARGETDIR=powerpc
|
||||
;;
|
||||
|
||||
|
||||
@@ -14484,7 +14487,7 @@
|
||||
|
||||
libffi_cv_as_x86_pcrel=yes
|
||||
echo '.text; foo: nop; .data; .long foo-.; .text' > conftest.s
|
||||
- if $CC $CFLAGS -c conftest.s 2>&1 | grep -i warning > /dev/null; then
|
||||
+ if $CC -c conftest.s 2>&1 | grep -i warning > /dev/null; then
|
||||
libffi_cv_as_x86_pcrel=no
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user