Skip to content

Commit 73e67e6

Browse files
committed
Docs: update CMake invocation
1 parent d5b67e5 commit 73e67e6

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

Docs/GettingStarted.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,14 @@ build with cmake. It currently requires clang, swift, and libdispatch (which
8787
are generally built as part of the swift build).
8888

8989
```
90-
cmake -G Ninja ../../../swift-corelibs-foundation \
91-
-DCMAKE_C_COMPILER=../../llvm-linux-x86_64/bin/clang \
92-
-DCMAKE_SWIFT_COMPILER=../../swift-linux-x86_64/bin/swiftc \
93-
-DFOUNDATION_PATH_TO_LIBDISPATCH_SOURCE=../../../swift-corelibs-libdispatch \
94-
-DFOUNDATION_PATH_TO_LIBDISPATCH_BUILD=../../libdispatch-linux-x86_64
90+
cmake \
91+
-G Ninja \
92+
-D CMAKE_BUILD_TYPE=RelWithDebInfo \
93+
-D CMAKE_C_COMPILER=build/Ninja-ReleaseAssert/llvm-linux-x86_64/bin/clang \
94+
-D CMAKE_Swift_COMPILER=build/Ninja-ReleaseAssert/swift-linux-x86_64/bin/swiftc \
95+
-D dispatch_DIR=build/Ninja-ReleaseAssert/libdispatch-linux-x86_64/cmake/modules \
96+
-B build/Ninja-ReleaseAssert/foundation-linux-x86_64
97+
-S swift-corelibs-foundation
98+
ninja -C build/Ninja-ReleaseAssert/foundation-linux-x86_64
9599
```
96100

0 commit comments

Comments
 (0)