diff options
author | Marek Olšák <[email protected]> | 2017-09-04 22:36:34 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-02-07 22:08:34 +0100 |
commit | 6f82b8d8d0a986aac28e7bec47fc313fb950475c (patch) | |
tree | 69eac15198a19e2e16447b5d4774a5c787af677e /src/gallium/auxiliary | |
parent | def09f8db0ce77fc41f5188418e0b06356ce59b7 (diff) |
gallium: build ddebug, noop, rbug, trace as part of auxiliary
Building gallium is faster by 7.5 seconds on a 4core/8thread 3GHz CPU.
(gallium build time is reduced by 15% when building only radeonsi)
Non-recursive makefiles are great!
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/Makefile.am | 10 | ||||
-rw-r--r-- | src/gallium/auxiliary/target-helpers/inline_debug_helper.h | 26 |
2 files changed, 9 insertions, 27 deletions
diff --git a/src/gallium/auxiliary/Makefile.am b/src/gallium/auxiliary/Makefile.am index 95a325f96b3..7af3f3ce42a 100644 --- a/src/gallium/auxiliary/Makefile.am +++ b/src/gallium/auxiliary/Makefile.am @@ -1,4 +1,8 @@ include Makefile.sources +include $(top_srcdir)/src/gallium/drivers/ddebug/Makefile.sources +include $(top_srcdir)/src/gallium/drivers/noop/Makefile.sources +include $(top_srcdir)/src/gallium/drivers/rbug/Makefile.sources +include $(top_srcdir)/src/gallium/drivers/trace/Makefile.sources include $(top_srcdir)/src/gallium/Automake.inc noinst_LTLIBRARIES = libgallium.la @@ -19,7 +23,11 @@ AM_CXXFLAGS = \ libgallium_la_SOURCES = \ $(C_SOURCES) \ $(NIR_SOURCES) \ - $(GENERATED_SOURCES) + $(GENERATED_SOURCES) \ + $(DDEBUG_SOURCES) \ + $(NOOP_SOURCES) \ + $(RBUG_SOURCES) \ + $(TRACE_SOURCES) if HAVE_LIBDRM diff --git a/src/gallium/auxiliary/target-helpers/inline_debug_helper.h b/src/gallium/auxiliary/target-helpers/inline_debug_helper.h index 2443bf21468..85563769408 100644 --- a/src/gallium/auxiliary/target-helpers/inline_debug_helper.h +++ b/src/gallium/auxiliary/target-helpers/inline_debug_helper.h @@ -11,44 +11,18 @@ * one or more debug driver: rbug, trace. */ -#ifdef GALLIUM_DDEBUG #include "ddebug/dd_public.h" -#endif - -#ifdef GALLIUM_TRACE #include "trace/tr_public.h" -#endif - -#ifdef GALLIUM_RBUG #include "rbug/rbug_public.h" -#endif - -#ifdef GALLIUM_NOOP #include "noop/noop_public.h" -#endif -/* - * TODO: Audit the following *screen_create() - all of - * them should return the original screen on failuire. - */ static inline struct pipe_screen * debug_screen_wrap(struct pipe_screen *screen) { -#if defined(GALLIUM_DDEBUG) screen = ddebug_screen_create(screen); -#endif - -#if defined(GALLIUM_RBUG) screen = rbug_screen_create(screen); -#endif - -#if defined(GALLIUM_TRACE) screen = trace_screen_create(screen); -#endif - -#if defined(GALLIUM_NOOP) screen = noop_screen_create(screen); -#endif if (debug_get_bool_option("GALLIUM_TESTS", FALSE)) util_run_tests(screen); |