Author Topic: Tutorial build game.qvm in Linux  (Read 6832 times)

israroot

  • Posts: 21
  • Turrets: +0/-0
Tutorial build game.qvm in Linux
« on: July 12, 2007, 02:05:25 am »
Necessary of a tutorial one of as to apply patchs and to construct to my proper game.qvm in linux

{M}IsrarootTdT

kevlarman

  • Posts: 2737
  • Turrets: +291/-295
Re: Tutorial build game.qvm in Linux
« Reply #1 on: July 12, 2007, 02:08:25 am »
Quote from: "israroot"
Necessary of a tutorial one of as to apply patchs and to construct to my personal game.qvm in linux
Code: [Select]
$ svn co -r<revision you want> svn://svn.icculus.org/tremulous/trunk <foldername>
patch -p0 < path/to/patch #some patches are -p1 or -p2
make
done
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| #
|.@.-##
-----

benmachine

  • Posts: 915
  • Turrets: +99/-76
    • ben's machinery
Re: Tutorial build game.qvm in Linux
« Reply #2 on: July 12, 2007, 12:45:39 pm »
Code: [Select]
$ svn co -r<revision you want> svn://svn.icculus.org/tremulous/trunk <foldername>
cd <foldername>
patch -p0 < path/to/patch #some patches are -p1 or -p2
make
fixed (trivial I know, but best to be sure)
benmachine

doomagent13

  • Posts: 506
  • Turrets: +18/-18
Re: Tutorial build game.qvm in Linux
« Reply #3 on: July 12, 2007, 03:49:19 pm »
Quote from: "benmachine"
Code: [Select]
$ svn co -r<revision you want> svn://svn.icculus.org/tremulous/trunk <foldername>
cd <foldername>
patch -p0 < path/to/patch #some patches are -p1 or -p2
make
fixed (trivial I know, but best to be sure)
lol
I was think that exact same addition/change, but didnt want to get involved as I dont have linux

israroot

  • Posts: 21
  • Turrets: +0/-0
Tutorial build game.qvm in Linux
« Reply #4 on: July 12, 2007, 04:09:28 pm »
It wanted a tutorial one step by step.
Making, explaining and commenting.
Nor all are programmers.
And exists people who you dom to teach.

{M}IsrarootTdT

Ingar

  • Tremulous Developers
  • *
  • Posts: 554
  • Turrets: +302/-7
    • Ingar's projects on the Web
Tutorial build game.qvm in Linux
« Reply #5 on: July 12, 2007, 04:13:42 pm »
Quote from: "israroot"
It wanted a tutorial one step by step.
Making, explaining and commenting.
Nor all are programmers.
And exists people who you dom to teach.


This should do:
http://tremulous.net/phpBB2/viewtopic.php?p=82905#82905

next_ghost

  • Posts: 892
  • Turrets: +3/-6
Re: Tutorial build game.qvm in Linux
« Reply #6 on: July 14, 2007, 06:47:15 pm »
Quote from: "benmachine"
Code: [Select]
$ svn co -r<revision you want> svn://svn.icculus.org/tremulous/trunk <foldername>
cd <foldername>
patch -p0 < path/to/patch #some patches are -p1 or -p2
make


I'd add -F0 option to the patch command. That should lower the chance of broken code. You should also mention that if patch reports rejected chunk, the code is broken and requires fixing by hand, otherwise the resulting QVM (if it ever gets compiled) will behave strangely and may crash.
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.

israroot

  • Posts: 21
  • Turrets: +0/-0
Tutorial build game.qvm in Linux
« Reply #7 on: July 15, 2007, 03:20:13 pm »
patch -pF0 < path/to/patch ?

{M}IsrarootTdT

next_ghost

  • Posts: 892
  • Turrets: +3/-6
Tutorial build game.qvm in Linux
« Reply #8 on: July 15, 2007, 05:36:19 pm »
Quote from: "israroot"
patch -pF0 < path/to/patch ?


patch -p0 -F0 < path/to/patch
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.