X-Git-Url: http://nitlanguage.org diff --git a/src/pnacl_platform.nit b/src/pnacl_platform.nit index 6dfdc3a..62c2f60 100644 --- a/src/pnacl_platform.nit +++ b/src/pnacl_platform.nit @@ -77,7 +77,7 @@ THIS_MAKEFILE := $(abspath $(lastword $(MAKEFILE_LIST))) NACL_SDK_ROOT ?= $(abspath $(dir $(THIS_MAKEFILE))../../../..) # Project Build flags -WARNINGS := -Wall -pedantic -Werror -Wno-long-long -Wno-unused-value -Wno-unused-label -Wno-duplicate-decl-specifier -Wno-switch -Wno-embedded-directive +WARNINGS := -Wall -pedantic -Wno-long-long -Wno-unused-value -Wno-unused-label -Wno-duplicate-decl-specifier -Wno-switch -Wno-embedded-directive CXXFLAGS := -pthread $(WARNINGS) CXXFLAGS += -g -O0 # Debug @@ -244,6 +244,6 @@ function updateStatus(opt_message) { redef fun compile_c_code(compiler, compile_dir) do # Generate the pexe - toolcontext.exec_and_check(["make", "-C", compile_dir], "PNaCl project error") + toolcontext.exec_and_check(["make", "-C", compile_dir, "-j", "4"], "PNaCl project error") end end