Hard Light Productions Forums

Modding, Mission Design, and Coding => FS2 Open Coding - The Source Code Project (SCP) => Cross-Platform Development => Topic started by: draeath on April 01, 2008, 12:59:59 am

Title: bad links
Post by: draeath on April 01, 2008, 12:59:59 am
The links in the Current OS X and Linux versions ... (http://www.hard-light.net/forums/index.php/topic,44374.0.html) thread have all been replaced with some youtube vid...

Anyone have the valid data? If this is some April fools thing, I'm gonna be quite irritable... I needed to grab the source to recompile as the version the installer pulls needs glibc 2.4, my distro has 2.3-something.

EDIT: ALL user links are redirected! WTF?!? Is there any way I can stop this? Some hidden preference somewhere?
Title: Re: bad links
Post by: blowfish on April 01, 2008, 01:03:23 am
Yes, its some april fools thing.  All external links go to that.  The easiest way around it is to quote a post and extract the link from there (but don't post anything obviously).

Oh, and BTW you can thank Goober for that joke.
Title: Re: bad links
Post by: draeath on April 01, 2008, 01:05:48 am
Thanks for the quick answer!

Unfortunately, that's a locked thread so the quote options are not displayed. Great. Thanks Goober... bad taste I would say, not allowing a work-around. So much for getting some gaming done on my day off.


 
Tried to be sneaky and edit my quote URL to point to his thread/message, and it almost worked: "An Error Has Occurred! This topic is locked, you are not allowed to post or modify messages..."
Title: Re: bad links
Post by: karajorma on April 01, 2008, 02:32:18 am
Code: [Select]

[size=12pt][b][color=red]3.6.9 Final[/color][/b][/size]
  [b][url=http://fs2source.warpcore.org/exes/osx/FS2_Open-3.6.9.dmg]Mac OS X (Universal Binary)[/url][/b]
  [b][url=http://fs2source.warpcore.org/exes/linux/fs2_open-3.6.9.run]Linux (32 and 64-bit)[/url][/b]

  [b][url=http://fs2source.warpcore.org/exes/linux/fs2_open-3.6.9.tar.bz2]Source tarball[/url][/b]


[size=12pt][b][color=red]Current stable/trunk build (2008-03-30)[/color][/b][/size]
  [b][url=http://icculus.org/~taylor/fso/testing/20080330_trunk-osx.tgz]Mac OS X (Universal Binary)[/url][/b]


[size=12pt][b][color=red]Current test build (2007-10-28)[/color][/b][/size]
  [b][url=http://fs2source.warpcore.org/exes/latest/taylor/20071028-osx.tgz]Mac OS X (Universal Binary)[/url][/b]
  [b][url=http://fs2source.warpcore.org/exes/latest/taylor/20071028-linux32.tgz]Linux (32-bit, binaries only)[/url][/b]

  [b][url=http://fs2source.warpcore.org/exes/latest/taylor/fs2_open-20071028.tar.bz2]Source tarball[/url][/b]


[size=12pt][b][color=red]MediaVPs[/color][/b][/size]
  [b][url=http://www.hard-light.net/forums/index.php/topic,39905.0.html]Release Thread[/url][/b]

You should be able to get any links you need from that.
Title: Re: bad links
Post by: draeath on April 01, 2008, 11:03:39 am
Thanks! Compiled and flying! (of course after slaughtering the makefiles to get rid of -g and replace -Os with -O3 (it ignored my cflags... grr))

On a completely unrelated note, trying to compile the clean unmodified 3.6.9 Final with debug and gprof support died with undefined functions... <shrugs>
Title: Re: bad links
Post by: chief1983 on April 01, 2008, 01:57:06 pm
I'm a fan of optimizing for speed vs size, but isn't O3 a bit aggressive for this project?
Title: Re: bad links
Post by: taylor on April 01, 2008, 04:02:14 pm
I'm a fan of optimizing for speed vs size, but isn't O3 a bit aggressive for this project?
-O3 used to cause various strange bugs to pop up at random times, but I think that I've long since gotten all of that worked out (just bad/old code stuff).  So I don't really think that it's too aggressive, and I even tend to use it myself.  Of course, simply using O3 doesn't mean it's actually going to be any better than O2.

I just have it set to use -Os simply because it's a good mix for most people and works well as a default.