From 1b324f8bd40ec43694547c86b3b69baab2b308f3 Mon Sep 17 00:00:00 2001 From: Christopher Milan Date: Sun, 12 Oct 2025 13:20:34 -0700 Subject: [PATCH] actually fix --- tinygrad/runtime/autogen/mesa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinygrad/runtime/autogen/mesa.py b/tinygrad/runtime/autogen/mesa.py index ea62f71498..db3c519de4 100644 --- a/tinygrad/runtime/autogen/mesa.py +++ b/tinygrad/runtime/autogen/mesa.py @@ -8,7 +8,7 @@ # import ctypes, ctypes.util, os, gzip, base64, subprocess, tinygrad.helpers as helpers def brew_prefix(): - try: return subprocess.check_output(['brew', '--prefix', 'dawn']).decode().strip() + try: return subprocess.check_output(['brew', '--prefix', 'tinymesa']).decode().strip() except Exception: return '' PATHS_TO_TRY = [ (BASE:=os.getenv('MESA_PATH', f"/usr{'/local/' if helpers.OSX else '/'}lib"))+'/libtinymesa_cpu'+(EXT:='.dylib' if helpers.OSX else '.so'),