Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Emscripten: Simplified option name in build script and README.
- Loading branch information
Showing
with
2 additions
and
2 deletions.
-
+1
−1
build-scripts/emscripten-buildbot.sh
-
+1
−1
docs/README-emscripten.md
|
@@ -55,7 +55,7 @@ mkdir buildbot |
|
|
pushd buildbot |
|
|
|
|
|
echo "Configuring..." |
|
|
emconfigure ../configure --host=asmjs-unknown-emscripten --disable-assembly --disable-threads --enable-cpuinfo=false CFLAGS="-O2 -Wno-warn-absolute-paths -Wdeclaration-after-statement -Werror=declaration-after-statement" --prefix="$PWD/emscripten-sdl2-installed" || exit $? |
|
|
emconfigure ../configure --host=asmjs-unknown-emscripten --disable-assembly --disable-threads --disable-cpuinfo CFLAGS="-O2 -Wno-warn-absolute-paths -Wdeclaration-after-statement -Werror=declaration-after-statement" --prefix="$PWD/emscripten-sdl2-installed" || exit $? |
|
|
|
|
|
echo "Building..." |
|
|
emmake $MAKE || exit $? |
|
|
|
@@ -5,7 +5,7 @@ Build: |
|
|
|
|
|
$ mkdir build |
|
|
$ cd build |
|
|
$ emconfigure ../configure --host=asmjs-unknown-emscripten --disable-assembly --disable-threads --enable-cpuinfo=false CFLAGS="-O2" |
|
|
$ emconfigure ../configure --host=asmjs-unknown-emscripten --disable-assembly --disable-threads --disable-cpuinfo CFLAGS="-O2" |
|
|
$ emmake make |
|
|
|
|
|
Or with cmake: |
|
|