This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

compiler-rt: simplify definition

author
Thomas Stokes
date (Nov 9, 2025, 9:05 PM +0800) commit 8f124431 parent 11b6505a change-id tvmvxmwm
+1 -3
+1 -3
packages/compiler-rt/package.nix
··· 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 + -DCMAKE_SYSROOT=${musl} \ 38 39 -DCMAKE_C_COMPILER_TARGET=wasm32-unknown-linux-musl \ 39 40 -DCMAKE_C_COMPILER_WORKS=ON \ 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 - -DCMAKE_CXX_FLAGS="-I${musl}/include" \ 44 43 -DCOMPILER_RT_BUILD_CRT=false \ 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