Title: How to use/build openarena-modSDK-0.8.1 on linux ? Post by: mcjo on March 22, 2009, 05:09:40 AM Hello team,
how to use or build the SDK? When I launch "make clean", I have one error Code: make -C code/unix/setup clean When I launch "make copyfiles" it is correct: Code: make -C code/tools/lcc install Code: ls -Rl /home/__my__/openArena/install/ Title: Re: How to use/build openarena-modSDK-0.8.1 on linux ? Post by: Snickersnack on March 22, 2009, 07:03:39 PM Have you tried the default rule? Just typing 'make' builds qvms for me.
Title: Re: How to use/build openarena-modSDK-0.8.1 on linux ? Post by: mcjo on March 23, 2009, 04:52:15 PM Have you tried the default rule? Just typing 'make' builds qvms for me. Yes,when I tried but only q3lcc, q3cpp, q3rcc, q3asm are present in directory "code/tools/". When I tried whith ioquake download from ioquake svn :"svn://svn.icculus.org/quake3/trunk" equal from download page I have a lot files compiled : Code: build/release-linux-i386/ioq3ded.i386 Title: Re: How to use/build openarena-modSDK-0.8.1 on linux ? Post by: sago007 on March 23, 2009, 06:23:00 PM when I tried but only q3lcc, q3cpp, q3rcc, q3asm are present in directory "code/tools/". That should be all you need to create mods.Compiling of the engine is disabled in the make files and the source is removed from the package. Compiling of the tools and qvm files is enabled in the make files. You cannot compare the amount of files compiled to ioquake3. I have tried compiling it on multiple machines and never had a problem on a Linux box. What distro do you use? Have you changed anything? (Especially Makefile and Makefile.local) Title: Re: How to use/build openarena-modSDK-0.8.1 on linux ? Post by: mcjo on March 24, 2009, 04:13:01 AM when I tried but only q3lcc, q3cpp, q3rcc, q3asm are present in directory "code/tools/". That should be all you need to create mods.Compiling of the engine is disabled in the make files and the source is removed from the package. Compiling of the tools and qvm files is enabled in the make files. You cannot compare the amount of files compiled to ioquake3. I have tried compiling it on multiple machines and never had a problem on a Linux box. What distro do you use? Have you changed anything? (Especially Makefile and Makefile.local) No I have, just extract the source archive downloaded from svn repository, run 'make' and 'sudo make copyfile'. I haven't any error on make command, but the created directory are desperately empty. I use ubuntu 8.10, with gcc 4.3 Thank for help. Title: Re: How to use/build openarena-modSDK-0.8.1 on linux ? Post by: Snickersnack on March 24, 2009, 07:28:21 PM So there were no errors? Strange.
Was a 'build' directory created? It might be useful to see the output of make. Could you try untaring a fresh openarena-modSDK-0.8.1.tar.bz2, change directory to the one with the 'Makefile' file, and run this command? Code: make &>foo There should now be a new file called 'foo'. If you could attach or post a link to that file maybe someone here can figure this out. :) Title: Re: How to use/build openarena-modSDK-0.8.1 on linux ? Post by: mcjo on March 26, 2009, 01:34:53 PM So there were no errors? Strange. Was a 'build' directory created? It might be useful to see the output of make. Could you try untaring a fresh openarena-modSDK-0.8.1.tar.bz2, change directory to the one with the 'Makefile' file, and run this command? Code: make &>foo There should now be a new file called 'foo'. If you could attach or post a link to that file maybe someone here can figure this out. :) It's all ok, I have just change the MakeFile to change BUILD_GAME_SO = 0 To BUILD_GAME_SO = 1 Thank for all |