Reputation: 410
Hi Does anyone know how to set -ObjC as Other linker flag for logos tweak? Currently I'm using,
MyTest_LDFLAGS = -lsqlite3 -ObjC
or
MyTest_LDFLAGS = -lsqlite3 -lObjC
Upvotes: 0
Views: 677
Reputation: 410
Never after several hours of researching and reading the documentation I figured it out. Its simple, you need to pass the other linker flags as an command line argument.
user-macbook:$ make LDFLAGS=-ObjC
here is the complete link, http://uv.howett.net/ipf.html
Upvotes: 2