alpha
Login
or
Join now
tombl.dev
/
distro
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
compiler-rt: simplify definition
author
Thomas Stokes
date
7 months ago
(Nov 9, 2025, 9:05 PM +0800)
commit
8f124431
8f124431bfdd0a6e363bd267b7642d0e10d02709
parent
11b6505a
11b6505a01f6b93499d2542e801282d49611aa5a
change-id
tvmvxmwm
tvmvxmwmktmtqztvnmnxsvkzrmuxssnv
+1
-3
1 changed file
Expand all
Collapse all
Unified
Split
packages
compiler-rt
package.nix
+1
-3
packages/compiler-rt/package.nix
Reviewed
···
35
35
36
36
cmake -S compiler-rt -B build -G Ninja \
37
37
-DCMAKE_BUILD_TYPE=${if config.debug then "Debug" else "Release"} \
38
38
+
-DCMAKE_SYSROOT=${musl} \
38
39
-DCMAKE_C_COMPILER_TARGET=wasm32-unknown-linux-musl \
39
40
-DCMAKE_C_COMPILER_WORKS=ON \
40
40
-
-DCMAKE_C_FLAGS="-I${musl}/include" \
41
41
-DCMAKE_CXX_COMPILER_TARGET=wasm32-unknown-linux-musl \
42
42
-DCMAKE_CXX_COMPILER_WORKS=ON \
43
43
-
-DCMAKE_CXX_FLAGS="-I${musl}/include" \
44
43
-DCOMPILER_RT_BUILD_CRT=false \
45
45
-
-DCOMPILER_RT_DEFAULT_TARGET_ARCH=wasm32-unknown-linux-musl \
46
44
-DCOMPILER_RT_DEFAULT_TARGET_ONLY=true
47
45
48
46
cmake --build build -j$NIX_BUILD_CORES