You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# store all variables passed on the command line into CL_ARGS so we can pass them to the stage builds
6
6
# https://stackoverflow.com/a/48555098/161659
7
7
# MUST be done before call to 'project'
8
-
# Use standard release build (discarding LEAN_CXX_EXTRA_FLAGS etc.) for stage0 by default since it is assumed to be "good", but still pass through CMake platform arguments (compiler, toolchain file, ..).
8
+
# Use standard release build (discarding LEAN_EXTRA_CXX_FLAGS etc.) for stage0 by default since it is assumed to be "good", but still pass through CMake platform arguments (compiler, toolchain file, ..).
9
9
# Use `STAGE0_` prefix to pass variables to stage0 explicitly.
10
10
get_cmake_property(vars CACHE_VARIABLES)
11
11
foreach(var ${vars})
@@ -39,10 +39,14 @@ endif()
39
39
40
40
# Don't do anything with cadical on wasm
41
41
if (NOT${CMAKE_SYSTEM_NAME}MATCHES"Emscripten")
42
-
# On CI Linux, we source cadical from Nix instead; see flake.nix
0 commit comments