diff options
author | Dylan Baker <[email protected]> | 2018-08-16 17:20:38 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2018-09-07 10:21:26 -0700 |
commit | 80825abb5d1a7491035880253ffd531c55acae6b (patch) | |
tree | 6e12b637c7c5468c39def882bf3654e5bd256fb0 /src/gallium/auxiliary/meson.build | |
parent | aa4386ebfed6a76badae9e1ecf783a372375f072 (diff) |
move u_math to src/util
Currently we have two sets of functions for bit counts, one in gallium
and one in core mesa. The ones in core mesa are header only in many
cases, since they reduce to "#define _mesa_bitcount popcount", but they
provide a fallback implementation. This is important because 32bit msvc
doesn't have popcountll, just popcount; so when nir (for example)
includes the core mesa header it doesn't (and shouldn't) link with core
mesa. To fix this we'll promote the version out of gallium util, then
replace the core mesa uses with the util version, since nir (and other
non-core mesa users) can and do link with mesautils.
Acked-by: Eric Engestrom <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/meson.build')
-rw-r--r-- | src/gallium/auxiliary/meson.build | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/meson.build b/src/gallium/auxiliary/meson.build index be558e07b27..9e3673a53c0 100644 --- a/src/gallium/auxiliary/meson.build +++ b/src/gallium/auxiliary/meson.build @@ -314,8 +314,6 @@ files_libgallium = files( 'util/u_linear.h', 'util/u_log.c', 'util/u_log.h', - 'util/u_math.c', - 'util/u_math.h', 'util/u_memory.h', 'util/u_mm.c', 'util/u_mm.h', |