diff options
Diffstat (limited to 'stdlib/Compflags')
-rwxr-xr-x | stdlib/Compflags | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/stdlib/Compflags b/stdlib/Compflags index d0938af89..f393c4ec0 100755 --- a/stdlib/Compflags +++ b/stdlib/Compflags @@ -18,8 +18,11 @@ case $1 in camlinternalOO.cmx|camlinternalOO.p.cmx) echo ' -inline 0';; buffer.cmx|buffer.p.cmx) echo ' -inline 3';; # make sure add_char is inlined (PR#5872) - buffer.cm[io]|printf.cm[io]|format.cm[io]|scanf.cm[io]) echo ' -w A';; + buffer.cm[io]) echo ' -w A';; + camlinternalFormat.cm[io]) echo ' -w Ae';; + camlinternalFormatBasics*.cm[iox]) echo ' -nopervasives';; + 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 -trans-mod';; + *Labels.cm[ox]|*Labels.p.cmx) echo ' -nolabels -no-alias-deps';; *) echo ' ';; esac |