Confirmed users
329
edits
(The platform meeting does not exists anymore.) |
(→Build the js shell: configure.in isn't really an autoconf input script anymore; it will invoke autoconf on the real stuff for you. Prefer a command that works regardless of local naming.) |
||
| Line 16: | Line 16: | ||
cd spidermonkey/js/src | cd spidermonkey/js/src | ||
autoconf2.13 | cp configure.in configure && chmod +x configure # or autoconf2.13 or autoconf-2.13 | ||
mkdir build_DBG.OBJ | mkdir build_DBG.OBJ | ||
cd build_DBG.OBJ | cd build_DBG.OBJ | ||
../configure --enable-debug --disable-optimize | ../configure --enable-debug --disable-optimize | ||
make | make # or make -j8 | ||
cd .. | cd .. | ||