diff options
Diffstat (limited to 'stdlib/Compflags')
-rwxr-xr-x | stdlib/Compflags | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/stdlib/Compflags b/stdlib/Compflags new file mode 100755 index 000000000..e263fbcf2 --- /dev/null +++ b/stdlib/Compflags @@ -0,0 +1,26 @@ +#!/bin/sh +######################################################################### +# # +# Objective Caml # +# # +# Xavier Leroy, projet Cristal, INRIA Rocquencourt # +# # +# Copyright 2004 Institut National de Recherche en Informatique et # +# en Automatique. All rights reserved. This file is distributed # +# under the terms of the GNU Library General Public License, with # +# the special exception on linking described in file ../LICENSE. # +# # +######################################################################### + +# $Id$ + +case $1 in + pervasives.cm[iox]|pervasives.p.cmx) echo '-nopervasives';; + camlinternalOO.cmi) echo '-nopervasives';; + camlinternalOO.cmx|camlinternalOO.p.cmx) echo '-inline 0';; + arrayLabels.cm[ox]|arrayLabels.p.cmx) echo '-nolabels';; + listLabels.cm[ox]|listLabels.p.cmx) echo '-nolabels';; + stringLabels.cm[ox]|stringLabels.p.cmx) echo '-nolabels';; + moreLabels.cm[ox]|moreLabels.p.cmx) echo '-nolabels';; + *) echo '';; +esac |