Search
j0ke.net Open Build Service
>
Projects
>
devel
>
ocaml
> ocaml-configure-Allow-user-defined-C-compiler-flags.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File ocaml-configure-Allow-user-defined-C-compiler-flags.patch of Package ocaml (Revision 17)
Currently displaying revision
17
,
show latest
From: "Richard W.M. Jones" <rjones@redhat.com> Date: Tue, 29 May 2012 20:44:18 +0100 Subject: configure: Allow user defined C compiler flags. --- configure | 4 ++++ 1 file changed, 4 insertions(+) Index: ocaml-4.01.0/configure =================================================================== --- ocaml-4.01.0.orig/configure +++ ocaml-4.01.0/configure @@ -1612,6 +1612,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"