Results 1 to 7 of 7

Thread: Updated ps2dev svn SDL

                  
   
  1. #1
    DCEmu Coder HomerSp's Avatar
    Join Date
    Sep 2006
    Age
    35
    Posts
    78
    Rep Power
    0

    Default Updated ps2dev svn SDL

    Okay, so.. I just updated the PSP SDL from ps2dev's svn server to SDL version 1.2.11. And I was wondering if it's possible to upload this to the svn server? I could upload the files as a zip to my server.. But the svn is there for a reason right?

  2. #2
    DCEmu Regular psiko_scweek's Avatar
    Join Date
    Apr 2006
    Posts
    315
    Rep Power
    71

    Default update to SDL

    Gotta quick question about that version of SDL. Does it work with the newest toolchain and such? I, as well as a lot of other people, have been unable to install SDL as a result of a AUTOMAKE error (not working with version 1.10)

  3. #3
    DCEmu Rookie BlackShark's Avatar
    Join Date
    Mar 2006
    Posts
    107
    Rep Power
    71

    Default

    were can I get your version of SDL Homer? trying to compile DoomPSP but i think i need that library first.

  4. #4
    DCEmu Coder HomerSp's Avatar
    Join Date
    Sep 2006
    Age
    35
    Posts
    78
    Rep Power
    0

    Default

    I don't think anyone else has it. I had to edit quite alot of stuff for it to work. But I'll upload it to my server in a min.

    Here you go:
    http://xn--stjrna-dua.net/SDL-1.2.11.zip
    Compile it with
    Code:
    ./autogen.sh
    LDFLAGS="-L$(psp-config --pspsdk-path)/lib -lc -lpspuser" \
    ./configure --host psp --prefix=$(psp-config --psp-prefix)
    make
    make install
    And yes, this does work fine with pspsdk. I have a template SDL makefile here you can use
    Code:
    PSPSDK=$(shell psp-config --pspsdk-path)
    PSPBIN=$(PSPSDK)/../bin
    
    TARGET = SDL
    TARGET_ELF = elf.elf
    OBJS = 
    CFLAGS = -O3 -G0 -Wall $(shell $(PSPBIN)/sdl-config --cflags)
    CXXFLAGS = $(CFLAGS) -fno-exceptions -fno-rtti -fexceptions
    
    LIBDIR =
    LIBS = -lSDL_image -lSDL_mixer -lSDL_ttf -lfreetype -lvorbisidec -lpng -ljpeg -lz $(shell $(PSPBIN)/sdl-config --libs) -lstdc++ -lm
    LDFLAGS =
    
    EXTRA_TARGETS = EBOOT.PBP 
    PSP_EBOOT_TITLE = SDL
    
    include $(PSPSDK)/lib/build.mak

  5. #5
    DCEmu Regular psiko_scweek's Avatar
    Join Date
    Apr 2006
    Posts
    315
    Rep Power
    71

    Default

    hey thanks HomerSP, that version of SDL installed on the latest toolchain without a problem! I dont know what you did but it works without a problem.

    you said you updated SDL to version 1.211, what is different than the one in the SVN?

  6. #6
    DCEmu Coder HomerSp's Avatar
    Join Date
    Sep 2006
    Age
    35
    Posts
    78
    Rep Power
    0

    Default

    The one in svn isn't the latest version. So I simply downloaded the latest version from SDL and edited it so it works with the sdk

  7. #7
    DCEmu Regular psiko_scweek's Avatar
    Join Date
    Apr 2006
    Posts
    315
    Rep Power
    71

    Default library...

    Homer, do you happen to have that library available still?

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •