Fix nitdoc
[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_extension_prefix: OptionString = new OptionString("Append prefix to file extension", "-p", "--extension-prefix")
34
35 init
36 do
37 super
38 option_context.add_option(opt_output, opt_boost, opt_no_cc, opt_attr_sim, opt_global, opt_clibdir, opt_bindir, opt_extension_prefix)
39 end
40
41 redef meth process_options
42 do
43 super
44 output_file = opt_output.value
45 boost = opt_boost.value
46 no_cc = opt_no_cc.value
47 ext_prefix = opt_extension_prefix.value
48 if ext_prefix == null then ext_prefix = ""
49 attr_sim = opt_attr_sim.value
50 global = opt_global.value
51 base_dir = ".nit_compile"
52 clibdir = opt_clibdir.value
53 if clibdir == null then
54 var dir = once ("NIT_DIR".to_symbol).environ
55 if dir.is_empty then
56 var dir = "{sys.program_name.dirname}/../lib"
57 if dir.file_exists then clibdir = dir
58 else
59 dir = "{dir}/lib"
60 if dir.file_exists then clibdir = dir
61 end
62 if clibdir == null then
63 error("Error: Cannot locate NIT C library directory. Uses --clibdir or envvar NIT_DIR.")
64 exit(1)
65 end
66 end
67 bindir = opt_bindir.value
68 if bindir == null then
69 var dir = once ("NIT_DIR".to_symbol).environ
70 if dir.is_empty then
71 var dir = "{sys.program_name.dirname}/../bin"
72 if dir.file_exists then bindir = dir
73 else
74 dir = "{dir}/bin"
75 if dir.file_exists then bindir = dir
76 end
77 if bindir == null then
78 error("Error: Cannot locate NIT tools directory. Uses --bindir or envvar NIT_DIR.")
79 exit(1)
80 end
81 end
82 end
83
84 redef meth perform_work(mods)
85 do
86 for mod in mods do
87 assert mod isa MMSrcModule
88 mod.compile_prog_to_c(self)
89 end
90
91 end
92 end
93
94 var c = new NitCompiler
95 c.exec_cmd_line