News:

Come Chat with us live! Learn how HERE!

Main Menu

Offering build platform.

Started by bacon665, May 06, 2009, 03:10:57 AM

Overdose

Quote from: bacon665 on May 10, 2009, 03:30:07 AM
WTF is your problem?

Replying only feeds into it.

But I think he might be implying that something you said is wrong or just noobish. (probably your last comment about replacing the engine, that's just a guess though)
Chocolate Milk.

UniqPhoeniX


bacon665

Ive seen some of the threads about the OpenArena and a couple others floating around on source forge.
But JIT and AOT are just compilers not the engine.
I also seen a thread about a python based server, If the client was also migrated then there wont be much hassle at all as you would just install the 64bit windows binary of python and go about life.


bacon665

Ok so I did some more reading and still havent found a reason for JIT not to work
But in the meantime i can still build a 32bit version with SSE3 SSE4a and NX Bit.

David

Any maps not in the MG repo?  Email me or come to irc.freenode.net/#mg.
--
My words are mine and mine alone.  I can't speak for anyone else, and there is no one who can speak for me.  If I ever make a post that gives the opinions or positions of other users or groups, then they will be clearly labeled as such.
I'm disappointed that people's past actions have forced me to state what should be obvious.
I am not a dev.  Nothing I say counts for anything.

Overdose

Chocolate Milk.

David

oh yeah, /me is blind.  There are too many threads about 64 bit >_>.
Any maps not in the MG repo?  Email me or come to irc.freenode.net/#mg.
--
My words are mine and mine alone.  I can't speak for anyone else, and there is no one who can speak for me.  If I ever make a post that gives the opinions or positions of other users or groups, then they will be clearly labeled as such.
I'm disappointed that people's past actions have forced me to state what should be obvious.
I am not a dev.  Nothing I say counts for anything.

bacon665

But this should just show that its possible to Build for windows 64.
Unix linux and other Posix systems are rather easy to adapt.
./configure takes care of all that.

gimhael

Only there is no ./configure in tremulous.

bacon665

Thats because it uses the MinGW tool chain.
If it wasnt a pain in the ass to set up.....
#!/bin/sh

export CC=i586-mingw32msvc-gcc
export WINDRES=i586-mingw32msvc-windres
export PLATFORM=mingw32
exec make $*


Thats all thats in the build script

Yarou



Currently:
{&}Yarou

bacon665

theres no reason for you to start the shutup shit.
the build chain for x64 is here:http://sourceforge.net/project/showfiles.php?group_id=202880&package_id=311650
should just have to set it up and change that to
export CC=i986-mingw32msvc-gcc
export WINDRES=i986-mingw32msvc-windres
export PLATFORM=mingw32

to at leats make use of newer processor functions or

export CC=x86-64-mingw64msvc-gcc
export WINDRES=x86-64-mingw64msvc-windres
export PLATFORM=mingw64


and is this patch for smp even needed when you change to i786 or higher since theyre both smt/smp enabled anyway?
Index: Makefile
===================================================================
--- Makefile (revision 835)
+++ Makefile (working copy)
@@ -674,7 +674,7 @@
ifneq ($(BUILD_CLIENT),0)
   TARGETS += $(B)/tremulous.$(ARCH)$(BINEXT)
   ifneq ($(BUILD_CLIENT_SMP),0)
-    TARGETS += $(B)/tremulous.$(ARCH)$(BINEXT)
+    TARGETS += $(B)/tremulous-smp.$(ARCH)$(BINEXT)
   endif
endif