Sys.Signals module for a Variant type of signals (and a set_signal function that...
[ocaml.git] / stdlib / Compflags
blob862a1c4e1ea18bfcd33501e447ff87424c8184ed
1 #!/bin/sh
2 #########################################################################
3 # #
4 # Objective Caml #
5 # #
6 # Xavier Leroy, projet Cristal, INRIA Rocquencourt #
7 # #
8 # Copyright 2004 Institut National de Recherche en Informatique et #
9 # en Automatique. All rights reserved. This file is distributed #
10 # under the terms of the GNU Library General Public License, with #
11 # the special exception on linking described in file ../LICENSE. #
12 # #
13 #########################################################################
15 # $Id$
17 case $1 in
18 pervasives.cm[iox]|pervasives.p.cmx) echo ' -nopervasives';;
19 camlinternalOO.cmi) echo ' -nopervasives';;
20 camlinternalOO.cmx|camlinternalOO.p.cmx) echo ' -inline 0';;
21 scanf.cmx|scanf.p.cmx) echo ' -inline 9';;
22 arrayLabels.cm[ox]|arrayLabels.p.cmx) echo ' -nolabels';;
23 listLabels.cm[ox]|listLabels.p.cmx) echo ' -nolabels';;
24 stringLabels.cm[ox]|stringLabels.p.cmx) echo ' -nolabels';;
25 moreLabels.cm[ox]|moreLabels.p.cmx) echo ' -nolabels';;
26 *) echo ' ';;
27 esac