diff options
author | Gabriel Scherer <gabriel.scherer@gmail.com> | 2014-06-09 13:53:45 +0000 |
---|---|---|
committer | Gabriel Scherer <gabriel.scherer@gmail.com> | 2014-06-09 13:53:45 +0000 |
commit | bb313fa192eb11593e720c39164a9866092c4f99 (patch) | |
tree | 0e6f2b62b8fd3e32cb2944788bc4460d9ae35f4c /stdlib/Compflags | |
parent | c24c9ac53d6e4badaefc8ce977ad6059a448364a (diff) |
Fix PR#6417: sprintf broken when local module named Pervasives is in scope
(Backport from Jacques' commit 4.02@14921)
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@14972 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'stdlib/Compflags')
-rwxr-xr-x | stdlib/Compflags | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stdlib/Compflags b/stdlib/Compflags index 7c023d98b..f393c4ec0 100755 --- a/stdlib/Compflags +++ b/stdlib/Compflags @@ -20,6 +20,7 @@ case $1 in # make sure add_char is inlined (PR#5872) 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 -no-alias-deps';; |