-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
21695: Fixes WASM debug build, packaging updates (#274)
* Fixes issue where WASM debug build did not actually have debug information available * Adds `web` to `sENVIRONMENTS` linker flag * Removes quiet mode from CI/CD build step for future debugability * Splits build process into separate release/debug phases for WASM instead of shoehorning a debug build into the release build --------- Co-authored-by: howsohazard <143410553+howsohazard@users.noreply.github.com> Co-authored-by: Lance Gliser <lance.gliser@howso.com>
- Loading branch information
1 parent
6fb9640
commit 9fdeb9f
Showing
14 changed files
with
403 additions
and
352 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,9 @@ | ||
## Use glob syntax | ||
syntax: glob | ||
|
||
## Local files | ||
/local | ||
|
||
## Files created by build | ||
src/Amalgam/AmalgamVersion.h | ||
|
||
|
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 @@ | ||
{ | ||
"cSpell.words": ["KullbackLeibler"], | ||
"files.trimTrailingWhitespace": false, | ||
"cSpell.words": ["amlg", "cwrap", "KullbackLeibler"], | ||
"files.trimTrailingWhitespace": false | ||
} |
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
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
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
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,5 +1,5 @@ | ||
(parallel | ||
#a 1 | ||
#hello | ||
(print "hello\n") | ||
) | ||
(parallel | ||
#a 1 | ||
#hello | ||
(print "hello\n") | ||
) |
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,5 +1,5 @@ | ||
(parallel | ||
#a 8 | ||
#hello | ||
(print "hello from psm\n") | ||
) | ||
(parallel | ||
#a 8 | ||
#hello | ||
(print "hello from psm\n") | ||
) |
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,5 +1,5 @@ | ||
(parallel | ||
#f 6 | ||
#jello | ||
(print "jello\n") | ||
) | ||
(parallel | ||
#f 6 | ||
#jello | ||
(print "jello\n") | ||
) |
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