about summary refs log tree commit diff
path: root/pkgs/development/compilers/swift/compiler/patches/swift-wrap.patch
blob: e4697f631e708d569b933b0c443d7f3d99711bfc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Wrap the swift compiler produced during the build

--- a/tools/driver/CMakeLists.txt
+++ b/tools/driver/CMakeLists.txt
@@ -16,6 +16,13 @@ if(${LIBSWIFT_BUILD_MODE} MATCHES "BOOTSTRAPPING.*")
                           swiftDriverTool
                           libswiftStub)
 
+  # Nix: wrap the swift build.
+  add_custom_command(
+    TARGET swift-frontend-bootstrapping0 POST_BUILD
+    COMMAND nix-swift-make-swift-wrapper $<TARGET_FILE:swift-frontend-bootstrapping0>
+    VERBATIM
+  )
+
   swift_create_post_build_symlink(swift-frontend-bootstrapping0
     SOURCE "swift-frontend${CMAKE_EXECUTABLE_SUFFIX}"
     DESTINATION "swiftc${CMAKE_EXECUTABLE_SUFFIX}"
@@ -34,6 +41,13 @@ if(${LIBSWIFT_BUILD_MODE} MATCHES "BOOTSTRAPPING.*")
                           swiftDriverTool
                           libswift-bootstrapping1)
 
+  # Nix: wrap the swift build.
+  add_custom_command(
+    TARGET swift-frontend-bootstrapping1 POST_BUILD
+    COMMAND nix-swift-make-swift-wrapper $<TARGET_FILE:swift-frontend-bootstrapping1>
+    VERBATIM
+  )
+
   swift_create_post_build_symlink(swift-frontend-bootstrapping1
     SOURCE "swift-frontend${CMAKE_EXECUTABLE_SUFFIX}"
     DESTINATION "swiftc${CMAKE_EXECUTABLE_SUFFIX}"
@@ -50,6 +64,13 @@ target_link_libraries(swift-frontend
                         swiftDriverTool
                         libswift)
 
+# Nix: wrap the swift build.
+add_custom_command(
+  TARGET swift-frontend POST_BUILD
+  COMMAND nix-swift-make-swift-wrapper $<TARGET_FILE:swift-frontend>
+  VERBATIM
+)
+
 # Create a `swift-driver` executable adjacent to the `swift-frontend` executable
 # to ensure that `swiftc` forwards to the standalone driver when invoked.
 swift_create_early_driver_copies(swift-frontend)