diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-07-15 17:33:57 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-07-15 17:33:57 (GMT) |
commit | 8e1fee3de7bf17af19461bc3b0aedc683d5634d9 (patch) | |
tree | 2fd656dd85f9ff4895d1a637ce28a9974415b9d2 /scripts/mingw-x-build-dependencies.sh | |
parent | 5e2350d25240c95ba6765607416aebb6d7c83949 (diff) |
don't suggest paralell build by default, it can cause parser_yacc problem
Diffstat (limited to 'scripts/mingw-x-build-dependencies.sh')
-rwxr-xr-x | scripts/mingw-x-build-dependencies.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/mingw-x-build-dependencies.sh b/scripts/mingw-x-build-dependencies.sh index c614577..a327b93 100755 --- a/scripts/mingw-x-build-dependencies.sh +++ b/scripts/mingw-x-build-dependencies.sh @@ -69,5 +69,6 @@ echo "now copy/paste the following to cross-build openscad" echo echo "export PATH=$MXEDIR/usr/bin:\$PATH" echo "i686-pc-mingw32-qmake CONFIG+=mingw-cross-env openscad.pro" -echo "make -j$NUMCPU" +#echo "make -j$NUMCPU" # causes parser_yacc.hpp errors +echo "make" echo |