lispgames / glop

Direct FFI bindings for OpenGL window and context management
MIT License
67 stars 14 forks source link

running make errors on OS X (10.6.8) #15

Closed felideon closed 10 years ago

felideon commented 11 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 -dylib -o glop-bridge.dylib /usr/lib/dylib1.o ${OBJ} -lc -framework AppKit,Carbon,CoreServices

I was able to quickload glop after doing this.

patzy commented 11 years ago

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