We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d046b1b commit f450eabCopy full SHA for f450eab
src/build.gera
@@ -151,17 +151,13 @@ pub proc build_project(root_project) {
151
|> str::join(" ")
152
var exec_file = ".gerap" |> concat(io::file_sep())
153
|> concat(root_name)
154
- var cc_colored
155
- case config::get_colored_output() -> cc_colored = ""
156
- else cc_colored = "-fdiagnostics-plain-output"
157
- var cc_cmd = "_ _ _ -lm _-o _ _"
+ var cc_cmd = "_ _ _ -lm _-o _"
158
|> str::fmt([
159
config::get_cc_path(),
160
linked_files_str,
161
output_file,
162
config::get_cc_args(), // adds space at the end
163
- exec_file,
164
- cc_colored
+ exec_file
165
])
166
case env::run(cc_cmd) != 0 -> {
167
"Unable to compile package '_'!"
0 commit comments