1837515a64
- The language is now officially called OCaml (not Objective Caml, O'Caml etc) - Rebase patches on top: . New ARM backend patch no longer required, since upstream. . Replacement config.guess, config.sub no longer required, since upstream versions are newer. . ppc64 backend known not to work; will fix shortly. - New tool: ocamloptp (ocamlopt profiler). - New VERSION file in ocaml-runtime package. - New ocaml-compiler-libs subpackage. - Rearrange ExclusiveArch alphanumerically. - alpha, ia64 native backends have been removed upstream, so they are no longer supported as native compiler targets. - Remove defattr.
28 lines
695 B
Diff
28 lines
695 B
Diff
From 18750e6b76911e508ddd632df073566179d091d6 Mon Sep 17 00:00:00 2001
|
|
From: "Richard W.M. Jones" <rjones@redhat.com>
|
|
Date: Tue, 29 May 2012 20:44:18 +0100
|
|
Subject: [PATCH 3/5] configure: Allow user defined C compiler flags.
|
|
|
|
---
|
|
configure | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/configure b/configure
|
|
index 72f4240..eafd6d9 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -1572,6 +1572,10 @@ case "$buggycc" in
|
|
nativecccompopts="$nativecccompopts -fomit-frame-pointer";;
|
|
esac
|
|
|
|
+# Allow user defined C Compiler flags
|
|
+bytecccompopts="$bytecccompopts $CFLAGS"
|
|
+nativecccompopts="$nativecccompopts $CFLAGS"
|
|
+
|
|
# Finish generated files
|
|
|
|
cclibs="$cclibs $mathlib"
|
|
--
|
|
1.7.10
|
|
|