blob: e1f850d28ebc4a4ab734ab0f717073df56da43f4 [file] [log] [blame]
Eric Anholt8c641832009-03-26 17:15:11 -07001# Copyright 2005 Adam Jackson.
2#
3# Permission is hereby granted, free of charge, to any person obtaining a
4# copy of this software and associated documentation files (the "Software"),
5# to deal in the Software without restriction, including without limitation
6# on the rights to use, copy, modify, merge, publish, distribute, sub
7# license, and/or sell copies of the Software, and to permit persons to whom
8# the Software is furnished to do so, subject to the following conditions:
9#
10# The above copyright notice and this permission notice (including the next
11# paragraph) shall be included in all copies or substantial portions of the
12# Software.
13#
14# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
17# ADAM JACKSON BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
18# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20#
21# Process this file with autoconf to produce a configure script
22
Gaetan Nadond63a1f62012-01-03 21:12:25 -050023AC_PREREQ([2.60])
Eric Anholt1eabfa92009-03-27 16:03:12 -070024AC_INIT([intel-gpu-tools],
Marius Vlad3ce58b62016-05-31 18:33:24 +030025 [1.15],
Mike Frysingere73e3982016-06-22 07:08:03 -040026 [https://bugs.freedesktop.org/enter_bug.cgi?product=DRI&component=IGT],
Ben Widawsky90f0b3d2013-01-31 13:04:18 -080027 [intel-gpu-tools])
Eric Anholt8c641832009-03-26 17:15:11 -070028
29AC_CONFIG_SRCDIR([Makefile.am])
Javier Jardón68b64f12011-02-08 22:33:12 +000030AC_CONFIG_HEADERS([config.h])
31AC_CONFIG_MACRO_DIR([m4])
32AC_CONFIG_AUX_DIR([build-aux])
Alan Coopersmith504c4fa2012-01-06 15:45:29 -080033AC_USE_SYSTEM_EXTENSIONS
Chris Wilsond364c282012-03-14 10:59:51 +000034AC_SYS_LARGEFILE
Ben Widawsky8af53e02012-03-24 19:03:38 -070035AC_GNU_SOURCE
Daniel Vetter831a4712013-12-10 09:23:44 +010036AC_CANONICAL_HOST
Daniel Stonebccc0ec2016-01-25 18:33:12 +000037AC_CANONICAL_TARGET
Eric Anholt8c641832009-03-26 17:15:11 -070038
Damien Lespiaufd772e32015-06-05 15:51:40 +010039AM_INIT_AUTOMAKE([1.12 foreign subdir-objects dist-bzip2])
Gaetan Nadon4768adf2012-01-10 17:25:24 -050040AM_PATH_PYTHON([3],, [:])
Eric Anholt8c641832009-03-26 17:15:11 -070041
Damien Lespiau191c8592013-01-14 23:21:21 +000042AC_PROG_CC
43AM_PROG_LEX
44AC_PROG_YACC
45
Thomas Wood14ea2a02014-03-11 16:04:28 +000046# check for gtk-doc
47m4_ifdef([GTK_DOC_CHECK], [
48GTK_DOC_CHECK([1.14],[--flavour no-tmpl])
49],[
50AM_CONDITIONAL([ENABLE_GTK_DOC], false)
Damien Lespiauc196c142014-03-21 14:36:54 +000051enable_gtk_doc=no
Thomas Wood14ea2a02014-03-11 16:04:28 +000052])
53
Jani Nikula4650d342015-04-14 22:33:33 +030054# check for rst2man for generating man pages
55AC_CHECK_PROG(RST2MAN, rst2man, yes, no)
56AM_CONDITIONAL(HAVE_RST2MAN, [test "x$RST2MAN" = xyes])
Thomas Wood14ea2a02014-03-11 16:04:28 +000057
Alan Coopersmith9ebb8602012-01-06 14:37:16 -080058# Checks for functions, headers, structures, etc.
Damien Lespiau191c8592013-01-14 23:21:21 +000059AC_HEADER_STDC
Thomas Wood80f15532015-07-16 11:41:32 +010060AC_CHECK_HEADERS([termios.h linux/kd.h sys/kd.h libgen.h sys/io.h])
Alan Coopersmith9ebb8602012-01-06 14:37:16 -080061AC_CHECK_MEMBERS([struct sysinfo.totalram],[],[],[AC_INCLUDES_DEFAULT
Ben Widawsky90f0b3d2013-01-31 13:04:18 -080062 #include <sys/sysinfo.h>
63 ])
Alan Coopersmith95ea5d52014-12-23 19:07:12 -080064AC_CHECK_TYPES([sighandler_t],[],[],[AC_INCLUDES_DEFAULT
65#include <signal.h>])
Alan Coopersmithfbae1382012-01-23 20:13:49 -080066AC_CHECK_FUNCS([swapctl])
Ben Widawsky8af53e02012-03-24 19:03:38 -070067AC_CHECK_FUNCS([asprintf])
Alan Coopersmith9ebb8602012-01-06 14:37:16 -080068
Chris Wilsond5456102016-03-19 13:04:02 +000069dnl Check for POSIX timers
70AC_CHECK_FUNCS(timer_create, [], [
71 AC_CHECK_LIB(rt, timer_create, [
72 AC_DEFINE(HAVE_TIMER_CREATE, 1)
73 TIMER_LIBS="-lrt"
74 ], [
75 AC_CHECK_LIB(pthread, timer_create, [
76 AC_DEFINE(HAVE_TIMER_CREATE, 1)
77 TIMER_LIBS="-lpthread"
78 ])
79 ])
80])
81AC_SUBST(TIMER_LIBS)
82
Chris Wilson545fe0f2016-07-11 12:39:01 +010083dnl Check for CPUID
84cpuid="yes"
85AC_TRY_LINK([
86 #include <cpuid.h>
87 #include <stddef.h>
88 ],
89 [
90 int eax, ebx, ecx, edx;
91 if (__get_cpuid_max(0, NULL) < 4)
92 return 0;
93 __cpuid_count(4, 0, eax, ebx, ecx, edx);
94 ],
95 [cpuid="yes"],
96 [cpuid="no"]
97)
98if test "x$cpuid" = "xyes"; then
99 AC_DEFINE(HAVE_CPUID_H, 1, [Found a useable cpuid.h])
100fi
101
Javier Jardón68b64f12011-02-08 22:33:12 +0000102# Initialize libtool
Gaetan Nadon65db78f2012-01-03 21:13:39 -0500103AC_DISABLE_STATIC
104AC_PROG_LIBTOOL
Javier Jardón68b64f12011-02-08 22:33:12 +0000105
Alan Coopersmith504c4fa2012-01-06 15:45:29 -0800106# Require X.Org macros 1.16 or later for XORG_TESTSET_CFLAG
Gaetan Nadon1722b782012-01-03 21:12:22 -0500107m4_ifndef([XORG_MACROS_VERSION],
Gaetan Nadon4768adf2012-01-10 17:25:24 -0500108 [m4_fatal([must install xorg-macros 1.16 or later before running autoconf/autogen])])
Alan Coopersmith504c4fa2012-01-06 15:45:29 -0800109XORG_MACROS_VERSION(1.16)
Gaetan Nadon1722b782012-01-03 21:12:22 -0500110XORG_DEFAULT_OPTIONS
111
Damien Lespiau191c8592013-01-14 23:21:21 +0000112# warning flags for the assembler. We can't quite use CWARNFLAGS for it yet as
Damien Lespiau54ec3cb2013-07-19 16:03:29 +0100113# it generates waaaay too many warnings.
Damien Lespiau191c8592013-01-14 23:21:21 +0000114ASSEMBLER_WARN_CFLAGS=""
115if test "x$GCC" = "xyes"; then
Damien Lespiau7902f2c2013-01-19 23:25:22 +0000116 ASSEMBLER_WARN_CFLAGS="-Wall -Wstrict-prototypes \
Damien Lespiau191c8592013-01-14 23:21:21 +0000117 -Wmissing-prototypes -Wmissing-declarations \
118 -Wnested-externs -fno-strict-aliasing"
119fi
120AC_SUBST(ASSEMBLER_WARN_CFLAGS)
121
Marius Vlad360e9672016-07-14 13:24:28 +0300122PKG_CHECK_MODULES(DRM, [libdrm_intel >= 2.4.67 libdrm])
Eric Anholt8c641832009-03-26 17:15:11 -0700123PKG_CHECK_MODULES(PCIACCESS, [pciaccess >= 0.10])
Daniel Stonebccc0ec2016-01-25 18:33:12 +0000124
125case "$target_cpu" in
126 x86*)
127 build_x86="yes"
128 ;;
129 *)
130 build_x86="no"
131 ;;
132esac
133
134if test x"$build_x86" = xyes; then
135 PKG_CHECK_MODULES(OVERLAY_XVLIB, [xv x11 xext dri2proto >= 2.6], enable_overlay_xvlib=yes, enable_overlay_xvlib=no)
136 PKG_CHECK_MODULES(OVERLAY_XLIB, [cairo-xlib dri2proto >= 2.6], enable_overlay_xlib=yes, enable_overlay_xlib=no)
137 AS_IF([test x"$LEX" != "x:" -a x"$YACC" != xyacc],
138 [enable_assembler=yes],
139 [enable_assembler=no])
140else
141 enable_overlay_xvlib="no"
142 enable_overlay_xlib="no"
143 enable_assembler="no"
144 BUILD_SHADER_DEBUGGER="no"
145fi
146AM_CONDITIONAL(BUILD_X86, [test "x$build_x86" = xyes])
147
148AM_CONDITIONAL(BUILD_ASSEMBLER, [test "x$enable_assembler" = xyes])
Chris Wilsonf9a50de2013-08-17 11:12:07 +0100149
Chris Wilson34e47802013-08-18 21:10:26 +0100150AM_CONDITIONAL(BUILD_OVERLAY_XVLIB, [test "x$enable_overlay_xvlib" = xyes])
151AM_CONDITIONAL(BUILD_OVERLAY_XLIB, [test "x$enable_overlay_xlib" = xyes])
152AM_CONDITIONAL(BUILD_OVERLAY, [test "x$enable_overlay_xlib" = xyes -o "x$enable_overlay_xvlib"])
153if test x$enable_overlay_xvlib = xyes; then
154 AC_DEFINE(HAVE_OVERLAY_XVLIB, 1, [Enable XV backend])
155fi
156if test x$enable_overlay_xlib = xyes; then
157 AC_DEFINE(HAVE_OVERLAY_XLIB, 1, [Enable X backend])
158fi
Chris Wilsonddcd1b22013-08-27 14:25:38 +0100159PKG_CHECK_MODULES(XRANDR, xrandr >= 1.3, AC_DEFINE(HAVE_XRANDR, 1, [Have libXrandr]), [have_xrandr=no])
Eric Anholt8c641832009-03-26 17:15:11 -0700160
Daniel Vetter08ccec12012-01-19 13:01:03 +0100161# for testdisplay
Damien Lespiau0193b692013-07-17 16:25:29 +0100162PKG_CHECK_MODULES(CAIRO, [cairo >= 1.12.0])
Daniel Vetterfa461202012-01-24 11:28:25 +0100163PKG_CHECK_MODULES(LIBUDEV, [libudev], [udev=yes], [udev=no])
164if test x"$udev" = xyes; then
165 AC_DEFINE(HAVE_UDEV,1,[Enable udev-based monitor hotplug detection])
166fi
Daniel Vetter08ccec12012-01-19 13:01:03 +0100167PKG_CHECK_MODULES(GLIB, glib-2.0)
Jesse Barnes5406c632010-12-21 09:38:23 -0800168
Gaetan Nadon4768adf2012-01-10 17:25:24 -0500169# -----------------------------------------------------------------------------
170# Configuration options
171# -----------------------------------------------------------------------------
Ben Widawsky66ec9bd2013-02-07 08:29:24 -0800172# for dma-buf tests
173AC_ARG_ENABLE(nouveau, AS_HELP_STRING([--disable-nouveau],
Matt Turnercd460f12013-10-10 20:54:25 -0700174 [Enable use of nouveau API for prime tests (default: auto)]),
175 [NOUVEAU=$enableval], [NOUVEAU=auto])
176if test "x$NOUVEAU" = xauto; then
177 PKG_CHECK_EXISTS([libdrm_nouveau >= 2.4.33], [NOUVEAU=yes], [NOUVEAU=no])
178fi
Ben Widawsky66ec9bd2013-02-07 08:29:24 -0800179if test "x$NOUVEAU" = xyes; then
180 PKG_CHECK_MODULES(DRM_NOUVEAU, [libdrm_nouveau >= 2.4.33])
181 AC_DEFINE(HAVE_NOUVEAU, 1, [Have nouveau support])
182fi
183AM_CONDITIONAL(HAVE_NOUVEAU, [test "x$NOUVEAU" = xyes])
184
Eric Anholtceca9ef2016-01-25 11:40:15 -0800185AC_ARG_ENABLE(vc4, AS_HELP_STRING([--disable-vc4],
186 [Enable building of vc4 tests (default: auto)]),
187 [VC4=$enableval], [VC4=auto])
188if test "x$VC4" = xauto; then
189 PKG_CHECK_EXISTS([libdrm_vc4], [VC4=yes], [VC4=no])
190fi
191if test "x$VC4" = xyes; then
192 PKG_CHECK_MODULES(DRM_VC4, [libdrm_vc4])
193 AC_DEFINE(HAVE_VC4, 1, [Have vc4 support])
194fi
195AM_CONDITIONAL(HAVE_VC4, [test "x$VC4" = xyes])
196
Ben Widawsky94b2b862013-12-20 21:15:16 -0800197# Define a configure option for the shader debugger
Gaetan Nadon4768adf2012-01-10 17:25:24 -0500198AC_ARG_ENABLE(shader-debugger, AS_HELP_STRING([--enable-shader-debugger],
Ben Widawsky90f0b3d2013-01-31 13:04:18 -0800199 [Enable shader debugging support [autodetected]]),
Chris Wilson102943d2016-04-25 18:35:49 +0100200 [BUILD_SHADER_DEBUGGER="$enableval"], [BUILD_SHADER_DEBUGGER=no])
Gaetan Nadon4768adf2012-01-10 17:25:24 -0500201
Ben Widawsky94b2b862013-12-20 21:15:16 -0800202# Shader debugger depends on python3, intel-genasm and objcopy
Gaetan Nadon4768adf2012-01-10 17:25:24 -0500203if test "x$BUILD_SHADER_DEBUGGER" != xno; then
Ben Widawsky94b2b862013-12-20 21:15:16 -0800204 # Check that the assembler is built
Ben Widawsky9d6cfa62013-12-30 10:41:43 -0800205 if test "x$enable_assembler" = xno; then
Ben Widawsky01eeab92014-01-02 19:33:57 -1000206 BUILD_SHADER_DEBUGGER=no
Ben Widawsky9d6cfa62013-12-30 10:41:43 -0800207 if test "x$BUILD_SHADER_DEBUGGER" = xyes; then
208 AC_MSG_ERROR([Shader debugger requested, but assembler not enabled.])
209 fi
Ben Widawsky94b2b862013-12-20 21:15:16 -0800210 fi
211
Ben Widawsky90f0b3d2013-01-31 13:04:18 -0800212 # Check Python 3 is installed
213 if test "$PYTHON" = ":" ; then
214 if test "x$BUILD_SHADER_DEBUGGER" = xyes; then
215 AC_MSG_ERROR([Shader debugger requested, python version 3 not found.])
216 else
217 BUILD_SHADER_DEBUGGER=no
218 fi
Ben Widawsky15830ea2011-10-31 13:36:50 -0700219 fi
Ben Widawsky94b2b862013-12-20 21:15:16 -0800220
Ben Widawsky90f0b3d2013-01-31 13:04:18 -0800221 # Check for the objcopy GNU binary utiliy command
222 AC_PATH_PROGS([OBJCOPY], objcopy)
223 if test -z "$OBJCOPY" ; then
224 if test "x$BUILD_SHADER_DEBUGGER" = xyes; then
225 AC_MSG_ERROR([Shader debugger requested, but objcopy command not found.])
226 else
227 BUILD_SHADER_DEBUGGER=no
228 fi
Gaetan Nadon4768adf2012-01-10 17:25:24 -0500229 fi
Ben Widawsky62873792011-06-24 11:42:03 -0700230fi
231
Gaetan Nadon4768adf2012-01-10 17:25:24 -0500232AM_CONDITIONAL(BUILD_SHADER_DEBUGGER, [test "x$BUILD_SHADER_DEBUGGER" != xno])
Damien Lespiau764b9e52013-03-04 15:59:00 +0000233AS_IF([test "x$BUILD_SHADER_DEBUGGER" != xno],
Damien Lespiau5d526892013-01-22 08:35:15 +0000234 [enable_debugger=yes], [enable_debugger=no])
235
Thomas Wood277ca2b2015-03-13 17:02:12 +0000236AC_ARG_WITH(libunwind,
237 AS_HELP_STRING([--without-libunwind],
238 [Build tests without libunwind support]),
239 [], [with_libunwind=yes])
240if test "x$with_libunwind" = xyes; then
241 PKG_CHECK_MODULES(LIBUNWIND, libunwind, AC_DEFINE(HAVE_LIBUNWIND, 1, [libunwind support]),
242 AC_MSG_ERROR([libunwind not found. Use --without-libunwind to disable libunwind support.]))
243fi
244
Thomas Wood76dad7f2015-03-23 11:46:25 +0000245# enable debug symbols
246AC_ARG_ENABLE(debug,
247 AS_HELP_STRING([--disable-debug],
248 [Build tests without debug symbols]),
249 [], [enable_debug=yes])
250
marius vlad701d8fd2016-05-10 17:32:15 +0300251AC_ARG_ENABLE(werror,
252 AS_HELP_STRING([--enable-werror],
253 [Fail on warnings]),
254 [], [enable_werror=no])
255
Thomas Wood76dad7f2015-03-23 11:46:25 +0000256if test "x$enable_debug" = xyes; then
257 AS_COMPILER_FLAG([-g3], [DEBUG_CFLAGS="-g3"], [DEBUG_CFLAGS="-g"])
258 AS_COMPILER_FLAG([-Og], [DEBUG_CFLAGS+=" -Og -Wno-maybe-uninitialized"], # disable maybe-uninitialized due to false positives
259 [DEBUG_CFLAGS+=" -O0"])
260 AC_SUBST([DEBUG_CFLAGS])
261fi
262
marius vlad701d8fd2016-05-10 17:32:15 +0300263if test "x$enable_werror" = xyes; then
264 AS_COMPILER_FLAG([-Werror], [WERROR_CFLAGS="-Werror"])
265fi
266
Damien Lespiaue5653d52015-07-01 23:40:36 +0100267# prevent relinking the world on every commit for developers
268AC_ARG_ENABLE(git-hash,
269 AS_HELP_STRING([--disable-git-hash],
270 [Do not use git hash in version]),
271 [git_hash=$enableval], [git_hash=yes])
Damien Lespiauec9e5992015-07-02 14:59:25 +0100272AC_SUBST(GIT_HASH, [$git_hash])
Damien Lespiaue5653d52015-07-01 23:40:36 +0100273
Gaetan Nadon4768adf2012-01-10 17:25:24 -0500274# -----------------------------------------------------------------------------
275
Alan Coopersmith504c4fa2012-01-06 15:45:29 -0800276# To build multithread code, gcc uses -pthread, Solaris Studio cc uses -mt
277XORG_TESTSET_CFLAG([THREAD_CFLAGS], [-pthread], [-mt])
278AC_SUBST([THREAD_CFLAGS])
279
Rodrigo Vivi7c170722013-02-05 16:17:54 -0200280AC_ARG_ENABLE(tests,
281 AS_HELP_STRING([--disable-tests],
282 [Disable tests build (default: enabled)]),
283 [BUILD_TESTS=$enableval], [BUILD_TESTS="yes"])
284if test "x$BUILD_TESTS" = xyes; then
285 AC_DEFINE(BUILD_TESTS, 1, [Build tests])
Rodrigo Vivi7c170722013-02-05 16:17:54 -0200286fi
287AM_CONDITIONAL(BUILD_TESTS, [test "x$BUILD_TESTS" = xyes])
Daniel Vetter831a4712013-12-10 09:23:44 +0100288AC_DEFINE_UNQUOTED(TARGET_CPU_PLATFORM, ["$host_cpu"], [Target platform])
Rodrigo Vivi7c170722013-02-05 16:17:54 -0200289
Thomas Wood48394472014-10-16 14:23:24 +0100290files="broadwell cherryview haswell ivybridge sandybridge valleyview skylake"
Thomas Woodc54ee982014-06-06 15:28:50 +0100291for file in $files; do
Thomas Wood9ecb50e2015-09-04 14:46:45 +0100292 REGISTER_FILES="$REGISTER_FILES $file `cat $srcdir/tools/registers/$file`"
Thomas Woodc54ee982014-06-06 15:28:50 +0100293done
Thomas Wood9ecb50e2015-09-04 14:46:45 +0100294REGISTER_FILES=`echo $REGISTER_FILES | tr ' ' '\n' | sort -u | tr '\n' ' '`
295AC_SUBST(REGISTER_FILES)
Thomas Woodc54ee982014-06-06 15:28:50 +0100296
Javier Jardón68b64f12011-02-08 22:33:12 +0000297AC_CONFIG_FILES([
Ben Widawsky90f0b3d2013-01-31 13:04:18 -0800298 Makefile
299 benchmarks/Makefile
300 demos/Makefile
Thomas Wood14ea2a02014-03-11 16:04:28 +0000301 docs/Makefile
302 docs/reference/Makefile
303 docs/reference/intel-gpu-tools/Makefile
304 docs/reference/intel-gpu-tools/version.xml
Ben Widawsky90f0b3d2013-01-31 13:04:18 -0800305 lib/Makefile
Daniel Vetter685e5772014-10-27 15:08:50 +0100306 lib/tests/Makefile
Ben Widawsky90f0b3d2013-01-31 13:04:18 -0800307 man/Makefile
308 scripts/Makefile
Ben Widawsky3a752a32013-02-07 10:30:03 -0800309 tests/Makefile
Ben Widawsky90f0b3d2013-01-31 13:04:18 -0800310 tools/Makefile
Mika Kuoppalad60d4c82014-04-10 15:15:13 +0300311 tools/null_state_gen/Makefile
Thomas Woodaf979182015-08-25 11:30:11 +0100312 tools/registers/Makefile
Ben Widawsky90f0b3d2013-01-31 13:04:18 -0800313 debugger/Makefile
314 debugger/system_routine/Makefile
Damien Lespiau191c8592013-01-14 23:21:21 +0000315 assembler/Makefile
316 assembler/doc/Makefile
317 assembler/test/Makefile
318 assembler/intel-gen4asm.pc
Chris Wilsonf9a50de2013-08-17 11:12:07 +0100319 overlay/Makefile
Kristian Høgsberg Kristensen5f9bc982015-08-05 11:55:09 -0700320 ])
321
322AC_CONFIG_FILES([tools/intel_aubdump], [chmod +x tools/intel_aubdump])
Kristian Høgsberg Kristensene6a5d792015-07-29 23:12:16 -0700323
Javier Jardón68b64f12011-02-08 22:33:12 +0000324AC_OUTPUT
Ben Widawskyc75b8c62013-01-31 13:06:17 -0800325
Damien Lespiau54357082013-01-21 23:02:36 +0000326# Print a summary of the compilation
327echo ""
328echo "Intel GPU tools"
329
330echo ""
Damien Lespiau94444ae2013-07-19 16:08:11 +0100331echo " • Tests:"
332echo " Build tests : ${BUILD_TESTS}"
333echo " Compile prime tests: ${NOUVEAU}"
Thomas Wood277ca2b2015-03-13 17:02:12 +0000334echo " Print stack traces : ${with_libunwind}"
Thomas Wood76dad7f2015-03-23 11:46:25 +0000335echo " Debug flags : ${DEBUG_CFLAGS}"
Damien Lespiau94444ae2013-07-19 16:08:11 +0100336echo ""
Damien Lespiau54357082013-01-21 23:02:36 +0000337echo " • Tools:"
Damien Lespiau94444ae2013-07-19 16:08:11 +0100338echo " Assembler : ${enable_assembler}"
339echo " Debugger : ${enable_debugger}"
Damien Lespiaub5acc102013-08-20 14:18:58 +0100340echo " Overlay : X: ${enable_overlay_xlib}, Xv: ${enable_overlay_xvlib}"
Daniel Stonebccc0ec2016-01-25 18:33:12 +0000341echo " x86-specific tools : ${build_x86}"
Damien Lespiau54357082013-01-21 23:02:36 +0000342echo ""
Daniel Vettera90846a2014-03-11 21:03:39 +0100343echo " • API-Documentation : ${enable_gtk_doc}"
Marius Vlad3ce58b62016-05-31 18:33:24 +0300344echo " • Fail on warnings : ${enable_werror}"
Daniel Vettera90846a2014-03-11 21:03:39 +0100345echo ""
Damien Lespiau54357082013-01-21 23:02:36 +0000346
Ben Widawskyc75b8c62013-01-31 13:06:17 -0800347# vim: set ft=config ts=8 sw=8 tw=0 noet :