Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 87f017a

Browse files
committedFeb 1, 2025··
Toolchain: Using ninja instead of make for mold building
1 parent 6b40f47 commit 87f017a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎Toolchain/BuildMold.sh‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ else
3131
fi
3232

3333
MOLD_BUILD="$DIR"/Build/mold
34-
cmake -B "$MOLD_BUILD" -S. -DCMAKE_INSTALL_PREFIX="$DIR"/Local/mold
35-
make -C "$MOLD_BUILD" install -j"$MAKEJOBS"
34+
cmake -B "$MOLD_BUILD" -S. -GNinja -DCMAKE_INSTALL_PREFIX="$DIR"/Local/mold
35+
ninja -C "$MOLD_BUILD" install -j"$MAKEJOBS"
3636

3737
popd

0 commit comments

Comments
 (0)
Please sign in to comment.