Author Topic: Tremulous C++ Compile/Build help!  (Read 3596 times)

whitebear

  • Posts: 659
  • Turrets: +35/-20
Tremulous C++ Compile/Build help!
« on: September 04, 2006, 05:39:56 am »
I modyfyed the source code to test how it works but now i need some help.

I can't seem to find the right file to comply. All help welcome.

kevlarman

  • Posts: 2737
  • Turrets: +291/-295
Re: Tremulous C++ Compile/Build help!
« Reply #1 on: September 04, 2006, 06:55:25 am »
Quote from: "whitebear"
I modyfyed the source code to test how it works but now i need some help.

I can't seem to find the right file to comply. All help welcome.
first of all, there isn't a single line of C++ in tremulous. second of all, compile != comply. and third of all, you need to be more specific, your post contains no useful information (useful information includes your OS, what the error you get is, etc), so unless we can read your mind, we can't really help you.
Quote from: Asvarox link=topic=8622.msg169333#msg169333
Ok let's plan it out. Asva, you are nub, go sit on rets, I will build, you two go feed like hell, you go pwn their asses, and everyone else camp in the hallway, roger?
the dretch bites.
-----
|..d| #
|.@.-##
-----

whitebear

  • Posts: 659
  • Turrets: +35/-20
Tremulous C++ Compile/Build help!
« Reply #2 on: September 04, 2006, 08:14:45 am »
VC++ then? It's not that i would have problem with errors but i can't find the right file to start compile.

Someone should make tutorial "How to compile trem source code" that would include and free available resources needed.

vcxzet

  • Guest
Tremulous C++ Compile/Build help!
« Reply #3 on: September 04, 2006, 08:43:50 am »
Quote from: "whitebear"
VC++ then? It's not that i would have problem with errors but i can't find the right file to start compile.

Someone should make tutorial "How to compile trem source code" that would include and free available resources needed.

there is no vc solution file for trem get one from icculus modify it a little bit

next_ghost

  • Posts: 892
  • Turrets: +3/-6
Tremulous C++ Compile/Build help!
« Reply #4 on: September 04, 2006, 09:06:42 am »
Grab Dev-C++ and simply import the Makefile.
If my answer to your problem doesn't seem helpful, it means I won't help you until you show some effort to fix your problem yourself!
1.2.0 release's been delayed for 5:48:00 already because of stupid questions.

David

  • Spam Killer
  • *
  • Posts: 3543
  • Turrets: +249/-273
Tremulous C++ Compile/Build help!
« Reply #5 on: September 04, 2006, 10:30:51 am »
just run make in the folder.
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.

next_ghost

  • Posts: 892
  • Turrets: +3/-6
Tremulous C++ Compile/Build help!
« Reply #6 on: September 04, 2006, 11:05:40 am »
Quote from: "David"
just run make in the folder.


You need properly installed MinGW to do that on Windoze. You don't get one with M$ VC.
If my answer to your problem doesn't seem helpful, it means I won't help you until you show some effort to fix your problem yourself!
1.2.0 release's been delayed for 5:48:00 already because of stupid questions.

vcxzet

  • Guest
Tremulous C++ Compile/Build help!
« Reply #7 on: September 04, 2006, 11:18:25 am »
Quote from: "next_ghost"
Quote from: "David"
just run make in the folder.


You need properly installed MinGW to do that on Windoze. You don't get one with M$ VC.

not just mingw
http://svn.icculus.org/*checkout*/quake3/trunk/README
but once you did everything everything works fine

whitebear

  • Posts: 659
  • Turrets: +35/-20
Tremulous C++ Compile/Build help!
« Reply #8 on: September 04, 2006, 04:28:27 pm »
Code: [Select]
jw@AMD /c/test/trem
$ mingw32-make
mingw32-make -C src/tools/lcc install
mingw32-make[1]: Entering directory `/c/test/trem/src/tools/lcc'
gcc -O2 -Wall -fno-strict-aliasing -MMD -DTEMPDIR=\"/tmp\" -DSYSTEM=\"\" -c -Isrc -o build-mingw32-x86/etc/lcc.o etc/lcc.c
gcc.exe: installation problem, cannot exec `as': No such file or directory
mingw32-make[1]: *** [build-mingw32-x86/etc/lcc.o] Error 1
mingw32-make[1]: Leaving directory `/c/test/trem/src/tools/lcc'
mingw32-make: *** [tools] Error 2


got this from msys

next_ghost

  • Posts: 892
  • Turrets: +3/-6
Tremulous C++ Compile/Build help!
« Reply #9 on: September 04, 2006, 05:21:08 pm »
Quote from: "whitebear"
Code: [Select]
jw@AMD /c/test/trem
$ mingw32-make
mingw32-make -C src/tools/lcc install
mingw32-make[1]: Entering directory `/c/test/trem/src/tools/lcc'
gcc -O2 -Wall -fno-strict-aliasing -MMD -DTEMPDIR=\"/tmp\" -DSYSTEM=\"\" -c -Isrc -o build-mingw32-x86/etc/lcc.o etc/lcc.c
gcc.exe: installation problem, cannot exec `as': No such file or directory
mingw32-make[1]: *** [build-mingw32-x86/etc/lcc.o] Error 1
mingw32-make[1]: Leaving directory `/c/test/trem/src/tools/lcc'
mingw32-make: *** [tools] Error 2


got this from msys


GCC can't find assembler (as), install it first.
If my answer to your problem doesn't seem helpful, it means I won't help you until you show some effort to fix your problem yourself!
1.2.0 release's been delayed for 5:48:00 already because of stupid questions.