summaryrefslogtreecommitdiffstats
path: root/configs/linux-llvm
Commit message (Collapse)AuthorAgeFilesLines
* llvmpipe: export the tgsi translation code to a common layerZack Rusin2010-02-081-1/+1
| | | | | | | the llvmpipe tgsi translation is a lot more complete than what was in gallivm so replacing the latter with the former. this is needed since the draw llvm paths will use the same code. effectively the proven llvmpipe code becomes gallivm.
* allow make to build lp_test_* for llvmpipeChris Li2010-02-051-1/+1
| | | | Signed-off-by: José Fonseca <[email protected]>
* Merge remote branch 'origin/master' into lp-binningJosé Fonseca2010-01-081-2/+0
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/gallium/auxiliary/util/u_surface.c src/gallium/drivers/llvmpipe/Makefile src/gallium/drivers/llvmpipe/SConscript src/gallium/drivers/llvmpipe/lp_bld_arit.c src/gallium/drivers/llvmpipe/lp_bld_flow.c src/gallium/drivers/llvmpipe/lp_bld_interp.c src/gallium/drivers/llvmpipe/lp_clear.c src/gallium/drivers/llvmpipe/lp_context.c src/gallium/drivers/llvmpipe/lp_context.h src/gallium/drivers/llvmpipe/lp_draw_arrays.c src/gallium/drivers/llvmpipe/lp_jit.c src/gallium/drivers/llvmpipe/lp_jit.h src/gallium/drivers/llvmpipe/lp_prim_vbuf.c src/gallium/drivers/llvmpipe/lp_setup.c src/gallium/drivers/llvmpipe/lp_setup_point.c src/gallium/drivers/llvmpipe/lp_state.h src/gallium/drivers/llvmpipe/lp_state_blend.c src/gallium/drivers/llvmpipe/lp_state_derived.c src/gallium/drivers/llvmpipe/lp_state_fs.c src/gallium/drivers/llvmpipe/lp_state_sampler.c src/gallium/drivers/llvmpipe/lp_state_surface.c src/gallium/drivers/llvmpipe/lp_tex_cache.c src/gallium/drivers/llvmpipe/lp_tex_cache.h src/gallium/drivers/llvmpipe/lp_tex_sample.h src/gallium/drivers/llvmpipe/lp_tile_cache.c
| * gallium: Hunt down all references to GALLIUM_AUXILIARY_DIRS.José Fonseca2010-01-021-2/+0
| |
* | llvmpipe: change configs/linux-llvm from debug build to optimized buildBrian Paul2009-12-181-3/+5
|/ | | | Basically equivalent to the SCons non-debug build now.
* llvmpipe: use the udis86 lib to print the x86 assembly codeBrian Paul2009-08-291-2/+2
|
* llvmpipe: re-enable other gallium driversBrian Paul2009-08-291-2/+2
| | | | No more symbol collisions between drivers, AFAICT.
* llvmpipe: repurpose linux-llvm config to build the llvmpipe driverBrian Paul2009-08-291-5/+12
| | | | | The gallivm module is no longer built. If/when gallivm is resuscitated we can revisit this.
* linux-llvm config: Linking with required llvm libsKamalneet Singh2009-03-091-3/+3
|
* gallivm: Explicitly specify the LLVM components we need.Michel Dänzer2009-01-121-3/+3
|
* Gallivm: port to llvm 2.4.Stephane Marchesin2008-10-021-0/+1
|
* Gallivm: need to link with libstdc++ for llvm.Stephane Marchesin2008-10-021-1/+1
|
* Update for llvm -> gallivm rename.José Fonseca2008-02-181-1/+1
|
* Code reorganization: split gallium and mesa makefiles.José Fonseca2008-02-181-0/+2
| | | | | | | In other words, don't build src/gallium source code from within src/mesa/Makefile. Also, allow to customize which gallium auxiliary dirs, driver driver, winsys dirs get built from the config/* files.
* llvm: we need custom rules so had to redo the build a little bitZack Rusin2008-01-041-4/+4
| | | | also don't use sse when llvm is enabled
* Redo the fragment program examples to match vp'sZack Rusin2007-12-111-2/+2
| | | | | we just load text files instead of compiling tons of small binaries
* LLVM requires linking with the C++ compiler.Michel Dänzer2007-10-251-0/+1
| | | | It's basically luck if it works with the C compiler on some platforms...
* Cleanup some code.Zack Rusin2007-10-241-8/+8
|
* Introduce linux-llvm target. Remove the llvm code from the default build for ↵Zack Rusin2007-10-241-0/+31
now. Cleanup some of the debugging output.