We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07597c6 commit b494acfCopy full SHA for b494acf
builder/macOS.py
@@ -90,7 +90,6 @@ def is_homebrew_arm(cmd):
90
return False, cmd[0][0]
91
92
93
-
94
def submodules():
95
is_arm, brew_path = is_homebrew_arm([['brew', 'config']])
96
@@ -101,6 +100,7 @@ def submodules():
101
100
sys.exit(ret)
102
103
if 'Installed\n' not in out:
+ print(out)
104
raise RuntimeError('libffi is not installed')
105
106
out = out.split('Installed\n', 1)[-1]
@@ -125,6 +125,7 @@ def submodules():
125
126
127
128
129
raise RuntimeError('sdl2 is not installed')
130
131
ldflags += f' -L{alt_path}lib'
0 commit comments