Browse Source

Use --jobs=1 with WAF

Some people were reporting waf erroring with

  thread.error: can't start new thread

this seems to fix that problem.
v0.7.4-release
Ryan Dahl 15 years ago
parent
commit
90ab0794df
  1. 14
      Makefile
  2. 4
      configure

14
Makefile

@ -1,17 +1,19 @@
WAF=python tools/waf-light --jobs=1
all:
@tools/waf-light build
@$(WAF) build
all-debug:
@tools/waf-light -v build
@$(WAF) -v build
all-progress:
@tools/waf-light -p build
@$(WAF) -p build
install:
@tools/waf-light install
@$(WAF) install
uninstall:
@tools/waf-light uninstall
@$(WAF) uninstall
test: all
python tools/test.py --mode=release
@ -45,7 +47,7 @@ website-upload: doc
clean:
@-rm -f doc/node.1 doc/api.xml doc/api.html
@tools/waf-light clean
@$(WAF) clean
distclean: clean
@-rm -rf build/

4
configure

@ -16,8 +16,6 @@ cd $WORKINGDIR
WORKINGDIR=`pwd`
cd $CUR_DIR
WAF="${WORKINGDIR}/tools/waf-light"
"${WAF}" configure $*
"${WORKINGDIR}/tools/waf-light" --jobs=1 configure $*
exit $?

Loading…
Cancel
Save