File tree 1 file changed +1
-5
lines changed
1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -85,13 +85,11 @@ func getTargets() -> [Target] {
85
85
if hasEnvironmentVariable ( " CLI_BUILD " ) {
86
86
let ( cFlags, linkFlags, _) = try ! getLLVMConfig ( )
87
87
let customSystemLibrary : Target = . systemLibrary(
88
- name: " CLLVM " ,
89
- path: " llvm-api/CLLVM "
88
+ name: " CLLVM "
90
89
)
91
90
let llvmTarget : Target = . target(
92
91
name: " LLVM " ,
93
92
dependencies: [ " CLLVM " ] ,
94
- // path: "llvm-api/LLVM",
95
93
cSettings: [
96
94
. unsafeFlags( cFlags) ,
97
95
] ,
@@ -103,13 +101,11 @@ func getTargets() -> [Target] {
103
101
} else {
104
102
let customSystemLibrary : Target = . systemLibrary(
105
103
name: " CLLVM " ,
106
- // path: "llvm-api/CLLVM",
107
104
pkgConfig: " llvm "
108
105
)
109
106
let llvmTarget : Target = . target(
110
107
name: " LLVM " ,
111
108
dependencies: [ " CLLVM " ]
112
- // path: "llvm-api/LLVM"
113
109
)
114
110
return [ customSystemLibrary, llvmTarget]
115
111
}
You can’t perform that action at this time.
0 commit comments