Skip to content

Commit 8e28e51

Browse files
authored
Enable core module embedding by default in CMake. (shader-slang#5644)
It seems that release workflows were unexpectedly broken when STDLIB was renamed to CORE_MODULE. Changed the option default because I think it just makes more sense. Removed explicit calls to enable it. Fixed docs.
1 parent d7c735f commit 8e28e51

File tree

5 files changed

+3
-4
lines changed

5 files changed

+3
-4
lines changed

.github/workflows/release-linux-glibc-2-17.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
2727
cd /home/app
2828
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
3030
cmake --build --preset releaseWithDebugInfo
3131
cpack --preset releaseWithDebugInfo -G ZIP
3232
cpack --preset releaseWithDebugInfo -G TGZ

.github/workflows/release.yml

-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ jobs:
8888
cmake --preset default --fresh \
8989
-DSLANG_GENERATORS_PATH=build-platform-generators/bin \
9090
-DSLANG_ENABLE_EXAMPLES=OFF \
91-
-DSLANG_EMBED_STDLIB=ON \
9291
"-DSLANG_SLANG_LLVM_FLAVOR=$(
9392
[[ "${{matrix.build-slang-llvm}}" = "true" ]] && echo "USE_SYSTEM_LLVM" || echo "DISABLE")"
9493

CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ option(
102102
option(
103103
SLANG_EMBED_CORE_MODULE
104104
"Build slang with an embedded version of the core module"
105+
ON
105106
)
106107

107108
option(SLANG_ENABLE_FULL_IR_VALIDATION "Enable full IR validation (SLOW!)")

CMakePresets.json

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
"binaryDir": "${sourceDir}/build.em",
2323
"cacheVariables": {
2424
"SLANG_SLANG_LLVM_FLAVOR": "DISABLE",
25-
"SLANG_EMBED_CORE_MODULE": "ON",
2625
"CMAKE_C_FLAGS_INIT": "-fwasm-exceptions -Os",
2726
"CMAKE_CXX_FLAGS_INIT": "-fwasm-exceptions -Os",
2827
"CMAKE_EXE_LINKER_FLAGS": "-sASSERTIONS -sALLOW_MEMORY_GROWTH -fwasm-exceptions --export=__cpp_exception"

docs/building.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ See the [documentation on testing](../tools/slang-test/README.md) for more infor
125125
| Option | Default | Description |
126126
|-----------------------------------|----------------------------|----------------------------------------------------------------------------------------------|
127127
| `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 |
129129
| `SLANG_EMBED_CORE_MODULE_SOURCE` | `TRUE` | Embed the core module source in the binary |
130130
| `SLANG_ENABLE_ASAN` | `FALSE` | Enable ASAN (address sanitizer) |
131131
| `SLANG_ENABLE_FULL_IR_VALIDATION` | `FALSE` | Enable full IR validation (SLOW!) |

0 commit comments

Comments
 (0)