Forums

Full Version: Some collaboration needed with building Arch Linux package
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Please read:
http://bbs.archlinux.org/viewtopic.php?p=198719#198719

The problem is that we need to optimize the binary for i686 and need to be sure which options to set.
I know now that release should be = 1
Anything else ?
For optimizing for i686, VDrift has an option for turning on the "-march=..." flag on the compiler. If you run
Code:
scons -h
it tells you the usage is:
Code:
Type: 'scons' to compile with the default options.
      'scons arch=axp' to compile for Athlon XP support (other options: a64, p4, x86)
...
So, you probably want to use it like this:
Code:
scons arch=p4
while someone with an Athlon XP would do
Code:
scons arch=axp
or someone with an Athlon64 would do
Code:
scons arch=a64
Does that help?

If there is something else to be turned on besides "-march=pentium4" then let me know and I can help you out.

By the way I'm not sure if this made it into the last release, but I think you're using SVN anyway right?
Arch Linux package has been created

http://aur.archlinux.org/packages.php?do...s=0&SeB=nd
By the way, there is an new flag for scons
Code:
scons arch=686
to turn on the "-march=i686" compiler option.