]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/ocaml/contrib/stdlib/Compflags
Inital import
[l4.git] / l4 / pkg / ocaml / contrib / stdlib / Compflags
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 #########################################################################
14
15 # $Id: Compflags 6694 2004-11-25 00:06:06Z doligez $
16
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