summaryrefslogtreecommitdiff
path: root/scons
AgeCommit message (Collapse)Author
2009-01-16scons: Use -std=gnu99José Fonseca
It a scary world out there: people use all sort of non standard C stuff, and we must enable support for that in here in order to build. -pedantic still warn us when we use that nonstandard though.
2009-01-14scons: Use .a suffix for MinGW.José Fonseca
This allows to build MinGW and MSVC within the same dir.
2009-01-08scons: Choose the appropriate MSVC CRT.José Fonseca
2008-12-30scons: Specify C99 throughout all the tree.José Fonseca
MSVC may not support full C99, but supports more than plain C90. And -pedantic without -std=c99 generates too many spurious warnings (specially C++ style comments) to be of any use. Note that using certain C99 features in the cross-platform parts of Gallium is still not possible; namely mid-of-scope variable declarations and named structure initializers will break MSVC builds.
2008-12-09Merge commit 'origin/gallium-0.1' into gallium-0.2Alan Hourihane
2008-12-01scons: Target Windows XP on userspace.José Fonseca
2008-11-21scons: Build progs.José Fonseca
Just demos and trivial dirs for starters.
2008-11-20scons: Fix toolchain selection.Michal Krol
2008-11-20scons: Support MinGW32 cross compiler.José Fonseca
To build an alternative opengl32.dll with Gallium's software-rasterizer from a debian-based distribution run: sudo apt-get install mingw32 scons platform=windows toolchain=crossmingw machine=x86 winsys=gdi dri=no
2008-11-19scons: Fix toolchain selection.Michal Krol
2008-11-18scons: Support MinGW32 cross compiler.José Fonseca
To build an alternative opengl32.dll with Gallium's software-rasterizer from a debian-based distribution run: sudo apt-get install mingw32 scons platform=windows toolchain=crossmingw machine=x86 winsys=gdi dri=no
2008-11-17gallium: Yet another WinCE portability fix.José Fonseca
2008-10-23scons: ppc support.Michel Dänzer
2008-09-08scons: Install shared libs in the right subdir.José Fonseca
2008-09-08scons: Install libGL.so and respective symlinks.José Fonseca
2008-09-02scons: Optimize for speed, not size, with MSVC.José Fonseca
2008-07-24scons: Lookup WINDDK and WINCE SDK directories in the registry.José Fonseca
2008-07-18scons: Set default LIBS env var.José Fonseca
2008-07-18scons: Convert tabs to spaces.José Fonseca
2008-07-16mesa: WinCE fixesJonathan White
2008-07-15python: Don't use python cflags as they conflict with existing flags.José Fonseca
2008-07-15python: Move the python scons code to a separate tool module.José Fonseca
2008-07-04scons: Enable gcc SSE2 intrinsics on x86.José Fonseca
2008-07-03scons: Add a env.CodeGenerate method to simplify code generation via python ↵José Fonseca
scripts. env.CodeGenerate( target = 'my_source.c', script = 'my_generator.py', source = ['input.txt', 'another.txt'], command = 'python $SCRIPT $SOURCE > $TARGET' ) It will take care generating all appropriate dependencies, including any module imported by the generator script, and the respective .pyc file side effects.
2008-07-01scons: Output mapfile on windows ddk profile builds.José Fonseca
2008-06-27scons: Get x86-64<->x86 cross build of assembly files right.José Fonseca
2008-06-23scons: Update to target WinCE 6.0.José Fonseca
2008-06-06scons: Put the tool logic in a frontend tool.José Fonseca
More logic can be shared between public and private branches this way.
2008-05-28scons: Play nice with MS Embedded Visual C++.José Fonseca