summaryrefslogtreecommitdiffstats
path: root/src/pcl.mk
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2012-12-21 06:53:14 (GMT)
committerTony Theodore <tonyt@logyst.com>2012-12-21 06:53:14 (GMT)
commitd83b0f9e19fd955baa44e0f8e0781d84ba52a6c3 (patch)
tree871c728e7f83d01556896c2e72e5c2e119a4a0ac /src/pcl.mk
parent89b7fc1ca08f82f2a612edadf707b010833cc551 (diff)
downloadmxe-d83b0f9e19fd955baa44e0f8e0781d84ba52a6c3.zip
mxe-d83b0f9e19fd955baa44e0f8e0781d84ba52a6c3.tar.gz
mxe-d83b0f9e19fd955baa44e0f8e0781d84ba52a6c3.tar.bz2
package pcl: try parallel build first
systems with smaller amounts of RAM will cause internal compiler errors and can safely continue with a non-parallel build.
Diffstat (limited to 'src/pcl.mk')
-rw-r--r--src/pcl.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pcl.mk b/src/pcl.mk
index 7b087fa..42a8052 100644
--- a/src/pcl.mk
+++ b/src/pcl.mk
@@ -34,5 +34,6 @@ define $(PKG)_BUILD
-DBUILD_examples=OFF \
-DBUILD_global_tests=OFF \
-DBUILD_tools=OFF
+ $(MAKE) -C '$(1)' -j '$(JOBS)' VERBOSE=1 || $(MAKE) -C '$(1)' -j 1 VERBOSE=1
$(MAKE) -C '$(1)' -j 1 install VERBOSE=1
endef