util: move u_cpu_detect to util

CC: vlee@freedesktop.org
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=107870
Fixes: 80825abb5d
       ("move u_math to src/util")
Tested-by: Brian Paul <brianp@vmware.com>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:
Dylan Baker 2018-10-01 11:59:21 -07:00
parent 37db383abb
commit fb02bd3d1c
6 changed files with 4 additions and 4 deletions

View file

@ -222,8 +222,6 @@ C_SOURCES := \
util/u_box.h \
util/u_cache.c \
util/u_cache.h \
util/u_cpu_detect.c \
util/u_cpu_detect.h \
util/u_debug_gallium.h \
util/u_debug_gallium.c \
util/u_debug_describe.c \

View file

@ -242,8 +242,6 @@ files_libgallium = files(
'util/u_box.h',
'util/u_cache.c',
'util/u_cache.h',
'util/u_cpu_detect.c',
'util/u_cpu_detect.h',
'util/u_debug_gallium.h',
'util/u_debug_gallium.c',
'util/u_debug_describe.c',

View file

@ -70,6 +70,8 @@ MESA_UTIL_FILES := \
u_vector.h \
u_debug.c \
u_debug.h \
u_cpu_detect.c \
u_cpu_detect.h \
vma.c \
vma.h

View file

@ -94,6 +94,8 @@ files_mesa_util = files(
'u_math.h',
'u_debug.c',
'u_debug.h',
'u_cpu_detect.c',
'u_cpu_detect.h',
'vma.c',
'vma.h',
)