SDL ./configure error

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Post Reply
AliensDoSkate
Posts: 2
Joined: Tue Jun 13, 2006 10:48 am

SDL ./configure error

Post by AliensDoSkate »

Ok everytime I use: ./configure --host psp --prefix=$(psp-config --psp-prefix)

I get the error: checking for C compiler default output file name... configure: error: C compiler
cannot create executables

I'm not exactly sure what to do
dark_zarkon
Posts: 26
Joined: Wed Jan 11, 2006 9:35 pm

Post by dark_zarkon »

hi!


Building
--------
To build for the PSP, make sure psp-config is in the path and run:

./autogen.sh
LDFLAGS="-L$(psp-config --pspsdk-path)/lib -lc -lpspuser" \
./configure --host psp --prefix=$(psp-config --psp-prefix)
make
make install
have you used all this instruction?
i'm italian...
forgive me for my english! :)
AliensDoSkate
Posts: 2
Joined: Tue Jun 13, 2006 10:48 am

Post by AliensDoSkate »

Yes
drcd
Posts: 22
Joined: Sun Dec 04, 2005 6:58 am

Post by drcd »

I have the same problem. What's psp-config? a file?
cmf
Posts: 1
Joined: Sat Jul 08, 2006 10:41 pm

Post by cmf »

you have to run ./autogen.sh first and then this at once:

Code: Select all

LDFLAGS="-L$(psp-config --pspsdk-path)/lib -lc -lpspuser" \
  ./configure --host psp --prefix=$(psp-config --psp-prefix)
if you just run ./configure --host psp [...] alone it will throw the error you mentioned above ...
Post Reply