2017-11-06 12:39:44 +00:00
|
|
|
From 66e774a2d3f8ebe6b6a4a3775112fc63619add8c 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
|
2017-11-06 12:39:44 +00:00
|
|
|
Subject: [PATCH 3/4] 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
|
2017-11-06 12:39:44 +00:00
|
|
|
index 203396554..9311589cf 100755
|
2012-05-29 21:44:10 +00:00
|
|
|
--- a/configure
|
|
|
|
+++ b/configure
|
2017-11-06 12:39:44 +00:00
|
|
|
@@ -2046,6 +2046,10 @@ if $flat_float_array; then
|
|
|
|
echo "#define FLAT_FLOAT_ARRAY" >> m.h
|
2016-11-03 18:32:19 +00:00
|
|
|
fi
|
2012-05-29 21:44:10 +00:00
|
|
|
|
|
|
|
+# Allow user defined C Compiler flags
|
|
|
|
+bytecccompopts="$bytecccompopts $CFLAGS"
|
|
|
|
+nativecccompopts="$nativecccompopts $CFLAGS"
|
|
|
|
+
|
|
|
|
# Finish generated files
|
|
|
|
|
|
|
|
cclibs="$cclibs $mathlib"
|
|
|
|
--
|
2017-09-13 20:07:17 +00:00
|
|
|
2.13.2
|
2012-05-29 21:44:10 +00:00
|
|
|
|