Age | Commit message (Collapse) | Author |
|
This allows you to set e.g PRE_CXX=ccache in your environment and enjoy
cached rebuilds. This makes "./makeall.sh" take 5 seconds instead of 50
seconds on my machine. :^)
|
|
You can currently use this to detect the CPU architecture like so:
#if ARCH(I386)
...
#elif ARCH(X86_64)
...
#else
...
#endif
This will be helpful for separating out architecture-specific code blocks.
|
|
Things were getting a little crowded in the project root, so this patch
moves the Lib*/ directories into Libraries/.
|
|
Okay, I've now fixed all the warnings and it was pretty lame. Let's keep the
build warning-free from now on.
|
|
|
|
This code still needs clipping, but the basic concept works. It was disabled
since before the kernel had floating point support.
|
|
|
|
|
|
This removes unused sections from the output and reduces the binary size
of everything we compile.
|
|
Compiler names, CXXFLAGS, and such. I should have done this ages ago.
|