Hello again. I'm back with more newbie questions. :lol:
I'm trying to compile Rlyeh's Minimal Library - but rather than using it in a static linked .gpe, I'm trying to turn it into a shared library(.so). It keeps spitting out this error, and I'm not sure why. (I'm using the Code::Blocks project's toolchain)
.gpe files compile fine. Is it because I have a space in the path? I'm inclined to think not, since it's referring to the whole path and not "f:\programming".
All the folders are where they're supposed to be, so why can't it find /usr/lib/? :huh:
Looks like this guy had the same problem.
-Kramy
Edit: Moved devkitGP2X folder to G:\ - same error - help!
CODE
@ECHO OFF
IF EXIST *.so DEL *.so
ECHO Compiling Minimal Library
arm-linux-gcc -shared -o rlib.so minimal.c -lpthread -lm
PAUSE
I'm trying to compile Rlyeh's Minimal Library - but rather than using it in a static linked .gpe, I'm trying to turn it into a shared library(.so). It keeps spitting out this error, and I'm not sure why. (I'm using the Code::Blocks project's toolchain)
.gpe files compile fine. Is it because I have a space in the path? I'm inclined to think not, since it's referring to the whole path and not "f:\programming".
All the folders are where they're supposed to be, so why can't it find /usr/lib/? :huh:
Looks like this guy had the same problem.
-Kramy
Edit: Moved devkitGP2X folder to G:\ - same error - help!
CODE
@ECHO OFF
IF EXIST *.so DEL *.so
ECHO Compiling Minimal Library
arm-linux-gcc -shared -o rlib.so minimal.c -lpthread -lm
PAUSE
Last edited by a moderator: