From 10a4a922d6ca8659ae4c1fcdcd5e023faf6782f7 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Thu, 26 Jan 2017 14:31:40 +0100 Subject: [PATCH] Compiler/root/build6: - bugfix in Darwin configuration - run make with -j6 --- Compiler/root/build6 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Compiler/root/build6 b/Compiler/root/build6 index 9576e69..e4f503a 100755 --- a/Compiler/root/build6 +++ b/Compiler/root/build6 @@ -8,8 +8,8 @@ config_args='' case ${OS} in Darwin ) # cocoa doesn't work with GCC!? - config_args+='-Dcocoa=OFF' - config_args+='-Dx11=ON' + config_args+=' -Dcocoa=OFF' + config_args+=' -Dx11=ON' ;; Linux ) INSTANTCLIENT_INCLUDE_DIR='/usr/lib/oracle/12.1/client64/include' @@ -37,7 +37,7 @@ pbuild::configure() { } pbuild::build() { - cmake --build . -- -j3 VERBOSE=1 + cmake --build . -- -j6 VERBOSE=1 } pbuild::install() {