libretro / fceu-next

Port of FCEUmm / FCEUX to Libretro.
14 stars 9 forks source link

OS X - FCEUmm build errors #4

Closed clobber closed 12 years ago

clobber commented 12 years ago

Was building FCEUmm for libsnes

http://pastebin.com/LngJaYLD

inactive123 commented 12 years ago

Try to define -DHAVE_ASPRINTF for the OSX target.

Themaister commented 12 years ago

Added -DHAVE_ASPRINTF to OSX. Try build again.

clobber commented 12 years ago

That didn't work until i fixed the makefile. (you'll probably have to do this for the rest of the libsnes makefiles too):

ifeq ($(platform),) platform = unix ifeq ($(shell uname -a),) platform = win else ifneq ($(findstring MINGW,$(shell uname -a)),) platform = win else ifneq ($(findstring Darwin,$(shell uname -a)),) platform = osx else ifneq ($(findstring win,$(shell uname -a)),) platform = win endif endif

Themaister commented 12 years ago

Ugh, that exact error pops up all the time :D Pushed that as well.