File tree 5 files changed +3
-4
lines changed
5 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 26
26
27
27
cd /home/app
28
28
git config --global --add safe.directory /home/app
29
- cmake --preset default --fresh -DSLANG_SLANG_LLVM_FLAVOR=DISABLE -DSLANG_EMBED_STDLIB=1
29
+ cmake --preset default --fresh -DSLANG_SLANG_LLVM_FLAVOR=DISABLE
30
30
cmake --build --preset releaseWithDebugInfo
31
31
cpack --preset releaseWithDebugInfo -G ZIP
32
32
cpack --preset releaseWithDebugInfo -G TGZ
Original file line number Diff line number Diff line change 88
88
cmake --preset default --fresh \
89
89
-DSLANG_GENERATORS_PATH=build-platform-generators/bin \
90
90
-DSLANG_ENABLE_EXAMPLES=OFF \
91
- -DSLANG_EMBED_STDLIB=ON \
92
91
"-DSLANG_SLANG_LLVM_FLAVOR=$(
93
92
[[ "${{matrix.build-slang-llvm}}" = "true" ]] && echo "USE_SYSTEM_LLVM" || echo "DISABLE")"
94
93
Original file line number Diff line number Diff line change @@ -102,6 +102,7 @@ option(
102
102
option (
103
103
SLANG_EMBED_CORE_MODULE
104
104
"Build slang with an embedded version of the core module"
105
+ ON
105
106
)
106
107
107
108
option (SLANG_ENABLE_FULL_IR_VALIDATION "Enable full IR validation (SLOW!)" )
Original file line number Diff line number Diff line change 22
22
"binaryDir" : " ${sourceDir}/build.em" ,
23
23
"cacheVariables" : {
24
24
"SLANG_SLANG_LLVM_FLAVOR" : " DISABLE" ,
25
- "SLANG_EMBED_CORE_MODULE" : " ON" ,
26
25
"CMAKE_C_FLAGS_INIT" : " -fwasm-exceptions -Os" ,
27
26
"CMAKE_CXX_FLAGS_INIT" : " -fwasm-exceptions -Os" ,
28
27
"CMAKE_EXE_LINKER_FLAGS" : " -sASSERTIONS -sALLOW_MEMORY_GROWTH -fwasm-exceptions --export=__cpp_exception"
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ See the [documentation on testing](../tools/slang-test/README.md) for more infor
125
125
| Option | Default | Description |
126
126
| -----------------------------------| ----------------------------| ----------------------------------------------------------------------------------------------|
127
127
| ` SLANG_VERSION ` | Latest ` v* ` tag | The project version, detected using git if available |
128
- | ` SLANG_EMBED_CORE_MODULE ` | ` FALSE ` | Build slang with an embedded version of the core module |
128
+ | ` SLANG_EMBED_CORE_MODULE ` | ` TRUE ` | Build slang with an embedded version of the core module |
129
129
| ` SLANG_EMBED_CORE_MODULE_SOURCE ` | ` TRUE ` | Embed the core module source in the binary |
130
130
| ` SLANG_ENABLE_ASAN ` | ` FALSE ` | Enable ASAN (address sanitizer) |
131
131
| ` SLANG_ENABLE_FULL_IR_VALIDATION ` | ` FALSE ` | Enable full IR validation (SLOW!) |
You can’t perform that action at this time.
0 commit comments