Skip to content

Commit b494acf

Browse files
committed
working on macos port
1 parent 07597c6 commit b494acf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

builder/macOS.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ def is_homebrew_arm(cmd):
9090
return False, cmd[0][0]
9191

9292

93-
9493
def submodules():
9594
is_arm, brew_path = is_homebrew_arm([['brew', 'config']])
9695

@@ -101,6 +100,7 @@ def submodules():
101100
sys.exit(ret)
102101

103102
if 'Installed\n' not in out:
103+
print(out)
104104
raise RuntimeError('libffi is not installed')
105105

106106
out = out.split('Installed\n', 1)[-1]
@@ -125,6 +125,7 @@ def submodules():
125125
sys.exit(ret)
126126

127127
if 'Installed\n' not in out:
128+
print(out)
128129
raise RuntimeError('sdl2 is not installed')
129130

130131
ldflags += f' -L{alt_path}lib'

0 commit comments

Comments
 (0)