Compile generate 0 byte files on OS X
Solved
General and Desktop
-
I use that ODA library on OSX and I link it with the c library like this...
LIBS += -lc++ \
-lTD_Db \
... other ODA libsand it works fine.
-
wrote on 27 Jul 2016, 12:57 last edited by
I finally found the solution : I needed a line on the .pro :
QMAKE_LFLAGS += -framework CoreFoundation -
Strange⦠You should have had undefined symbols errorsā¦
In any case it should rather be:
LIBS += -framework CoreFoundation
-
wrote on 27 Jul 2016, 14:32 last edited by
it works too, I will replace this variable. It strange but it works, after 3 weeks, I'm so happy that something works taht I won't search why it doesn't make me an error !
21/24