Closed felideon closed 10 years ago
ld: symbol dyld_stub_binding_helper not defined (usually in crt1.o/dylib1.o/bundle1.o) for inferred architecture x86_64
Was able to fix by adding /usr/lib/dylib1.o to the ld command (as suggested above) in the Makefile:
ld
ld -dylib -o glop-bridge.dylib /usr/lib/dylib1.o ${OBJ} -lc -framework AppKit,Carbon,CoreServices
I was able to quickload glop after doing this.
Does this also work on other OSX versions ? I'll try to catch jtza on #lispgames since he's the one who did the osx port
Was able to fix by adding /usr/lib/dylib1.o to the
ld
command (as suggested above) in the Makefile:I was able to quickload glop after doing this.