-
-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(core): look for
emcc
instead of emcc.py
`emcc.py` is not marked as executable in emcripten's git repo so the build failed when trying to locatge emscripten. However, it turns out that `emcc` is marked as executable, so we use that instead.
- Loading branch information
1 parent
5bf42c5
commit 88657c0
Showing
5 changed files
with
24 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[binaries] | ||
c = ['$EMSCRIPTEN_BASE/emcc.py'] | ||
cpp = ['$EMSCRIPTEN_BASE/em++.py'] | ||
ar = ['$EMSCRIPTEN_BASE/emar.py'] | ||
c = ['$EMSCRIPTEN_BASE/emcc'] | ||
cpp = ['$EMSCRIPTEN_BASE/em++'] | ||
ar = ['$EMSCRIPTEN_BASE/emar'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[binaries] | ||
c = ['$EMSCRIPTEN_BASE/emcc.py'] | ||
cpp = ['$EMSCRIPTEN_BASE/em++.py'] | ||
ar = ['$EMSCRIPTEN_BASE/emar.py'] | ||
c = ['$EMSCRIPTEN_BASE/emcc'] | ||
cpp = ['$EMSCRIPTEN_BASE/em++'] | ||
ar = ['$EMSCRIPTEN_BASE/emar'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[binaries] | ||
c = ['python.exe', '$EMSCRIPTEN_BASE/emcc.py'] | ||
cpp = ['python.exe', '$EMSCRIPTEN_BASE/em++.py'] | ||
ar = ['python.exe', '$EMSCRIPTEN_BASE/emar.py'] | ||
c = ['python.exe', '$EMSCRIPTEN_BASE/emcc'] | ||
cpp = ['python.exe', '$EMSCRIPTEN_BASE/em++'] | ||
ar = ['python.exe', '$EMSCRIPTEN_BASE/emar'] | ||
|
||
[properties] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters