Make that option -p is appenned to comdir instead of each file.
[nit.git] / src / nitc.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2008 Jean Privat <jean@pryen.org>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # Nit compiler main module
18 package nitc
19
20 import abstracttool
21 private import compiling
22
23 # The main class of the nitcompiler program
24 class NitCompiler
25 special AbstractCompiler
26 readable attr _opt_output: OptionString = new OptionString("Output file", "-o", "--output")
27 readable attr _opt_boost: OptionBool = new OptionBool("Optimize compilation", "-O", "--boost")
28 readable attr _opt_no_cc: OptionBool = new OptionBool("Do not invoke C compiler", "--no_cc")
29 readable attr _opt_attr_sim: OptionBool = new OptionBool("Use attribute simulation", "--attr-sim")
30 readable attr _opt_global: OptionBool = new OptionBool("Use global compilation", "--global")
31 readable attr _opt_clibdir: OptionString = new OptionString("NIT C library directory", "--clibdir")
32 readable attr _opt_bindir: OptionString = new OptionString("NIT tools directory", "--bindir")
33 readable attr _opt_compdir: OptionString = new OptionString("Intermediate compilation directory", "--compdir")
34 readable attr _opt_extension_prefix: OptionString = new OptionString("Append prefix to file extension", "-p", "--extension-prefix")
35
36 init
37 do
38 super
39 option_context.add_option(opt_output, opt_boost, opt_no_cc, opt_attr_sim, opt_global, opt_clibdir, opt_bindir, opt_compdir, opt_extension_prefix)
40 end
41
42 redef meth process_options
43 do
44 super
45 output_file = opt_output.value
46 boost = opt_boost.value
47 no_cc = opt_no_cc.value
48 ext_prefix = opt_extension_prefix.value
49 if ext_prefix == null then ext_prefix = ""
50 attr_sim = opt_attr_sim.value
51 global = opt_global.value
52 compdir = opt_compdir.value
53 if compdir == null then
54 var dir = once ("NIT_COMPDIR".to_symbol).environ
55 if not dir.is_empty then
56 compdir = dir
57 end
58 if compdir == null then
59 compdir = ".nit_compile"
60 end
61 end
62 compdir.append(ext_prefix)
63
64 clibdir = opt_clibdir.value
65 if clibdir == null then
66 var dir = once ("NIT_DIR".to_symbol).environ
67 if dir.is_empty then
68 var dir = "{sys.program_name.dirname}/../lib"
69 if dir.file_exists then clibdir = dir
70 else
71 dir = "{dir}/lib"
72 if dir.file_exists then clibdir = dir
73 end
74 if clibdir == null then
75 error("Error: Cannot locate NIT C library directory. Uses --clibdir or envvar NIT_DIR.")
76 exit(1)
77 end
78 end
79 bindir = opt_bindir.value
80
81 if bindir == null then
82 var dir = once ("NIT_DIR".to_symbol).environ
83 if dir.is_empty then
84 var dir = "{sys.program_name.dirname}/../bin"
85 if dir.file_exists then bindir = dir
86 else
87 dir = "{dir}/bin"
88 if dir.file_exists then bindir = dir
89 end
90 if bindir == null then
91 error("Error: Cannot locate NIT tools directory. Uses --bindir or envvar NIT_DIR.")
92 exit(1)
93 end
94 end
95 end
96
97 redef meth perform_work(mods)
98 do
99 for mod in mods do
100 assert mod isa MMSrcModule
101 mod.compile_prog_to_c(self)
102 end
103
104 end
105 end
106
107 var c = new NitCompiler
108 c.exec_cmd_line