Skip to content

Commit

Permalink
Removed color markers from compiler messages
Browse files Browse the repository at this point in the history
Fixes #33.
  • Loading branch information
rhobincu committed Nov 14, 2016
1 parent a6964f6 commit dfbfe6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jail/default_scripts/c_run.sh
Expand Up @@ -10,4 +10,4 @@
check_program gcc
get_source_files c
#compile
eval gcc -o vpl_execution -std=c99 $SOURCE_FILES -lm -lutil
eval gcc -fno-diagnostics-color -o vpl_execution -std=c99 $SOURCE_FILES -lm -lutil
2 changes: 1 addition & 1 deletion jail/default_scripts/cpp_run.sh
Expand Up @@ -10,4 +10,4 @@
check_program g++
get_source_files cpp C
#compile
g++ -o vpl_execution $SOURCE_FILES -lm -lutil
g++ -fno-diagnostics-color -o vpl_execution $SOURCE_FILES -lm -lutil

0 comments on commit dfbfe6f

Please sign in to comment.