View Single Post
Old 12th October 2007, 18:12   #729  |  Link
surfer63
Registered User
 
Join Date: Sep 2007
Posts: 5
@DarkAvenger

I have been working on the "not-compiling" of 0.08 for quite some weeks now. Some of my "fellow" (more clever) programmers found the solution.
Code:
export CFLAGS=-fno-common
cmake -DSHARED=1 ..
make
sudo make install
Apparently global variables that are defined in different object files need to be initialised on the Mac. The no-common option will initialise these variables to zero.
Sorry for taking your time and than solving it self.
surfer63 is offline   Reply With Quote