2015-06-23 16:04:09 +00:00
|
|
|
From 67b0b755b208027600255e379f98cdd8a919c7aa Mon Sep 17 00:00:00 2001
|
2012-05-29 21:44:10 +00:00
|
|
|
From: "Richard W.M. Jones" <rjones@redhat.com>
|
|
|
|
Date: Tue, 29 May 2012 20:44:18 +0100
|
2015-06-29 20:55:46 +00:00
|
|
|
Subject: [PATCH 05/19] configure: Allow user defined C compiler flags.
|
2012-05-29 21:44:10 +00:00
|
|
|
|
|
|
|
---
|
2012-10-16 18:19:17 +00:00
|
|
|
configure | 4 ++++
|
2012-06-05 22:10:05 +00:00
|
|
|
1 file changed, 4 insertions(+)
|
2012-05-29 21:44:10 +00:00
|
|
|
|
|
|
|
diff --git a/configure b/configure
|
2015-06-16 12:49:56 +00:00
|
|
|
index 4ea1498..d006010 100755
|
2012-05-29 21:44:10 +00:00
|
|
|
--- a/configure
|
|
|
|
+++ b/configure
|
2015-06-16 12:49:56 +00:00
|
|
|
@@ -1701,6 +1701,10 @@ case "$buggycc" in
|
2012-05-29 21:44:10 +00:00
|
|
|
nativecccompopts="$nativecccompopts -fomit-frame-pointer";;
|
|
|
|
esac
|
|
|
|
|
|
|
|
+# Allow user defined C Compiler flags
|
|
|
|
+bytecccompopts="$bytecccompopts $CFLAGS"
|
|
|
|
+nativecccompopts="$nativecccompopts $CFLAGS"
|
|
|
|
+
|
|
|
|
# Finish generated files
|
|
|
|
|
|
|
|
cclibs="$cclibs $mathlib"
|
|
|
|
--
|
2015-06-10 10:53:05 +00:00
|
|
|
2.3.1
|
2012-05-29 21:44:10 +00:00
|
|
|
|