File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -85,13 +85,11 @@ func getTargets() -> [Target] {
8585 if hasEnvironmentVariable ( " CLI_BUILD " ) {
8686 let ( cFlags, linkFlags, _) = try ! getLLVMConfig ( )
8787 let customSystemLibrary : Target = . systemLibrary(
88- name: " CLLVM " ,
89- path: " llvm-api/CLLVM "
88+ name: " CLLVM "
9089 )
9190 let llvmTarget : Target = . target(
9291 name: " LLVM " ,
9392 dependencies: [ " CLLVM " ] ,
94- // path: "llvm-api/LLVM",
9593 cSettings: [
9694 . unsafeFlags( cFlags) ,
9795 ] ,
@@ -103,13 +101,11 @@ func getTargets() -> [Target] {
103101 } else {
104102 let customSystemLibrary : Target = . systemLibrary(
105103 name: " CLLVM " ,
106- // path: "llvm-api/CLLVM",
107104 pkgConfig: " llvm "
108105 )
109106 let llvmTarget : Target = . target(
110107 name: " LLVM " ,
111108 dependencies: [ " CLLVM " ]
112- // path: "llvm-api/LLVM"
113109 )
114110 return [ customSystemLibrary, llvmTarget]
115111 }
You can’t perform that action at this time.
0 commit comments