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 )
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 2Roman "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.
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?
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.
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)