Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | scons: User friendly message for code generated files | José Fonseca | 2010-02-10 | 1 | -1/+3 |
| | |||||
* | scons: Eliminate mixed space/tabs. | José Fonseca | 2010-02-04 | 1 | -10/+10 |
| | |||||
* | scons: Only override scons CC selection in the embedded platform. | José Fonseca | 2010-02-04 | 1 | -12/+16 |
| | |||||
* | scons: Promote EMBEDDED from subsystem to full os. | José Fonseca | 2010-02-04 | 1 | -1/+1 |
| | |||||
* | scons: Have MinGW target MSVCRT 7.0 | José Fonseca | 2010-02-04 | 1 | -0/+1 |
| | | | | Necessary for _aligned_malloc/free(). | ||||
* | another gcc 4.2.x check for mstackrealign | Alan Hourihane | 2010-01-29 | 1 | -1/+4 |
| | |||||
* | add PIPE_SUBSYSTEM_EMBEDDED when embedded platform used | Alan Hourihane | 2010-01-28 | 1 | -0/+2 |
| | |||||
* | scons: Do not use linker option '-Bsymbolic' on Mac OS X. | Vinson Lee | 2010-01-28 | 1 | -3/+4 |
| | | | | ld on Mac OS X does not recognize the option '-Bsymbolic'. | ||||
* | Duplicate CCVERSION check code to compensate for different env CC. | Alan Hourihane | 2010-01-27 | 1 | -2/+16 |
| | |||||
* | scons: Use '-Werror=' option on GCC 4.2.x and greater. | Vinson Lee | 2010-01-26 | 1 | -1/+2 |
| | | | | The existing code only checked for GCC 4.2.x and 4.3.x. | ||||
* | fix typo | Alan Hourihane | 2010-01-26 | 1 | -2/+1 |
| | |||||
* | only use -Werror flags with gcc 4.2.x and 4.3.x. | Alan Hourihane | 2010-01-26 | 1 | -2/+8 |
| | | | | could use a better test here though. | ||||
* | Merge branch 'mesa_7_7_branch' | Brian Paul | 2010-01-25 | 1 | -1/+4 |
|\ | | | | | | | | | | | | | | | | | | | | | Conflicts: src/mesa/drivers/dri/intel/intel_screen.c src/mesa/drivers/dri/intel/intel_swapbuffers.c src/mesa/drivers/dri/r300/r300_emit.c src/mesa/drivers/dri/r300/r300_ioctl.c src/mesa/drivers/dri/r300/r300_tex.c src/mesa/drivers/dri/r300/r300_texstate.c | ||||
| * | scons: Do not use ld options start-group and end-group on Darwin. | Vinson Lee | 2010-01-23 | 1 | -1/+4 |
| | | | | | | | | Mac OS X ld does not support these options. | ||||
* | | scons: LLVM <-> MSVC integration tweaks. | José Fonseca | 2010-01-10 | 1 | -0/+10 |
| | | |||||
* | | gallium: Provide alternative stdint.h and stdbool.h C99 headers, instead of ↵ | José Fonseca | 2010-01-10 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | ad-hoc definitions. Everybody is using the C99's integer types. Everybody except Microsoft, which in turns means everybody is including their own definitions of C99 integer types for MSVC, causing duplicate definitions when linking two projects. This is the case of building Gallium and LLVM with MSVC. Shipping alternative stdint.h and stdbool.h headers for MSVC allows us to share a single definition. It also removes clutter from the Gallium headers. | ||||
* | | scons: Update the MSVC SA to match latest scons code. | José Fonseca | 2010-01-02 | 3 | -41/+153 |
| | | |||||
* | | scons: Axe generic.py. | José Fonseca | 2010-01-02 | 1 | -486/+0 |
| | | | | | | | | Progs are now built together with the rest so no longer needed. | ||||
* | | scons: Put glut and glew shared libraries into build/xxx/bin or lib. | José Fonseca | 2010-01-02 | 1 | -17/+21 |
| | | | | | | | | Use bin subdir for windows dlls, lib for unices. | ||||
* | | scons: Remove duplicated code. | José Fonseca | 2010-01-02 | 1 | -31/+0 |
| | | |||||
* | | scons: Disable version symlinking for DLLs. | José Fonseca | 2010-01-02 | 1 | -6/+10 |
| | | | | | | | | Fixes windows build. | ||||
* | | scons: Don't globally define WIN32_LEAN_AND_MEAN. | José Fonseca | 2010-01-01 | 2 | -4/+0 |
| | | | | | | | | | | | | | | | | Some of the demo progams legitimately need the functionality that's disabled by WIN32_LEAN_AND_MEAN. Instead the solution should be to define WIN32_LEAN_AND_MEAN just before including windows.h on a case by case basis. | ||||
* | | scons: Expose convienience libraries to the host environment. | José Fonseca | 2010-01-01 | 3 | -218/+200 |
| | | | | | | | | | | This fixes MinGW cross compilation build, recently broken due to the use of convenience libraries in the GLSL preprocessor. | ||||
* | | scons: Put the configuration info in the build directory too. | José Fonseca | 2009-12-26 | 1 | -0/+2 |
| | | | | | | | | | | It fixes cached configuration results from one platform being erroneously used in other platforms. | ||||
* | | llvmpipe: Install unit tests on build/xxx/bin | José Fonseca | 2009-12-23 | 1 | -0/+7 |
| | | |||||
* | | Revert "scons: Pass -fno-strict-aliasing to gcc." | Brian Paul | 2009-12-11 | 1 | -1/+0 |
|/ | | | | | | This reverts commit a2937a2f4ecf22a5a4242cd0a350f20228f50232. Per Jose's comment, We don't want this on master. | ||||
* | scons: Tweak MSVC release options. | José Fonseca | 2009-12-11 | 1 | -2/+7 |
| | | | | Enable whole program optimizations and fast math. | ||||
* | scons: Pass -fno-strict-aliasing to gcc. | José Fonseca | 2009-12-11 | 1 | -0/+1 |
| | | | | | | | Strict aliasing tule violations were fixed on master, but they're still causing problem in this branch, so disable this assumptions. Do not apply this fix to master (revert when you merge). | ||||
* | scons: Make it work with MinGW build of LLVM 2.6. | José Fonseca | 2009-12-11 | 1 | -25/+27 |
| | | | | LLVM 2.5 is no longer supported on windows. | ||||
* | scons: Promote pointer arithmetic to error. | José Fonseca | 2009-11-27 | 1 | -1/+1 |
| | | | | | All code covered by scons is being built on multiple OSes, so pointer arithmetic must really be addressed when spotted. | ||||
* | util: Remove homegrown Windows KM profiler. | José Fonseca | 2009-11-04 | 2 | -12/+0 |
| | | | | | It's not sampling based so its results are biased towards functions called many times. | ||||
* | scons: Define _USE_MATH_DEFINES on MSVC. | José Fonseca | 2009-10-26 | 2 | -0/+5 |
| | |||||
* | scons: Hack LLVM support on Windows. | José Fonseca | 2009-10-22 | 1 | -2/+43 |
| | | | | | Doesn't quite work yet though, as small differences in the compilation flags used when building LLVM and Mesa cause link failures for STL symbols. | ||||
* | scons: Disable more MSVC pedantic security warnings. | José Fonseca | 2009-10-22 | 1 | -0/+3 |
| | |||||
* | scons: Disable SSE intrinsics on MinGW. | José Fonseca | 2009-10-14 | 1 | -2/+10 |
| | | | | | | | | | | | | | | | | -mstackrealign causes stack corruption on MinGW. And without it the ability to use SSE instrinsics goes down the drain. Even if we use __attribute__((force_align_arg_pointer)) for the functions we explicitly use SSE instrinsics, the SSE code automatically generated by gcc will cause assertion failures. What a nightmare. Thankfully LLVM gets this right, so all runtime generated SSE code just works. rtasm code doesn't assume 16byte alignment. Therefore the bulk of our performance sensitive code is not affected by this. Still, intrinsics can be convenient, and it would be nice to get this working again some day, sp will try to get a reduced test case. | ||||
* | scons: Don't require -liberty on MinGW. | José Fonseca | 2009-09-24 | 1 | -1/+1 |
| | | | | Not always present. | ||||
* | scons: Drop gprof support for profile builds; tweak optimization flags instead. | José Fonseca | 2009-09-20 | 1 | -1/+5 |
| | | | | | | gprof is useful for shared libraries, hence our drivers. Nevertheless profilers like oprofile can benefit from disabling some relatively minor optimizations for more accurate / complete results. | ||||
* | llvmpipe: Make the code portable for MinGW. | José Fonseca | 2009-09-16 | 1 | -1/+5 |
| | |||||
* | scons: Allow to use only the WINDDK headers. | José Fonseca | 2009-09-14 | 1 | -15/+30 |
| | |||||
* | scons: Allow to use MS's DXSDK headers with MinGW. | José Fonseca | 2009-09-14 | 1 | -3/+12 |
| | |||||
* | scons: Pass -mstackrealign option to gcc. | José Fonseca | 2009-09-09 | 1 | -0/+1 |
| | | | | | It is impossible to have gcc generate SSE code without it, as thirdparty applications often call us with an unaligned stack pointer. | ||||
* | scons: Don't set LLVM_VERSION if one of the llvm-config calls fails. | Vinson Lee | 2009-09-07 | 1 | -8/+10 |
| | | | | | Ubuntu 8.10 has llvm-config version 2.2, which doesn't have nativecodegen. This triggers an exception. | ||||
* | scons: Used wrong exception class. | José Fonseca | 2009-09-04 | 1 | -1/+1 |
| | |||||
* | scons: Don't use scons internal functions. | José Fonseca | 2009-09-04 | 1 | -13/+4 |
| | |||||
* | scons: Tool for LLVM. Gracefully disable llvmpipe if LLVM not found. | José Fonseca | 2009-09-01 | 1 | -0/+81 |
| | |||||
* | llvmpipe: Allow to build without udis86. | José Fonseca | 2009-08-29 | 1 | -0/+42 |
| | |||||
* | scons: Handle Circular dependencies in the libraries. | José Fonseca | 2009-08-13 | 1 | -0/+2 |
| | |||||
* | Merge branch 'mesa_7_5_branch' | Brian Paul | 2009-07-17 | 2 | -0/+29 |
|\ | | | | | | | | | | | | | | | | | | | | | Conflicts: Makefile progs/glsl/multitex.c src/mesa/main/enums.c src/mesa/main/state.c src/mesa/main/texenvprogram.c src/mesa/main/version.h | ||||
| * | scons: Monkey patch os.spawnve on Windows to become thread safe. | José Fonseca | 2009-07-14 | 2 | -0/+29 |
| | | | | | | | | | | | | See also: - http://bugs.python.org/issue6476 - http://scons.tigris.org/issues/show_bug.cgi?id=2449 | ||||
* | | Merge branch 'mesa_7_5_branch' | Jakob Bornecrantz | 2009-06-14 | 2 | -7/+12 |
|\| |