From aac367636d19a7dfce3045e1814fe9e12941c86f Mon Sep 17 00:00:00 2001 From: Daniel Hiltgen Date: Thu, 13 Jun 2024 13:17:19 -0700 Subject: [PATCH] Actually skip PhysX on windows --- gpu/gpu.go | 1 + 1 file changed, 1 insertion(+) diff --git a/gpu/gpu.go b/gpu/gpu.go index 73ef1358..a55903c5 100644 --- a/gpu/gpu.go +++ b/gpu/gpu.go @@ -296,6 +296,7 @@ func FindGPULibs(baseLibName string, defaultPatterns []string) []string { // Nvidia PhysX known to return bogus results if strings.Contains(pattern, "PhysX") { slog.Debug("skipping PhysX cuda library path", "path", pattern) + continue } // Ignore glob discovery errors matches, _ := filepath.Glob(pattern)