diff options
author | Gabriel Scherer <gabriel.scherer@gmail.com> | 2014-05-12 15:37:37 +0000 |
---|---|---|
committer | Gabriel Scherer <gabriel.scherer@gmail.com> | 2014-05-12 15:37:37 +0000 |
commit | 72669307e837a103476f44eb6680caf424274f92 (patch) | |
tree | e04b94d3726361e39d5f86698178b14089e9d960 /stdlib/Compflags | |
parent | 9fa17c95a5575341a9dea716f5393f7e5b6e6e51 (diff) |
second part of Benoît Vaugon's format+gadts patch
To finish the bootstrap cycle, run:
make library-cross
make promote
make partialclean
make core
make library-cross
make promote-cross
make partialclean
make ocamlc ocamllex ocamltools
make library-cross
make promote
make partialclean
make core
make compare
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@14810 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'stdlib/Compflags')
-rwxr-xr-x | stdlib/Compflags | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/Compflags b/stdlib/Compflags index 1a66d1591..7c023d98b 100755 --- a/stdlib/Compflags +++ b/stdlib/Compflags @@ -19,8 +19,8 @@ case $1 in buffer.cmx|buffer.p.cmx) echo ' -inline 3';; # make sure add_char is inlined (PR#5872) buffer.cm[io]) echo ' -w A';; - camlinternalFormat.cm[io]) echo ' -w a';; - printf.cm[io]|format.cm[io]|scanf.cm[io]) echo ' -w A';; + camlinternalFormat.cm[io]) echo ' -w Ae';; + printf.cm[io]|format.cm[io]|scanf.cm[io]) echo ' -w Ae';; scanf.cmx|scanf.p.cmx) echo ' -inline 9';; *Labels.cm[ox]|*Labels.p.cmx) echo ' -nolabels -no-alias-deps';; *) echo ' ';; |