diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2003-01-06 14:57:01 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2003-01-06 14:57:01 +0000 |
commit | e096f7d590bce6460be00bb852724e8b61714663 (patch) | |
tree | 6bc6f461bf5b72f469aa271887adbba626af9a42 | |
parent | 5ba5d54bd13b2aaa6a25c2b417eec029ae97c60d (diff) |
Changement options entre gcc 2 et gcc 3 (PR#1469). Documenter probleme avec TK si installe dans un repertoire avec un blanc.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@5371 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | config/Makefile.mingw | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/config/Makefile.mingw b/config/Makefile.mingw index e32f32a55..288e53404 100644 --- a/config/Makefile.mingw +++ b/config/Makefile.mingw @@ -50,7 +50,7 @@ EXE=.exe BYTECC=gcc -mno-cygwin ### Additional compile-time options for $(BYTECC). (For static linking.) -BYTECCCOMPOPTS=-O -fnative-struct -Wall -Wno-unused +BYTECCCOMPOPTS=-O -mms-bitfields -Wall -Wno-unused ### Additional link-time options for $(BYTECC). (For static linking.) BYTECCLINKOPTS= @@ -92,7 +92,7 @@ SYSTEM=mingw NATIVECC=$(BYTECC) ### Additional compile-time options for $(NATIVECC). -NATIVECCCOMPOPTS=-O -fnative-struct -Wall -Wno-unused +NATIVECCCOMPOPTS=-O -mms-bitfields -Wall -Wno-unused ### Additional link-time options for $(NATIVECC) NATIVECCLINKOPTS= @@ -113,6 +113,7 @@ BIGNUM_ARCH=C ### Configuration for LablTk # Set TK_ROOT to the directory where you installed TCL/TK 8.3 +# There must be no spaces or special characters in $(TK_ROOT) TK_ROOT=c:/tcl TK_DEFS=-I$(TK_ROOT)/include TK_LINK=$(TK_ROOT)/lib/tk83.lib $(TK_ROOT)/lib/tcl83.lib |