Bug 3928 - Use system cpp instead of q3cpp
Status: RESOLVED WONTFIX
Alias: None
Product: ioquake3
Classification: Unclassified
Component: Misc
Version: GIT MASTER
Hardware: All All
: P3 enhancement
Assignee: Zachary J. Slater
QA Contact: ioquake3 bugzilla mailing list
URL:
Depends on:
Blocks:
 
Reported: 2009-01-07 13:57 EST by Ben Millwood
Modified: 2009-09-14 19:39:33 EDT
1 user (show)

See Also:


Attachments
Removing q3cpp from the source (3.78 KB, patch)
2009-01-07 14:01 EST, Ben Millwood

Description Ben Millwood 2009-01-07 13:57:33 EST
There's no reason why the QVMs need their own C preprocessor, since cpp is not architecture-dependent. I recommend we remove it and use whatever is installed on the host's machine, bringing the following benefits:
* Use of newer features such as variadic macros made possible in QVMs
* Smaller code download/compile time (admittedly marginally)
* Less code for ioq3 devs to maintain
* Somewhat closer to being free of the mess that is lcc (both codewise and licencewise: thinking of issues like http://lists.debian.org/debian-legal/2008/08/msg00116.html )
Comment 1 Ben Millwood 2009-01-07 14:01:01 EST
Created attachment 1951 [details]
Removing q3cpp from the source

If this patch is applied, it should be safe to delete code/tools/lcc/cpp.
However, I'm not quite sure what effect this will have on the Visual Studio projects and can't confirm that it works using MSYS/mingw on windows (especially, I wasn't sure whether to add BINEXT to cpp)
Comment 2 Roman "kevlarman" Tetelman 2009-01-07 17:03:14 EST
(In reply to comment #1)
> Created an attachment (id=1951) [details]
> Removing q3cpp from the source
> 
> If this patch is applied, it should be safe to delete code/tools/lcc/cpp.
> However, I'm not quite sure what effect this will have on the Visual Studio
> projects and can't confirm that it works using MSYS/mingw on windows
> (especially, I wasn't sure whether to add BINEXT to cpp)
> 
i just tested it with msys/mingw and it appears to work fine.
Comment 3 Amanieu d'Antras 2009-01-07 19:59:53 EST
I believe the Visual Studio projects are only used for making dlls, not qvms, so they are not an issue.
Comment 4 Monk 2009-01-15 02:20:36 EST
Yes, Visual Studio projects are currently set up just to make the quake 3 binaries, not any of the tools.

That being said, where is q3cpp used?  I am using the Q3 1.32b mod SDK to create QVMs and I see that there's a q3cpp.exe there.  In the QVM generation batch files/scripts, let's see...

set cc=lcc.exe -DQ3_VM -S -Wf-target=bytecode -Wf-g -I..\..\cgame -I..\..\game -I..\..\ui
q3asm -f ../game

So I'm not using that q3cpp.exe anywhere... is it automagically called by lcc or q3asm or something?
Comment 5 Amanieu d'Antras 2009-01-15 03:55:23 EST
It's called by q3lcc.
Comment 6 Monk 2009-01-20 01:42:25 EST
As apparently one of the only people using visual studio, I say go for it if it doesn't mess anything else up on the other platforms.  Visual studio doesn't have any project files for compiling any of the tools anyway, though I can try to make one maybe after this gets applied.  As long as a windows user has a mingw install that can build the qvm tools, it shouldn't be a big deal.  I assume most tinkering with ioq3 will be in the game code, not the supporting tools anyway.
Comment 7 Ryan C. Gordon 2009-09-14 19:39:33 EDT
I don't think it's worth screwing with the tools like this.

--ryan.