Dolphin, the GameCube and Wii emulator - Forums

Full Version: Anywhere I can get old dolphin *sources* - specifically < svn 5890
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi - I'm trying to get my hands on some pre svn 5890 source code for dolphin-emu (I want to to run mario golf and I think r5896 is when it broke). I'm aware there are compiled versions but, as I'm running linux-fedora, I need to compile my own.

I know some folks out there keep backups of the old sources - I wonder if someone has the source for 5890 (or before) they could share with me?

Any help would be hugely appreciated Smile
You can use git for that. search the git log for 5896 and checkout that rev, probably needs a bit tweaking to get it compiling though.
http://delroth.net/dolphin/page.01.html to get the git rev more easily (change 01 to 02/03/04 in the URL if needed).
There's some old builds here to be found:

http://www.dolphin-emu.org/download.html?list=93

5851 is the last build on that list before 5906, I dunno how much that helps.
(12-14-2011, 01:20 AM)Gabriel Belmont Wrote: [ -> ]I dunno how much that helps.
... not at all since he's using linux >_>
(12-14-2011, 01:25 AM)neobrain Wrote: [ -> ]
(12-14-2011, 01:20 AM)Gabriel Belmont Wrote: [ -> ]I dunno how much that helps.
... not at all since he's using linux >_>

You're right, I just saw that there was only Windows and Mac builds there.
Can't blame me for trying though Wink
Thank-you all, that's great: I think I need a little more help identifying the git url.

The excellent mapping page identifies the git hash I need as http://code.google.com/p/dolphin-emu/sou...517004ea5b

But typing

git clone https://code.google.com/p/dolphin-emu/so...517004ea5b dolphin-emu-read-only

isn't a valid address (neither is https://code.google.com/p/dolphin-emu/r=...2b33b47a6e dolphin-emu-read-only)

Which url do I clone from?
git clone https://code.google.com/p/dolphin-emu/
cd dolphin-emu
git checkout 5abed9d5a43c
(12-14-2011, 03:37 AM)delroth Wrote: [ -> ]git clone https://code.google.com/p/dolphin-emu/
cd dolphin-emu
git checkout 5abed9d5a43c

Thanks.
Interesting.... no cmake, just scons...

oh. and some build errors. Well I may have to scratch my head a bit on this one. Thanks everyone for getting me this far Big Grin
uh, just in case anyone is following this wondering how to tweak the code, I've got the binary to build in Fedora 15 by changing the link given in line 139 of SConstruct to '-ldl'

the section of code now reads (the addition is in the line: LIBS = []):

Code:
env = Environment(
    CPPPATH = include_paths,
    RPATH = [],
    LIBS = ['-ldl'],
    LIBPATH = [],
    BUILDERS = builders,
    variables = vars,
    )

Thanks again for everyone's help in getting the source Smile