Skip to content

Commit

Permalink
Merge pull request #45 from MineGame159/main
Browse files Browse the repository at this point in the history
Linux compatibility
  • Loading branch information
bbredesen committed Sep 12, 2023
2 parents de27cce + 5266753 commit e71f1c9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions static_include/static_common.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,9 @@ func execTrampoline(cmd *vkCommand, args ...uintptr) uintptr {
// destroying a Vulkan instance.
libName = "libMoltenVK.dylib"
case "linux":
// TODO: Opening/running on linux is completely untested.
libName = "libvulkan.1.dylib"
// TODO: Running on Linux is tested only to the point of creating and
// destroying a Vulkan instance.
libName = "libvulkan.so"
default:
panic("Unsupported GOOS at OpenLibrary: " + runtime.GOOS)
}
Expand Down

0 comments on commit e71f1c9

Please sign in to comment.