Skip to content

Commit f14991d

Browse files
committed
Don't use bridgesupport versions
1 parent ed9caab commit f14991d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lib/mtl/libmtl.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using CEnum: CEnum, @cenum
55

6-
const libmtl = Symbol("/System/Library/Frameworks/Metal.framework/Resources/BridgeSupport/Metal.dylib")
6+
const libmtl = Symbol("/System/Library/Frameworks/Metal.framework/Metal")
77

88
const _NSRange = NSRange
99

res/wrap/libmtl_prologue.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
const libmtl = Symbol("/System/Library/Frameworks/Metal.framework/Resources/BridgeSupport/Metal.dylib")
1+
const libmtl = Symbol("/System/Library/Frameworks/Metal.framework/Metal")
22

33
const _NSRange = NSRange

src/utilities.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ function versioninfo(io::IO=stdout)
6868
return
6969
end
7070

71-
const _iokitlib = Symbol("/System/Library/Frameworks/IOKit.framework/Resources/BridgeSupport/IOKit.dylib")
72-
const _cflib = Symbol("/System/Library/Frameworks/CoreFoundation.framework/Resources/BridgeSupport/CoreFoundation.dylib")
71+
const _iokitlib = Symbol("/System/Library/Frameworks/IOKit.framework/IOKit")
72+
const _cflib = Symbol("/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation")
7373

7474
@static if isdefined(Base, :OncePerProcess) # VERSION >= v"1.12.0-DEV.1421"
7575
const num_gpu_cores = OncePerProcess{Int64}() do

0 commit comments

Comments
 (0)