Carl Worth | 670826b | 2014-12-11 14:33:44 -0800 | [diff] [blame] | 1 | dnl Copyright © 2011-2014 Intel Corporation |
| 2 | dnl Copyright © 2011-2014 Emil Velikov <emil.l.velikov@gmail.com> |
| 3 | dnl Copyright © 2007-2010 Dan Nicholson |
| 4 | dnl Copyright © 2010-2014 Marek Olšák <maraeo@gmail.com> |
| 5 | dnl Copyright © 2010-2014 Christian König |
| 6 | dnl Copyright © 2012-2014 Tom Stellard <tstellar@gmail.com> |
| 7 | dnl Copyright © 2009-2012 Jakob Bornecrantz |
| 8 | dnl Copyright © 2009-2014 Jon TURNEY |
| 9 | dnl Copyright © 2011-2012 Benjamin Franzke |
| 10 | dnl Copyright © 2008-2014 David Airlie |
| 11 | dnl Copyright © 2009-2013 Brian Paul |
| 12 | dnl |
| 13 | dnl Permission is hereby granted, free of charge, to any person obtaining a |
| 14 | dnl copy of this software and associated documentation files (the "Software"), |
| 15 | dnl to deal in the Software without restriction, including without limitation |
| 16 | dnl the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 17 | dnl and/or sell copies of the Software, and to permit persons to whom the |
| 18 | dnl Software is furnished to do so, subject to the following conditions: |
| 19 | dnl |
| 20 | dnl The above copyright notice and this permission notice (including the next |
| 21 | dnl paragraph) shall be included in all copies or substantial portions of the |
| 22 | dnl Software. |
| 23 | dnl |
| 24 | dnl THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 25 | dnl IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 26 | dnl FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 27 | dnl THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 28 | dnl LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 29 | dnl FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
| 30 | dnl DEALINGS IN THE SOFTWARE. |
| 31 | dnl |
Matt Turner | 2f1ab63 | 2012-01-03 21:58:37 -0500 | [diff] [blame] | 32 | dnl Process this file with autoconf to create configure. |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 33 | |
Matt Turner | 5172383 | 2011-12-23 19:21:04 -0500 | [diff] [blame] | 34 | AC_PREREQ([2.60]) |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 35 | |
Dan Nicholson | e97ab72 | 2008-07-01 08:55:42 -0700 | [diff] [blame] | 36 | dnl Tell the user about autoconf.html in the --help output |
| 37 | m4_divert_once([HELP_END], [ |
| 38 | See docs/autoconf.html for more details on the options for Mesa.]) |
| 39 | |
Emil Velikov | 488b3ed | 2013-07-25 23:45:45 +0100 | [diff] [blame] | 40 | m4_define(MESA_VERSION, m4_normalize(m4_include(VERSION))) |
| 41 | AC_INIT([Mesa], [MESA_VERSION], |
Dan Nicholson | f64d6fe | 2007-12-12 17:57:45 -0800 | [diff] [blame] | 42 | [https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa]) |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 43 | AC_CONFIG_AUX_DIR([bin]) |
Matt Turner | 7da1242 | 2012-09-18 20:21:47 -0700 | [diff] [blame] | 44 | AC_CONFIG_MACRO_DIR([m4]) |
Thierry Reding | 9948a33 | 2012-10-19 14:03:01 +0200 | [diff] [blame] | 45 | AC_CANONICAL_SYSTEM |
Matt Turner | 404a90b | 2015-06-10 16:30:56 -0700 | [diff] [blame] | 46 | AM_INIT_AUTOMAKE([foreign tar-ustar dist-xz subdir-objects]) |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 47 | |
Jose Fonseca | 8f0274c | 2015-03-19 13:38:52 +0000 | [diff] [blame] | 48 | dnl We only support native Windows builds (MinGW/MSVC) through SCons. |
| 49 | case "$host_os" in |
| 50 | mingw*) |
| 51 | AC_MSG_ERROR([MinGW build not supported through autoconf/automake, use SCons instead]) |
| 52 | ;; |
| 53 | esac |
| 54 | |
Eric Anholt | 7fa5c91 | 2012-01-12 14:56:56 -0800 | [diff] [blame] | 55 | # Support silent build rules, requires at least automake-1.11. Disable |
| 56 | # by either passing --disable-silent-rules to configure or passing V=1 |
| 57 | # to make |
Lauri Kasanen | 0a82828 | 2013-02-22 22:25:58 +0200 | [diff] [blame] | 58 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])], |
| 59 | [AC_SUBST([AM_DEFAULT_VERBOSITY], [1])]) |
Eric Anholt | 7fa5c91 | 2012-01-12 14:56:56 -0800 | [diff] [blame] | 60 | |
Kenneth Graunke | 4a5d020 | 2012-05-30 21:54:21 -0700 | [diff] [blame] | 61 | m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) |
| 62 | |
Johannes Obermayr | 10a96f4 | 2012-09-02 01:35:47 +0200 | [diff] [blame] | 63 | dnl Set internal versions |
| 64 | OSMESA_VERSION=8 |
| 65 | AC_SUBST([OSMESA_VERSION]) |
Igor Gnatenko | 4d7e0fa | 2015-07-07 13:05:04 +0300 | [diff] [blame] | 66 | OPENCL_VERSION=1 |
| 67 | AC_SUBST([OPENCL_VERSION]) |
Johannes Obermayr | 10a96f4 | 2012-09-02 01:35:47 +0200 | [diff] [blame] | 68 | |
Ilia Mirkin | 8a2d88e | 2017-02-07 18:18:07 -0500 | [diff] [blame] | 69 | # The idea is that libdrm is distributed as one cohesive package, even |
| 70 | # though it is composed of multiple libraries. However some drivers |
| 71 | # may have different version requirements than others. This list |
| 72 | # codifies which drivers need which version of libdrm. Any libdrm |
| 73 | # version dependencies in non-driver-specific code should be reflected |
| 74 | # in the first entry. |
Emil Velikov | 2c72e78 | 2016-12-01 19:48:43 +0000 | [diff] [blame] | 75 | LIBDRM_REQUIRED=2.4.75 |
Emil Velikov | f3637b3 | 2017-02-14 01:09:24 +0000 | [diff] [blame] | 76 | LIBDRM_RADEON_REQUIRED=2.4.71 |
Marek Olšák | 461a864 | 2018-07-12 00:50:52 -0400 | [diff] [blame] | 77 | LIBDRM_AMDGPU_REQUIRED=2.4.93 |
Vinson Lee | 6ee4665 | 2017-02-01 23:28:31 +0000 | [diff] [blame] | 78 | LIBDRM_INTEL_REQUIRED=2.4.75 |
Ben Skeggs | a8abdf2 | 2015-11-03 15:55:55 +1000 | [diff] [blame] | 79 | LIBDRM_NVVIEUX_REQUIRED=2.4.66 |
| 80 | LIBDRM_NOUVEAU_REQUIRED=2.4.66 |
Kristian H. Kristensen | de3b34d | 2018-08-15 09:18:41 -0700 | [diff] [blame] | 81 | LIBDRM_FREEDRENO_REQUIRED=2.4.93 |
Christian Gmeiner | 72d2043 | 2018-03-25 22:29:56 +0200 | [diff] [blame] | 82 | LIBDRM_ETNAVIV_REQUIRED=2.4.89 |
Stefan Schake | 4fc0ebd | 2018-04-25 00:00:57 +0200 | [diff] [blame] | 83 | LIBDRM_VC4_REQUIRED=2.4.89 |
Ilia Mirkin | 8a2d88e | 2017-02-07 18:18:07 -0500 | [diff] [blame] | 84 | |
| 85 | dnl Versions for external dependencies |
Emil Velikov | 6689cc0 | 2017-02-09 13:35:45 +0000 | [diff] [blame] | 86 | DRI2PROTO_REQUIRED=2.8 |
Jesse Barnes | 1e39fc7 | 2011-05-05 13:09:16 -0700 | [diff] [blame] | 87 | GLPROTO_REQUIRED=1.4.14 |
Fabio Pedretti | 8a8dd86 | 2014-03-01 10:11:12 +0100 | [diff] [blame] | 88 | LIBOMXIL_BELLAGIO_REQUIRED=0.0 |
Gurkirpal Singh | e2afa15 | 2018-01-20 05:37:53 +0530 | [diff] [blame] | 89 | LIBOMXIL_TIZONIA_REQUIRED=0.10.0 |
Juan A. Suarez Romero | 4d449c9 | 2018-04-27 10:38:09 +0200 | [diff] [blame] | 90 | LIBVA_REQUIRED=0.39.0 |
Christian König | 5609a69 | 2015-04-29 15:35:02 +0200 | [diff] [blame] | 91 | VDPAU_REQUIRED=1.1 |
Jonas Ådahl | 36b9976 | 2017-01-13 23:05:10 +0800 | [diff] [blame] | 92 | WAYLAND_REQUIRED=1.11 |
Eric Engestrom | 37eb56d | 2018-06-07 15:45:01 +0100 | [diff] [blame] | 93 | WAYLAND_EGL_BACKEND_REQUIRED=3 |
Daniel Stone | 02cc359 | 2017-06-16 18:01:23 +0100 | [diff] [blame] | 94 | WAYLAND_PROTOCOLS_REQUIRED=1.8 |
Emil Velikov | da029f8 | 2014-07-11 23:17:48 +0100 | [diff] [blame] | 95 | XCB_REQUIRED=1.9.3 |
Fabio Pedretti | 8a8dd86 | 2014-03-01 10:11:12 +0100 | [diff] [blame] | 96 | XCBDRI2_REQUIRED=1.8 |
Dave Airlie | 7aeef2d | 2018-03-14 06:06:00 +1000 | [diff] [blame] | 97 | XCBDRI3_MODIFIERS_REQUIRED=1.13 |
Fabio Pedretti | 8a8dd86 | 2014-03-01 10:11:12 +0100 | [diff] [blame] | 98 | XCBGLX_REQUIRED=1.8.1 |
Dave Airlie | 7aeef2d | 2018-03-14 06:06:00 +1000 | [diff] [blame] | 99 | XCBPRESENT_MODIFIERS_REQUIRED=1.13 |
Emil Velikov | 43b09ee | 2017-02-09 13:35:49 +0000 | [diff] [blame] | 100 | XDAMAGE_REQUIRED=1.1 |
Fabio Pedretti | 8a8dd86 | 2014-03-01 10:11:12 +0100 | [diff] [blame] | 101 | XSHMFENCE_REQUIRED=1.1 |
| 102 | XVMC_REQUIRED=1.0.6 |
Eric Engestrom | ed871af | 2016-07-19 13:41:36 +0100 | [diff] [blame] | 103 | PYTHON_MAKO_REQUIRED=0.8.0 |
Steven Toth | 8c60bcb | 2016-09-28 12:58:00 -0600 | [diff] [blame] | 104 | LIBSENSORS_REQUIRED=4.0.0 |
Chuck Atkins | ad69b03 | 2017-06-08 13:11:32 -0400 | [diff] [blame] | 105 | ZLIB_REQUIRED=1.2.3 |
Dan Nicholson | cc77e8f | 2008-05-05 14:38:22 -0700 | [diff] [blame] | 106 | |
Tobias Droste | 5db8953 | 2016-11-19 02:39:10 +0100 | [diff] [blame] | 107 | dnl LLVM versions |
| 108 | LLVM_REQUIRED_GALLIUM=3.3.0 |
Emil Velikov | a14ecda | 2017-10-03 17:51:16 +0100 | [diff] [blame] | 109 | LLVM_REQUIRED_OPENCL=3.9.0 |
Marek Olšák | 12beef0 | 2017-04-25 02:18:10 +0200 | [diff] [blame] | 110 | LLVM_REQUIRED_R600=3.9.0 |
Marek Olšák | fd1121e | 2018-07-01 15:50:51 -0400 | [diff] [blame] | 111 | LLVM_REQUIRED_RADEONSI=6.0.0 |
| 112 | LLVM_REQUIRED_RADV=6.0.0 |
Juan A. Suarez Romero | d24839b | 2018-06-18 15:45:51 +0200 | [diff] [blame] | 113 | LLVM_REQUIRED_SWR=5.0.0 |
Tobias Droste | 5db8953 | 2016-11-19 02:39:10 +0100 | [diff] [blame] | 114 | |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 115 | dnl Check for progs |
| 116 | AC_PROG_CPP |
| 117 | AC_PROG_CC |
| 118 | AC_PROG_CXX |
Gert Wollny | 09ad257 | 2017-10-18 17:05:25 +0200 | [diff] [blame] | 119 | dnl add this here, so the help for this environmnet variable is close to |
| 120 | dnl other CC/CXX flags related help |
| 121 | AC_ARG_VAR([CXX11_CXXFLAGS], [Compiler flag to enable C++11 support (only needed if not |
| 122 | enabled by default and different from -std=c++11)]) |
Dylan Noblesmith | a3d5673 | 2012-04-02 15:35:38 +0000 | [diff] [blame] | 123 | AM_PROG_CC_C_O |
Matt Turner | 0097940 | 2018-05-09 16:32:12 -0700 | [diff] [blame] | 124 | AC_PROG_GREP |
Eric Engestrom | 11d4530 | 2018-02-23 17:02:08 +0000 | [diff] [blame] | 125 | AC_PROG_NM |
Eric Anholt | f9d1562 | 2012-05-24 13:59:21 -0700 | [diff] [blame] | 126 | AM_PROG_AS |
Matt Turner | 691bd9b | 2014-09-21 13:32:35 -0700 | [diff] [blame] | 127 | AX_CHECK_GNU_MAKE |
Jonathan Gray | 4ef44bb | 2015-12-06 16:11:05 +1100 | [diff] [blame] | 128 | AC_CHECK_PROGS([PYTHON2], [python2.7 python2 python]) |
Matt Turner | 3a343ef | 2012-01-11 01:05:56 -0500 | [diff] [blame] | 129 | AC_PROG_SED |
Matt Turner | fd827a8 | 2012-01-21 22:43:02 -0500 | [diff] [blame] | 130 | AC_PROG_MKDIR_P |
Dan Nicholson | 41b0070 | 2007-12-12 08:48:30 -0800 | [diff] [blame] | 131 | |
Michel Dänzer | 76b906c | 2014-08-29 10:27:43 +0900 | [diff] [blame] | 132 | AC_SYS_LARGEFILE |
| 133 | |
Gert Wollny | 09ad257 | 2017-10-18 17:05:25 +0200 | [diff] [blame] | 134 | |
Emil Velikov | 957a28e | 2014-08-13 17:55:39 +0100 | [diff] [blame] | 135 | LT_PREREQ([2.2]) |
| 136 | LT_INIT([disable-static]) |
| 137 | |
Jonathan Gray | 99c4079 | 2015-10-10 17:42:40 +1100 | [diff] [blame] | 138 | AC_CHECK_PROG(RM, rm, [rm -f]) |
| 139 | |
Matt Turner | b68b852 | 2012-10-01 13:11:30 -0700 | [diff] [blame] | 140 | AX_PROG_BISON([], |
Emil Velikov | c481c8f | 2016-04-05 14:29:41 +0100 | [diff] [blame] | 141 | AS_IF([test ! -f "$srcdir/src/compiler/glsl/glcpp/glcpp-parse.c"], |
Matt Turner | b68b852 | 2012-10-01 13:11:30 -0700 | [diff] [blame] | 142 | [AC_MSG_ERROR([bison not found - unable to compile glcpp-parse.y])])) |
Matt Turner | 2a71054 | 2012-10-01 13:28:51 -0700 | [diff] [blame] | 143 | AX_PROG_FLEX([], |
Emil Velikov | c481c8f | 2016-04-05 14:29:41 +0100 | [diff] [blame] | 144 | AS_IF([test ! -f "$srcdir/src/compiler/glsl/glcpp/glcpp-lex.c"], |
Matt Turner | 2a71054 | 2012-10-01 13:28:51 -0700 | [diff] [blame] | 145 | [AC_MSG_ERROR([flex not found - unable to compile glcpp-lex.l])])) |
Brian Paul | de1df26 | 2011-05-18 07:50:21 -0600 | [diff] [blame] | 146 | |
Kenneth Graunke | 2224fb6 | 2012-05-29 16:03:05 -0700 | [diff] [blame] | 147 | AC_CHECK_PROG(INDENT, indent, indent, cat) |
| 148 | if test "x$INDENT" != "xcat"; then |
Samuel Iglesias Gonsalvez | efef6c8 | 2015-01-13 11:02:27 +0100 | [diff] [blame] | 149 | # Only GNU indent is supported |
| 150 | INDENT_VERSION=`indent --version | grep GNU` |
| 151 | if test $? -eq 0; then |
| 152 | AC_SUBST(INDENT_FLAGS, '-i4 -nut -br -brs -npcs -ce -TGLubyte -TGLbyte -TBool') |
| 153 | else |
| 154 | INDENT="cat" |
| 155 | fi |
Kenneth Graunke | 2224fb6 | 2012-05-29 16:03:05 -0700 | [diff] [blame] | 156 | fi |
| 157 | |
Samuel Iglesias Gonsalvez | ced9425 | 2015-03-02 10:49:31 +0100 | [diff] [blame] | 158 | AX_CHECK_PYTHON_MAKO_MODULE($PYTHON_MAKO_REQUIRED) |
Emil Velikov | 4008975 | 2015-03-23 17:49:24 +0000 | [diff] [blame] | 159 | |
| 160 | if test -z "$PYTHON2"; then |
| 161 | if test ! -f "$srcdir/src/util/format_srgb.c"; then |
| 162 | AC_MSG_ERROR([Python not found - unable to generate sources]) |
| 163 | fi |
| 164 | else |
| 165 | if test "x$acv_mako_found" = xno; then |
| 166 | if test ! -f "$srcdir/src/mesa/main/format_unpack.c"; then |
| 167 | AC_MSG_ERROR([Python mako module v$PYTHON_MAKO_REQUIRED or higher not found]) |
| 168 | fi |
| 169 | fi |
Samuel Iglesias Gonsalvez | ced9425 | 2015-03-02 10:49:31 +0100 | [diff] [blame] | 170 | fi |
Samuel Iglesias Gonsalvez | 2b37bea | 2014-11-21 08:53:21 +0100 | [diff] [blame] | 171 | |
Dan Nicholson | bc302b2 | 2009-05-22 09:39:02 -0700 | [diff] [blame] | 172 | AC_PROG_INSTALL |
Dan Nicholson | bc302b2 | 2009-05-22 09:39:02 -0700 | [diff] [blame] | 173 | |
Dan Nicholson | bfb27b5 | 2008-06-30 09:40:30 -0700 | [diff] [blame] | 174 | dnl We need a POSIX shell for parts of the build. Assume we have one |
| 175 | dnl in most cases. |
Alan Coopersmith | e1f9adc | 2008-06-20 17:58:53 -0700 | [diff] [blame] | 176 | case "$host_os" in |
| 177 | solaris*) |
| 178 | # Solaris /bin/sh is too old/non-POSIX compliant |
| 179 | AC_PATH_PROGS(POSIX_SHELL, [ksh93 ksh sh]) |
Dan Nicholson | bfb27b5 | 2008-06-30 09:40:30 -0700 | [diff] [blame] | 180 | SHELL="$POSIX_SHELL" |
Alan Coopersmith | e1f9adc | 2008-06-20 17:58:53 -0700 | [diff] [blame] | 181 | ;; |
| 182 | esac |
| 183 | |
nobled | 2a50187 | 2010-08-29 20:03:37 -0400 | [diff] [blame] | 184 | dnl clang is mostly GCC-compatible, but its version is much lower, |
| 185 | dnl so we have to check for it. |
| 186 | AC_MSG_CHECKING([if compiling with clang]) |
| 187 | |
| 188 | AC_COMPILE_IFELSE( |
| 189 | [AC_LANG_PROGRAM([], [[ |
| 190 | #ifndef __clang__ |
| 191 | not clang |
| 192 | #endif |
| 193 | ]])], |
Jeremy Huddleston | b728eef | 2011-05-05 14:08:57 -0700 | [diff] [blame] | 194 | [acv_mesa_CLANG=yes], [acv_mesa_CLANG=no]) |
nobled | 2a50187 | 2010-08-29 20:03:37 -0400 | [diff] [blame] | 195 | |
Jeremy Huddleston | b728eef | 2011-05-05 14:08:57 -0700 | [diff] [blame] | 196 | AC_MSG_RESULT([$acv_mesa_CLANG]) |
nobled | 2a50187 | 2010-08-29 20:03:37 -0400 | [diff] [blame] | 197 | |
Timothy Arceri | 6852dce | 2014-12-18 07:29:47 +1100 | [diff] [blame] | 198 | dnl If we're using GCC, make sure that it is at least version 4.2.0. Older |
Ian Romanick | 9aa3aa7 | 2010-03-03 15:59:37 -0800 | [diff] [blame] | 199 | dnl versions are explictly not supported. |
Mike Frysinger | 73c9b4b | 2013-02-04 21:27:40 -0500 | [diff] [blame] | 200 | GEN_ASM_OFFSETS=no |
Dave Airlie | ea9ae5d | 2015-01-21 16:40:26 +1000 | [diff] [blame] | 201 | USE_GNU99=no |
Jeremy Huddleston | b728eef | 2011-05-05 14:08:57 -0700 | [diff] [blame] | 202 | if test "x$GCC" = xyes -a "x$acv_mesa_CLANG" = xno; then |
Ian Romanick | 9aa3aa7 | 2010-03-03 15:59:37 -0800 | [diff] [blame] | 203 | AC_MSG_CHECKING([whether gcc version is sufficient]) |
| 204 | major=0 |
| 205 | minor=0 |
| 206 | |
| 207 | GCC_VERSION=`$CC -dumpversion` |
| 208 | if test $? -eq 0; then |
Tom Stellard | 79d77b3 | 2012-04-20 16:56:46 +0200 | [diff] [blame] | 209 | GCC_VERSION_MAJOR=`echo $GCC_VERSION | cut -d. -f1` |
| 210 | GCC_VERSION_MINOR=`echo $GCC_VERSION | cut -d. -f2` |
Ian Romanick | 9aa3aa7 | 2010-03-03 15:59:37 -0800 | [diff] [blame] | 211 | fi |
| 212 | |
Timothy Arceri | 6852dce | 2014-12-18 07:29:47 +1100 | [diff] [blame] | 213 | if test $GCC_VERSION_MAJOR -lt 4 -o $GCC_VERSION_MAJOR -eq 4 -a $GCC_VERSION_MINOR -lt 2 ; then |
Ian Romanick | 9aa3aa7 | 2010-03-03 15:59:37 -0800 | [diff] [blame] | 214 | AC_MSG_RESULT([no]) |
Timothy Arceri | 6852dce | 2014-12-18 07:29:47 +1100 | [diff] [blame] | 215 | AC_MSG_ERROR([If using GCC, version 4.2.0 or later is required.]) |
Ian Romanick | 9aa3aa7 | 2010-03-03 15:59:37 -0800 | [diff] [blame] | 216 | else |
| 217 | AC_MSG_RESULT([yes]) |
| 218 | fi |
Mike Frysinger | 73c9b4b | 2013-02-04 21:27:40 -0500 | [diff] [blame] | 219 | |
Dave Airlie | ea9ae5d | 2015-01-21 16:40:26 +1000 | [diff] [blame] | 220 | if test $GCC_VERSION_MAJOR -lt 4 -o $GCC_VERSION_MAJOR -eq 4 -a $GCC_VERSION_MINOR -lt 6 ; then |
| 221 | USE_GNU99=yes |
| 222 | fi |
Mike Frysinger | 73c9b4b | 2013-02-04 21:27:40 -0500 | [diff] [blame] | 223 | if test "x$cross_compiling" = xyes; then |
| 224 | GEN_ASM_OFFSETS=yes |
| 225 | fi |
Ian Romanick | 9aa3aa7 | 2010-03-03 15:59:37 -0800 | [diff] [blame] | 226 | fi |
Tom Stellard | f8ba0f5 | 2014-02-20 07:31:16 -0800 | [diff] [blame] | 227 | |
Jose Fonseca | 51564f0 | 2015-12-01 22:43:46 +0000 | [diff] [blame] | 228 | dnl We don't support building Mesa with Sun C compiler |
| 229 | dnl https://bugs.freedesktop.org/show_bug.cgi?id=93189 |
| 230 | AC_CHECK_DECL([__SUNPRO_C], [SUNCC=yes], [SUNCC=no]) |
| 231 | if test "x$SUNCC" = xyes; then |
| 232 | AC_MSG_ERROR([Building with Sun C compiler is not supported, use GCC instead.]) |
| 233 | fi |
| 234 | |
Tom Stellard | f8ba0f5 | 2014-02-20 07:31:16 -0800 | [diff] [blame] | 235 | dnl Check for compiler builtins |
| 236 | AX_GCC_BUILTIN([__builtin_bswap32]) |
Tom Stellard | a9f88e2 | 2014-02-19 14:17:33 -0800 | [diff] [blame] | 237 | AX_GCC_BUILTIN([__builtin_bswap64]) |
Matt Turner | 4a96df7 | 2014-09-21 17:25:49 -0700 | [diff] [blame] | 238 | AX_GCC_BUILTIN([__builtin_clz]) |
| 239 | AX_GCC_BUILTIN([__builtin_clzll]) |
| 240 | AX_GCC_BUILTIN([__builtin_ctz]) |
| 241 | AX_GCC_BUILTIN([__builtin_expect]) |
| 242 | AX_GCC_BUILTIN([__builtin_ffs]) |
| 243 | AX_GCC_BUILTIN([__builtin_ffsll]) |
| 244 | AX_GCC_BUILTIN([__builtin_popcount]) |
| 245 | AX_GCC_BUILTIN([__builtin_popcountll]) |
| 246 | AX_GCC_BUILTIN([__builtin_unreachable]) |
Tom Stellard | f8ba0f5 | 2014-02-20 07:31:16 -0800 | [diff] [blame] | 247 | |
Eric Anholt | be1f49b | 2015-07-10 16:25:26 -0700 | [diff] [blame] | 248 | AX_GCC_FUNC_ATTRIBUTE([const]) |
Matt Turner | 976464c | 2014-09-21 18:14:01 -0700 | [diff] [blame] | 249 | AX_GCC_FUNC_ATTRIBUTE([flatten]) |
| 250 | AX_GCC_FUNC_ATTRIBUTE([format]) |
Matt Turner | e4be17f | 2014-09-21 14:31:05 -0700 | [diff] [blame] | 251 | AX_GCC_FUNC_ATTRIBUTE([malloc]) |
Matt Turner | 976464c | 2014-09-21 18:14:01 -0700 | [diff] [blame] | 252 | AX_GCC_FUNC_ATTRIBUTE([packed]) |
Eric Anholt | be1f49b | 2015-07-10 16:25:26 -0700 | [diff] [blame] | 253 | AX_GCC_FUNC_ATTRIBUTE([pure]) |
Matt Turner | 377ab2f | 2016-05-13 13:17:02 -0700 | [diff] [blame] | 254 | AX_GCC_FUNC_ATTRIBUTE([returns_nonnull]) |
Vinson Lee | 5f75983 | 2015-03-07 14:07:10 -0800 | [diff] [blame] | 255 | AX_GCC_FUNC_ATTRIBUTE([unused]) |
Matt Turner | 5ec140c | 2016-07-11 10:44:25 -0700 | [diff] [blame] | 256 | AX_GCC_FUNC_ATTRIBUTE([visibility]) |
Kenneth Graunke | 128de6f | 2015-07-06 11:04:19 -0700 | [diff] [blame] | 257 | AX_GCC_FUNC_ATTRIBUTE([warn_unused_result]) |
Emil Velikov | 7e196cd | 2016-05-24 16:23:09 +0100 | [diff] [blame] | 258 | AX_GCC_FUNC_ATTRIBUTE([weak]) |
Emil Velikov | 95d9eae | 2016-12-05 19:52:40 +0000 | [diff] [blame] | 259 | AX_GCC_FUNC_ATTRIBUTE([alias]) |
Jason Ekstrand | 0c49aa0 | 2017-08-16 17:16:45 -0700 | [diff] [blame] | 260 | AX_GCC_FUNC_ATTRIBUTE([noreturn]) |
Matt Turner | 976464c | 2014-09-21 18:14:01 -0700 | [diff] [blame] | 261 | |
Mike Frysinger | 73c9b4b | 2013-02-04 21:27:40 -0500 | [diff] [blame] | 262 | AM_CONDITIONAL([GEN_ASM_OFFSETS], test "x$GEN_ASM_OFFSETS" = xyes) |
Ian Romanick | 9aa3aa7 | 2010-03-03 15:59:37 -0800 | [diff] [blame] | 263 | |
Dan Nicholson | 41b0070 | 2007-12-12 08:48:30 -0800 | [diff] [blame] | 264 | dnl Make sure the pkg-config macros are defined |
Dan Nicholson | 356f311 | 2009-04-29 06:49:27 -0700 | [diff] [blame] | 265 | m4_ifndef([PKG_PROG_PKG_CONFIG], |
| 266 | [m4_fatal([Could not locate the pkg-config autoconf macros. |
| 267 | These are usually located in /usr/share/aclocal/pkg.m4. If your macros |
| 268 | are in a different location, try setting the environment variable |
| 269 | ACLOCAL="aclocal -I/other/macro/dir" before running autoreconf.])]) |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 270 | PKG_PROG_PKG_CONFIG() |
| 271 | |
| 272 | dnl LIB_DIR - library basename |
| 273 | LIB_DIR=`echo $libdir | $SED 's%.*/%%'` |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 274 | AC_SUBST([LIB_DIR]) |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 275 | |
Matt Turner | d12b07e | 2012-08-14 12:33:32 -0700 | [diff] [blame] | 276 | dnl Cache LDFLAGS and CPPFLAGS so we can add to them and restore later |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 277 | _SAVE_LDFLAGS="$LDFLAGS" |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 278 | _SAVE_CPPFLAGS="$CPPFLAGS" |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 279 | |
| 280 | dnl Compiler macros |
Emil Velikov | 9e9e917 | 2017-01-26 13:24:04 +0000 | [diff] [blame] | 281 | DEFINES="-D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS" |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 282 | AC_SUBST([DEFINES]) |
Nicolas Boichat | 27d713a | 2016-04-28 18:41:38 +0800 | [diff] [blame] | 283 | android=no |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 284 | case "$host_os" in |
Nicolas Boichat | f6ac3d0 | 2017-05-05 10:26:00 +0800 | [diff] [blame] | 285 | *-android*) |
Nicolas Boichat | 27d713a | 2016-04-28 18:41:38 +0800 | [diff] [blame] | 286 | android=yes |
| 287 | ;; |
Yaakov Selkowitz | 3c18c16 | 2016-06-07 18:09:07 +0000 | [diff] [blame] | 288 | linux*|*-gnu*|gnu*|cygwin*) |
Matt Turner | b133b84 | 2014-09-21 17:33:21 -0700 | [diff] [blame] | 289 | DEFINES="$DEFINES -D_GNU_SOURCE" |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 290 | ;; |
Alan Coopersmith | e1f9adc | 2008-06-20 17:58:53 -0700 | [diff] [blame] | 291 | solaris*) |
Matt Turner | b133b84 | 2014-09-21 17:33:21 -0700 | [diff] [blame] | 292 | DEFINES="$DEFINES -DSVR4" |
Alan Coopersmith | e1f9adc | 2008-06-20 17:58:53 -0700 | [diff] [blame] | 293 | ;; |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 294 | esac |
| 295 | |
Nicolas Boichat | 27d713a | 2016-04-28 18:41:38 +0800 | [diff] [blame] | 296 | AM_CONDITIONAL(HAVE_ANDROID, test "x$android" = xyes) |
| 297 | |
Matt Turner | e4b2b69 | 2017-07-06 21:49:05 -0700 | [diff] [blame] | 298 | dnl |
| 299 | dnl Check compiler flags |
| 300 | dnl |
| 301 | AX_CHECK_COMPILE_FLAG([-Wall], [CFLAGS="$CFLAGS -Wall"]) |
| 302 | AX_CHECK_COMPILE_FLAG([-Werror=implicit-function-declaration], [CFLAGS="$CFLAGS -Werror=implicit-function-declaration"]) |
| 303 | AX_CHECK_COMPILE_FLAG([-Werror=missing-prototypes], [CFLAGS="$CFLAGS -Werror=missing-prototypes"]) |
| 304 | AX_CHECK_COMPILE_FLAG([-Wmissing-prototypes], [CFLAGS="$CFLAGS -Wmissing-prototypes"]) |
Gert Wollny | 81e5bf3 | 2018-06-11 18:24:39 +0200 | [diff] [blame] | 305 | dnl Dylan Baker: gcc and clang always accepr -Wno-*, hence check for the original warning, then set the no-* flag |
| 306 | AX_CHECK_COMPILE_FLAG([-Wmissing-field-initializers], [CFLAGS="$CFLAGS -Wno-missing-field-initializers"]) |
Matt Turner | e4b2b69 | 2017-07-06 21:49:05 -0700 | [diff] [blame] | 307 | AX_CHECK_COMPILE_FLAG([-fno-math-errno], [CFLAGS="$CFLAGS -fno-math-errno"]) |
Gert Wollny | 81e5bf3 | 2018-06-11 18:24:39 +0200 | [diff] [blame] | 308 | |
Matt Turner | e4b2b69 | 2017-07-06 21:49:05 -0700 | [diff] [blame] | 309 | AX_CHECK_COMPILE_FLAG([-fno-trapping-math], [CFLAGS="$CFLAGS -fno-trapping-math"]) |
| 310 | AX_CHECK_COMPILE_FLAG([-fvisibility=hidden], [VISIBILITY_CFLAGS="-fvisibility=hidden"]) |
Dave Airlie | ea9ae5d | 2015-01-21 16:40:26 +1000 | [diff] [blame] | 311 | |
Matt Turner | e4b2b69 | 2017-07-06 21:49:05 -0700 | [diff] [blame] | 312 | dnl |
| 313 | dnl Check C++ compiler flags |
| 314 | dnl |
| 315 | AC_LANG_PUSH([C++]) |
| 316 | AX_CHECK_COMPILE_FLAG([-Wall], [CXXFLAGS="$CXXFLAGS -Wall"]) |
| 317 | AX_CHECK_COMPILE_FLAG([-fno-math-errno], [CXXFLAGS="$CXXFLAGS -fno-math-errno"]) |
| 318 | AX_CHECK_COMPILE_FLAG([-fno-trapping-math], [CXXFLAGS="$CXXFLAGS -fno-trapping-math"]) |
| 319 | AX_CHECK_COMPILE_FLAG([-fvisibility=hidden], [VISIBILITY_CXXFLAGS="-fvisibility=hidden"]) |
Gert Wollny | 81e5bf3 | 2018-06-11 18:24:39 +0200 | [diff] [blame] | 320 | AX_CHECK_COMPILE_FLAG([-Wmissing-field-initializers], [CXXFLAGS="$CXXFLAGS -Wno-missing-field-initializers"]) |
Matt Turner | e4b2b69 | 2017-07-06 21:49:05 -0700 | [diff] [blame] | 321 | AC_LANG_POP([C++]) |
| 322 | |
| 323 | # Flags to help ensure that certain portions of the code -- and only those |
| 324 | # portions -- can be built with MSVC: |
| 325 | # - src/util, src/gallium/auxiliary, rc/gallium/drivers/llvmpipe, and |
| 326 | # - non-Linux/Posix OpenGL portions needs to build on MSVC 2013 (which |
| 327 | # supports most of C99) |
| 328 | # - the rest has no compiler compiler restrictions |
Emil Velikov | 63811f3 | 2017-10-31 19:26:32 +0000 | [diff] [blame] | 329 | AX_CHECK_COMPILE_FLAG([-Werror=pointer-arith], [MSVC2013_COMPAT_CFLAGS="$MSVC2013_COMPAT_CFLAGS -Werror=pointer-arith"]) |
| 330 | AX_CHECK_COMPILE_FLAG([-Werror=vla], [MSVC2013_COMPAT_CFLAGS="$MSVC2013_COMPAT_CFLAGS -Werror=vla"]) |
Matt Turner | e4b2b69 | 2017-07-06 21:49:05 -0700 | [diff] [blame] | 331 | AC_LANG_PUSH([C++]) |
Emil Velikov | 63811f3 | 2017-10-31 19:26:32 +0000 | [diff] [blame] | 332 | AX_CHECK_COMPILE_FLAG([-Werror=pointer-arith], [MSVC2013_COMPAT_CXXFLAGS="$MSVC2013_COMPAT_CXXFLAGS -Werror=pointer-arith"]) |
| 333 | AX_CHECK_COMPILE_FLAG([-Werror=vla], [MSVC2013_COMPAT_CXXFLAGS="$MSVC2013_COMPAT_CXXFLAGS -Werror=vla"]) |
Matt Turner | e4b2b69 | 2017-07-06 21:49:05 -0700 | [diff] [blame] | 334 | AC_LANG_POP([C++]) |
| 335 | |
| 336 | AC_SUBST([MSVC2013_COMPAT_CFLAGS]) |
| 337 | AC_SUBST([MSVC2013_COMPAT_CXXFLAGS]) |
| 338 | |
| 339 | if test "x$GCC" = xyes; then |
Dave Airlie | ea9ae5d | 2015-01-21 16:40:26 +1000 | [diff] [blame] | 340 | if test "x$USE_GNU99" = xyes; then |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 341 | CFLAGS="$CFLAGS -std=gnu99" |
Dave Airlie | ea9ae5d | 2015-01-21 16:40:26 +1000 | [diff] [blame] | 342 | else |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 343 | CFLAGS="$CFLAGS -std=c99" |
Dave Airlie | ea9ae5d | 2015-01-21 16:40:26 +1000 | [diff] [blame] | 344 | fi |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 345 | fi |
Jose Fonseca | 80c5bd7 | 2015-02-26 16:46:48 +0000 | [diff] [blame] | 346 | |
Gert Wollny | 09ad257 | 2017-10-18 17:05:25 +0200 | [diff] [blame] | 347 | dnl |
| 348 | dnl Check whether C++11 is supported, if the environment variable |
| 349 | dnl CXX11_CXXFLAGS is set it takes precedence. |
| 350 | dnl |
| 351 | |
| 352 | AC_LANG_PUSH([C++]) |
| 353 | |
| 354 | check_cxx11_available() { |
| 355 | output_support=$1 |
| 356 | AC_COMPILE_IFELSE( |
| 357 | [AC_LANG_PROGRAM([ |
| 358 | #if !(__cplusplus >= 201103L) |
| 359 | #error |
| 360 | #endif |
| 361 | #include <tuple> |
| 362 | ]) |
| 363 | ], [ |
| 364 | AC_MSG_RESULT(yes) |
| 365 | cxx11_support=yes |
| 366 | ], AC_MSG_RESULT(no)) |
| 367 | eval "$output_support=\$cxx11_support" |
| 368 | } |
| 369 | |
| 370 | HAVE_CXX11=no |
| 371 | save_CXXFLAGS="$CXXFLAGS" |
| 372 | |
| 373 | dnl If the user provides a flag to enable c++11, then we test only this |
| 374 | if test "x$CXX11_CXXFLAGS" != "x"; then |
| 375 | CXXFLAGS="$CXXFLAGS $CXX11_CXXFLAGS" |
| 376 | AC_MSG_CHECKING(whether c++11 is enabled by via $CXX11_CXXFLAGS) |
| 377 | check_cxx11_available HAVE_CXX11 |
| 378 | else |
| 379 | dnl test whether c++11 is enabled by default |
| 380 | AC_MSG_CHECKING(whether c++11 is enabled by default) |
| 381 | check_cxx11_available HAVE_CXX11 |
| 382 | |
| 383 | dnl C++11 not enabled by default, test whether -std=c++11 does the job |
| 384 | if test "x$HAVE_CXX11" != "xyes"; then |
| 385 | CXX11_CXXFLAGS=-std=c++11 |
| 386 | CXXFLAGS="$CXXFLAGS $CXX11_CXXFLAGS" |
| 387 | AC_MSG_CHECKING(whether c++11 is enabled by via $CXX11_CXXFLAGS) |
| 388 | check_cxx11_available HAVE_CXX11 |
| 389 | fi |
| 390 | fi |
| 391 | |
| 392 | CXXFLAGS="$save_CXXFLAGS" |
| 393 | AM_CONDITIONAL(HAVE_STD_CXX11, test "x$HAVE_CXX11" = "xyes") |
| 394 | AC_SUBST(CXX11_CXXFLAGS) |
| 395 | AC_LANG_POP([C++]) |
| 396 | |
Jon TURNEY | db78643 | 2011-04-26 11:56:02 +0100 | [diff] [blame] | 397 | dnl even if the compiler appears to support it, using visibility attributes isn't |
| 398 | dnl going to do anything useful currently on cygwin apart from emit lots of warnings |
| 399 | case "$host_os" in |
| 400 | cygwin*) |
| 401 | VISIBILITY_CFLAGS="" |
| 402 | VISIBILITY_CXXFLAGS="" |
| 403 | ;; |
| 404 | esac |
| 405 | |
Christopher James Halse Rogers | d1e28b2 | 2011-02-03 11:19:32 +1100 | [diff] [blame] | 406 | AC_SUBST([VISIBILITY_CFLAGS]) |
| 407 | AC_SUBST([VISIBILITY_CXXFLAGS]) |
| 408 | |
Marc Dietrich | d93fabb | 2017-11-29 22:25:05 +0100 | [diff] [blame] | 409 | dnl For some reason, the test for -Wno-foo always succeeds with gcc, even if the |
| 410 | dnl option is not supported. Hence, check for -Wfoo instead. |
| 411 | AX_CHECK_COMPILE_FLAG([-Woverride-init], [WNO_OVERRIDE_INIT="$WNO_OVERRIDE_INIT -Wno-override-init"]) # gcc |
| 412 | AX_CHECK_COMPILE_FLAG([-Winitializer-overrides], [WNO_OVERRIDE_INIT="$WNO_OVERRIDE_INIT -Wno-initializer-overrides"]) # clang |
Matt Turner | c5d2e2d | 2017-07-06 22:19:15 -0700 | [diff] [blame] | 413 | AC_SUBST([WNO_OVERRIDE_INIT]) |
| 414 | |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 415 | dnl |
Lauri Kasanen | fcefdc9 | 2013-12-19 21:43:25 +0200 | [diff] [blame] | 416 | dnl Optional flags, check for compiler support |
| 417 | dnl |
Timothy Arceri | f1b5f2b | 2014-12-07 00:09:40 +1100 | [diff] [blame] | 418 | SSE41_CFLAGS="-msse4.1" |
| 419 | dnl Code compiled by GCC with -msse* assumes a 16 byte aligned |
| 420 | dnl stack, but on x86-32 such alignment is not guaranteed. |
| 421 | case "$target_cpu" in |
| 422 | i?86) |
| 423 | SSE41_CFLAGS="$SSE41_CFLAGS -mstackrealign" |
| 424 | ;; |
| 425 | esac |
Emil Velikov | 1a6ae84 | 2014-11-15 18:37:22 +0000 | [diff] [blame] | 426 | save_CFLAGS="$CFLAGS" |
Timothy Arceri | f1b5f2b | 2014-12-07 00:09:40 +1100 | [diff] [blame] | 427 | CFLAGS="$SSE41_CFLAGS $CFLAGS" |
Emil Velikov | 1a6ae84 | 2014-11-15 18:37:22 +0000 | [diff] [blame] | 428 | AC_COMPILE_IFELSE([AC_LANG_SOURCE([[ |
| 429 | #include <smmintrin.h> |
Oded Gabbay | 6e44bbe | 2015-12-15 12:05:22 +0200 | [diff] [blame] | 430 | int param; |
Emil Velikov | 1a6ae84 | 2014-11-15 18:37:22 +0000 | [diff] [blame] | 431 | int main () { |
Oded Gabbay | 6e44bbe | 2015-12-15 12:05:22 +0200 | [diff] [blame] | 432 | __m128i a = _mm_set1_epi32 (param), b = _mm_set1_epi32 (param + 1), c; |
Emil Velikov | 1a6ae84 | 2014-11-15 18:37:22 +0000 | [diff] [blame] | 433 | c = _mm_max_epu32(a, b); |
Oded Gabbay | 6e44bbe | 2015-12-15 12:05:22 +0200 | [diff] [blame] | 434 | return _mm_cvtsi128_si32(c); |
Emil Velikov | 1a6ae84 | 2014-11-15 18:37:22 +0000 | [diff] [blame] | 435 | }]])], SSE41_SUPPORTED=1) |
| 436 | CFLAGS="$save_CFLAGS" |
Emil Velikov | b3121bf | 2014-08-01 17:06:10 +0100 | [diff] [blame] | 437 | if test "x$SSE41_SUPPORTED" = x1; then |
| 438 | DEFINES="$DEFINES -DUSE_SSE41" |
| 439 | fi |
Lauri Kasanen | fcefdc9 | 2013-12-19 21:43:25 +0200 | [diff] [blame] | 440 | AM_CONDITIONAL([SSE41_SUPPORTED], [test x$SSE41_SUPPORTED = x1]) |
Timothy Arceri | f1b5f2b | 2014-12-07 00:09:40 +1100 | [diff] [blame] | 441 | AC_SUBST([SSE41_CFLAGS], $SSE41_CFLAGS) |
Lauri Kasanen | fcefdc9 | 2013-12-19 21:43:25 +0200 | [diff] [blame] | 442 | |
Thomas Petazzoni | 54bbe60 | 2018-05-07 13:34:11 +0200 | [diff] [blame] | 443 | dnl Check for new-style atomic builtins. We first check without linking to |
| 444 | dnl -latomic. |
| 445 | AC_MSG_CHECKING(whether __atomic_load_n is supported) |
| 446 | AC_LINK_IFELSE([AC_LANG_SOURCE([[ |
| 447 | #include <stdint.h> |
Nicolai Hähnle | 8915f0c | 2016-10-04 16:06:31 +0200 | [diff] [blame] | 448 | int main() { |
Nicolas Boichat | 54ba73e | 2018-04-05 09:33:09 +0800 | [diff] [blame] | 449 | struct { |
| 450 | uint64_t *v; |
| 451 | } x; |
Andrew Galante | baf16b2 | 2018-06-11 15:05:25 -0700 | [diff] [blame] | 452 | return (int)__atomic_load_n(x.v, __ATOMIC_ACQUIRE) & |
| 453 | (int)__atomic_add_fetch(x.v, (uint64_t)1, __ATOMIC_ACQ_REL); |
Thomas Petazzoni | 54bbe60 | 2018-05-07 13:34:11 +0200 | [diff] [blame] | 454 | }]])], GCC_ATOMIC_BUILTINS_SUPPORTED=yes, GCC_ATOMIC_BUILTINS_SUPPORTED=no) |
| 455 | |
| 456 | dnl If that didn't work, we try linking with -latomic, which is needed on some |
| 457 | dnl platforms. |
| 458 | if test "x$GCC_ATOMIC_BUILTINS_SUPPORTED" != xyes; then |
| 459 | save_LDFLAGS=$LDFLAGS |
| 460 | LDFLAGS="$LDFLAGS -latomic" |
| 461 | AC_LINK_IFELSE([AC_LANG_SOURCE([[ |
| 462 | #include <stdint.h> |
| 463 | int main() { |
| 464 | struct { |
| 465 | uint64_t *v; |
| 466 | } x; |
Andrew Galante | baf16b2 | 2018-06-11 15:05:25 -0700 | [diff] [blame] | 467 | return (int)__atomic_load_n(x.v, __ATOMIC_ACQUIRE) & |
| 468 | (int)__atomic_add_fetch(x.v, (uint64_t)1, __ATOMIC_ACQ_REL); |
Thomas Petazzoni | 54bbe60 | 2018-05-07 13:34:11 +0200 | [diff] [blame] | 469 | }]])], GCC_ATOMIC_BUILTINS_SUPPORTED=yes LIBATOMIC_LIBS="-latomic", |
| 470 | GCC_ATOMIC_BUILTINS_SUPPORTED=no) |
| 471 | LDFLAGS=$save_LDFLAGS |
| 472 | fi |
| 473 | AC_MSG_RESULT($GCC_ATOMIC_BUILTINS_SUPPORTED) |
| 474 | |
| 475 | if test "x$GCC_ATOMIC_BUILTINS_SUPPORTED" = xyes; then |
| 476 | DEFINES="$DEFINES -DUSE_GCC_ATOMIC_BUILTINS" |
Nicolai Hähnle | 8915f0c | 2016-10-04 16:06:31 +0200 | [diff] [blame] | 477 | fi |
Grazvydas Ignotas | 2ef7f23 | 2017-09-18 22:11:26 +0300 | [diff] [blame] | 478 | AC_SUBST([LIBATOMIC_LIBS]) |
Nicolai Hähnle | 8915f0c | 2016-10-04 16:06:31 +0200 | [diff] [blame] | 479 | |
Grazvydas Ignotas | a6a38a0 | 2017-03-31 01:26:25 +0300 | [diff] [blame] | 480 | dnl Check if host supports 64-bit atomics |
| 481 | dnl note that lack of support usually results in link (not compile) error |
| 482 | AC_MSG_CHECKING(whether __sync_add_and_fetch_8 is supported) |
| 483 | AC_LINK_IFELSE([AC_LANG_SOURCE([[ |
| 484 | #include <stdint.h> |
| 485 | uint64_t v; |
| 486 | int main() { |
| 487 | return __sync_add_and_fetch(&v, (uint64_t)1); |
| 488 | }]])], GCC_64BIT_ATOMICS_SUPPORTED=yes, GCC_64BIT_ATOMICS_SUPPORTED=no) |
| 489 | if test "x$GCC_64BIT_ATOMICS_SUPPORTED" != xyes; then |
| 490 | DEFINES="$DEFINES -DMISSING_64BIT_ATOMICS" |
| 491 | fi |
| 492 | AC_MSG_RESULT($GCC_64BIT_ATOMICS_SUPPORTED) |
| 493 | |
Oded Gabbay | afe88f6 | 2015-12-03 09:11:04 +0200 | [diff] [blame] | 494 | dnl Check for Endianness |
| 495 | AC_C_BIGENDIAN( |
| 496 | little_endian=no, |
| 497 | little_endian=yes, |
| 498 | little_endian=no, |
| 499 | little_endian=no |
| 500 | ) |
| 501 | |
| 502 | dnl Check for POWER8 Architecture |
| 503 | PWR8_CFLAGS="-mpower8-vector" |
| 504 | have_pwr8_intrinsics=no |
| 505 | AC_MSG_CHECKING(whether gcc supports -mpower8-vector) |
| 506 | save_CFLAGS=$CFLAGS |
| 507 | CFLAGS="$PWR8_CFLAGS $CFLAGS" |
| 508 | AC_COMPILE_IFELSE([AC_LANG_SOURCE([[ |
| 509 | #if defined(__GNUC__) && (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 8)) |
| 510 | #error "Need GCC >= 4.8 for sane POWER8 support" |
| 511 | #endif |
| 512 | #include <altivec.h> |
| 513 | int main () { |
| 514 | vector unsigned char r; |
| 515 | vector unsigned int v = vec_splat_u32 (1); |
| 516 | r = __builtin_vec_vgbbd ((vector unsigned char) v); |
| 517 | return 0; |
| 518 | }]])], have_pwr8_intrinsics=yes) |
| 519 | CFLAGS=$save_CFLAGS |
| 520 | |
| 521 | AC_ARG_ENABLE(pwr8, |
Philipp Zabel | 0b31c3a | 2017-05-10 17:44:29 +0200 | [diff] [blame] | 522 | [AS_HELP_STRING([--disable-pwr8], |
Oded Gabbay | afe88f6 | 2015-12-03 09:11:04 +0200 | [diff] [blame] | 523 | [disable POWER8-specific instructions])], |
| 524 | [enable_pwr8=$enableval], [enable_pwr8=auto]) |
| 525 | |
| 526 | if test "x$enable_pwr8" = xno ; then |
| 527 | have_pwr8_intrinsics=disabled |
| 528 | fi |
| 529 | |
| 530 | if test $have_pwr8_intrinsics = yes && test $little_endian = yes ; then |
| 531 | DEFINES="$DEFINES -D_ARCH_PWR8" |
| 532 | CXXFLAGS="$CXXFLAGS $PWR8_CFLAGS" |
| 533 | CFLAGS="$CFLAGS $PWR8_CFLAGS" |
| 534 | else |
| 535 | PWR8_CFLAGS= |
| 536 | fi |
| 537 | |
| 538 | AC_MSG_RESULT($have_pwr8_intrinsics) |
| 539 | if test "x$enable_pwr8" = xyes && test $have_pwr8_intrinsics = no ; then |
| 540 | AC_MSG_ERROR([POWER8 compiler support not detected]) |
| 541 | fi |
| 542 | |
| 543 | if test $have_pwr8_intrinsics = yes && test $little_endian = no ; then |
| 544 | AC_MSG_WARN([POWER8 optimization is enabled only on POWER8 Little-Endian]) |
| 545 | fi |
| 546 | |
| 547 | AC_SUBST([PWR8_CFLAGS], $PWR8_CFLAGS) |
| 548 | |
Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 549 | dnl Can't have static and shared libraries, default to static if user |
| 550 | dnl explicitly requested. If both disabled, set to static since shared |
Matt Turner | 0c17823 | 2012-01-14 11:10:06 -0500 | [diff] [blame] | 551 | dnl was explicitly requested. |
Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 552 | case "x$enable_static$enable_shared" in |
Emil Velikov | 4d8267e | 2014-03-12 18:13:02 +0000 | [diff] [blame] | 553 | xyesyes) |
Emil Velikov | 687cf37 | 2016-12-07 13:25:01 +0000 | [diff] [blame] | 554 | AC_MSG_ERROR([Cannot enable both static and shared. Building using --enable-shared is strongly recommended]) |
Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 555 | ;; |
Emil Velikov | 4d8267e | 2014-03-12 18:13:02 +0000 | [diff] [blame] | 556 | xnono) |
Emil Velikov | 687cf37 | 2016-12-07 13:25:01 +0000 | [diff] [blame] | 557 | AC_MSG_ERROR([Cannot disable both static and shared. Building using --enable-shared is strongly recommended]) |
Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 558 | ;; |
| 559 | esac |
| 560 | |
Emil Velikov | 4d8267e | 2014-03-12 18:13:02 +0000 | [diff] [blame] | 561 | AM_CONDITIONAL(BUILD_SHARED, test "x$enable_shared" = xyes) |
| 562 | |
Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 563 | dnl |
Dan Nicholson | 23656c4 | 2007-12-12 09:02:31 -0800 | [diff] [blame] | 564 | dnl other compiler options |
| 565 | dnl |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 566 | AC_ARG_ENABLE([debug], |
Dan Nicholson | 23656c4 | 2007-12-12 09:02:31 -0800 | [diff] [blame] | 567 | [AS_HELP_STRING([--enable-debug], |
| 568 | [use debug compiler flags and macros @<:@default=disabled@:>@])], |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 569 | [enable_debug="$enableval"], |
| 570 | [enable_debug=no] |
Dan Nicholson | 23656c4 | 2007-12-12 09:02:31 -0800 | [diff] [blame] | 571 | ) |
Oded Gabbay | 6613042 | 2016-01-07 17:20:47 +0200 | [diff] [blame] | 572 | |
| 573 | AC_ARG_ENABLE([profile], |
| 574 | [AS_HELP_STRING([--enable-profile], |
| 575 | [enable profiling of code @<:@default=disabled@:>@])], |
| 576 | [enable_profile="$enableval"], |
| 577 | [enable_profile=no] |
| 578 | ) |
| 579 | |
Nicolai Hähnle | 8b5d477 | 2017-04-03 11:17:48 +0200 | [diff] [blame] | 580 | AC_ARG_ENABLE([sanitize], |
| 581 | [AS_HELP_STRING([--enable-sanitize@<:@=address|undefined@:>@], |
| 582 | [enable code sanitizer @<:@default=disabled@:>@])], |
| 583 | [enable_sanitize="$enableval"], |
| 584 | [enable_sanitize=no]) |
| 585 | |
Oded Gabbay | 6613042 | 2016-01-07 17:20:47 +0200 | [diff] [blame] | 586 | if test "x$enable_profile" = xyes; then |
| 587 | DEFINES="$DEFINES -DPROFILE" |
| 588 | if test "x$GCC" = xyes; then |
| 589 | CFLAGS="$CFLAGS -fno-omit-frame-pointer" |
| 590 | fi |
| 591 | if test "x$GXX" = xyes; then |
| 592 | CXXFLAGS="$CXXFLAGS -fno-omit-frame-pointer" |
| 593 | fi |
| 594 | fi |
| 595 | |
Dan Nicholson | 23656c4 | 2007-12-12 09:02:31 -0800 | [diff] [blame] | 596 | if test "x$enable_debug" = xyes; then |
| 597 | DEFINES="$DEFINES -DDEBUG" |
Oded Gabbay | 6613042 | 2016-01-07 17:20:47 +0200 | [diff] [blame] | 598 | if test "x$enable_profile" = xyes; then |
| 599 | AC_MSG_WARN([Debug and Profile are enabled at the same time]) |
| 600 | fi |
Dan Nicholson | 23656c4 | 2007-12-12 09:02:31 -0800 | [diff] [blame] | 601 | if test "x$GCC" = xyes; then |
Ian Romanick | 66decc7 | 2014-07-14 11:22:20 -0700 | [diff] [blame] | 602 | if ! echo "$CFLAGS" | grep -q -e '-g'; then |
| 603 | CFLAGS="$CFLAGS -g" |
| 604 | fi |
| 605 | if ! echo "$CFLAGS" | grep -q -e '-O'; then |
| 606 | CFLAGS="$CFLAGS -O0" |
| 607 | fi |
Dan Nicholson | 23656c4 | 2007-12-12 09:02:31 -0800 | [diff] [blame] | 608 | fi |
| 609 | if test "x$GXX" = xyes; then |
Ian Romanick | 66decc7 | 2014-07-14 11:22:20 -0700 | [diff] [blame] | 610 | if ! echo "$CXXFLAGS" | grep -q -e '-g'; then |
| 611 | CXXFLAGS="$CXXFLAGS -g" |
| 612 | fi |
| 613 | if ! echo "$CXXFLAGS" | grep -q -e '-O'; then |
| 614 | CXXFLAGS="$CXXFLAGS -O0" |
| 615 | fi |
Dan Nicholson | 23656c4 | 2007-12-12 09:02:31 -0800 | [diff] [blame] | 616 | fi |
Matt Turner | b21ad12 | 2015-02-20 12:41:46 -0800 | [diff] [blame] | 617 | else |
| 618 | DEFINES="$DEFINES -DNDEBUG" |
Dan Nicholson | 23656c4 | 2007-12-12 09:02:31 -0800 | [diff] [blame] | 619 | fi |
Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 620 | |
Nicolai Hähnle | 8b5d477 | 2017-04-03 11:17:48 +0200 | [diff] [blame] | 621 | if test "x$enable_sanitize" != xno; then |
| 622 | if test "x$enable_profile" = xyes; then |
| 623 | AC_MSG_WARN([Sanitize and Profile are enabled at the same time]) |
| 624 | fi |
| 625 | |
| 626 | CFLAGS="$CFLAGS -fsanitize=$enable_sanitize" |
| 627 | CXXFLAGS="$CXXFLAGS -fsanitize=$enable_sanitize" |
| 628 | LDFLAGS="$LDFLAGS -fsanitize=$enable_sanitize" |
| 629 | |
| 630 | AC_LINK_IFELSE( |
| 631 | [AC_LANG_SOURCE([int main(){return 0;}])], |
| 632 | [], |
| 633 | [AC_MSG_FAILURE([sanitize flags '$enable_sanitize' not supported])]) |
| 634 | fi |
| 635 | |
Kyle Brenneman | 22a9e00 | 2016-05-11 14:01:53 -0400 | [diff] [blame] | 636 | dnl |
Jon TURNEY | ff90a87 | 2014-05-11 14:38:52 +0100 | [diff] [blame] | 637 | dnl Check if linker supports -Bsymbolic |
| 638 | dnl |
| 639 | save_LDFLAGS=$LDFLAGS |
| 640 | LDFLAGS="$LDFLAGS -Wl,-Bsymbolic" |
| 641 | AC_MSG_CHECKING([if ld supports -Bsymbolic]) |
| 642 | AC_LINK_IFELSE( |
| 643 | [AC_LANG_SOURCE([int main() { return 0;}])], |
| 644 | [AC_MSG_RESULT([yes]) |
| 645 | BSYMBOLIC="-Wl,-Bsymbolic";], |
| 646 | [AC_MSG_RESULT([no]) |
| 647 | BSYMBOLIC="";]) |
| 648 | LDFLAGS=$save_LDFLAGS |
| 649 | |
| 650 | AC_SUBST([BSYMBOLIC]) |
| 651 | |
| 652 | dnl |
Emil Velikov | d681b22 | 2014-03-11 17:58:08 +0000 | [diff] [blame] | 653 | dnl Check if linker supports garbage collection |
| 654 | dnl |
| 655 | save_LDFLAGS=$LDFLAGS |
| 656 | LDFLAGS="$LDFLAGS -Wl,--gc-sections" |
| 657 | AC_MSG_CHECKING([whether ld supports --gc-sections]) |
| 658 | AC_LINK_IFELSE( |
| 659 | [AC_LANG_SOURCE([static char UnusedFunc() { return 5; } int main() { return 0;}])], |
| 660 | [AC_MSG_RESULT([yes]) |
| 661 | GC_SECTIONS="-Wl,--gc-sections";], |
| 662 | [AC_MSG_RESULT([no]) |
| 663 | GC_SECTIONS="";]) |
| 664 | LDFLAGS=$save_LDFLAGS |
| 665 | |
| 666 | AC_SUBST([GC_SECTIONS]) |
| 667 | |
| 668 | dnl |
Emil Velikov | f57d092 | 2014-05-13 01:33:48 +0100 | [diff] [blame] | 669 | dnl OpenBSD does not have DT_NEEDED entries for libc by design |
| 670 | dnl so when these flags are passed to ld via libtool the checks will fail |
| 671 | dnl |
| 672 | case "$host_os" in |
Vinson Lee | 5dd927b | 2014-05-21 22:13:13 -0700 | [diff] [blame] | 673 | openbsd* | darwin* ) |
Emil Velikov | f57d092 | 2014-05-13 01:33:48 +0100 | [diff] [blame] | 674 | LD_NO_UNDEFINED="" ;; |
| 675 | *) |
Nicolai Hähnle | 8b5d477 | 2017-04-03 11:17:48 +0200 | [diff] [blame] | 676 | if test "x$enable_sanitize" = xno; then |
| 677 | LD_NO_UNDEFINED="-Wl,--no-undefined" |
| 678 | else |
| 679 | LD_NO_UNDEFINED="" |
| 680 | fi |
| 681 | ;; |
Emil Velikov | f57d092 | 2014-05-13 01:33:48 +0100 | [diff] [blame] | 682 | esac |
| 683 | |
| 684 | AC_SUBST([LD_NO_UNDEFINED]) |
| 685 | |
| 686 | dnl |
Jon TURNEY | ff90a87 | 2014-05-11 14:38:52 +0100 | [diff] [blame] | 687 | dnl Check if linker supports version scripts |
| 688 | dnl |
| 689 | AC_MSG_CHECKING([if the linker supports version-scripts]) |
| 690 | save_LDFLAGS=$LDFLAGS |
Dylan Baker | e4796ab | 2017-09-30 12:14:02 -0700 | [diff] [blame] | 691 | LDFLAGS="$LDFLAGS -Wl,--version-script=$srcdir/build-support/conftest.map" |
Jon TURNEY | ff90a87 | 2014-05-11 14:38:52 +0100 | [diff] [blame] | 692 | AC_LINK_IFELSE( |
| 693 | [AC_LANG_SOURCE([int main() { return 0;}])], |
| 694 | [have_ld_version_script=yes;AC_MSG_RESULT(yes)], |
| 695 | [have_ld_version_script=no; AC_MSG_RESULT(no)]) |
| 696 | LDFLAGS=$save_LDFLAGS |
| 697 | AM_CONDITIONAL(HAVE_LD_VERSION_SCRIPT, test "$have_ld_version_script" = "yes") |
| 698 | |
| 699 | dnl |
Jonathan Gray | 635477d | 2014-09-02 02:08:00 +1000 | [diff] [blame] | 700 | dnl Check if linker supports dynamic list files |
| 701 | dnl |
| 702 | AC_MSG_CHECKING([if the linker supports --dynamic-list]) |
| 703 | save_LDFLAGS=$LDFLAGS |
Dylan Baker | e4796ab | 2017-09-30 12:14:02 -0700 | [diff] [blame] | 704 | LDFLAGS="$LDFLAGS -Wl,--dynamic-list=$srcdir/build-support/conftest.dyn" |
Jonathan Gray | 635477d | 2014-09-02 02:08:00 +1000 | [diff] [blame] | 705 | AC_LINK_IFELSE( |
| 706 | [AC_LANG_SOURCE([int main() { return 0;}])], |
| 707 | [have_ld_dynamic_list=yes;AC_MSG_RESULT(yes)], |
| 708 | [have_ld_dynamic_list=no; AC_MSG_RESULT(no)]) |
| 709 | LDFLAGS=$save_LDFLAGS |
| 710 | AM_CONDITIONAL(HAVE_LD_DYNAMIC_LIST, test "$have_ld_dynamic_list" = "yes") |
| 711 | |
| 712 | dnl |
Jon Turney | f8ed9f2 | 2017-12-03 21:58:12 +0000 | [diff] [blame] | 713 | dnl OSX linker does not support build-id |
| 714 | dnl |
| 715 | case "$host_os" in |
| 716 | darwin*) |
| 717 | LD_BUILD_ID="" |
| 718 | ;; |
| 719 | *) |
| 720 | LD_BUILD_ID="-Wl,--build-id=sha1" |
| 721 | ;; |
| 722 | esac |
| 723 | AC_SUBST([LD_BUILD_ID]) |
| 724 | |
| 725 | dnl |
Emil Velikov | 22c1335 | 2014-03-09 11:50:44 +0000 | [diff] [blame] | 726 | dnl compatibility symlinks |
| 727 | dnl |
| 728 | case "$host_os" in |
| 729 | linux* ) |
| 730 | HAVE_COMPAT_SYMLINKS=yes ;; |
| 731 | * ) |
| 732 | HAVE_COMPAT_SYMLINKS=no ;; |
| 733 | esac |
| 734 | |
| 735 | AM_CONDITIONAL(HAVE_COMPAT_SYMLINKS, test "x$HAVE_COMPAT_SYMLINKS" = xyes) |
| 736 | |
| 737 | dnl |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 738 | dnl library names |
| 739 | dnl |
Jon TURNEY | adeba94 | 2015-09-04 14:00:19 +0100 | [diff] [blame] | 740 | dnl Unfortunately we need to do a few things that libtool can't help us with, |
| 741 | dnl so we need some knowledge of shared library filenames: |
| 742 | dnl |
| 743 | dnl LIB_EXT is the extension used when creating symlinks for alternate |
| 744 | dnl filenames for a shared library which will be dynamically loaded |
| 745 | dnl |
| 746 | dnl IMP_LIB_EXT is the extension used when checking for the presence of a |
| 747 | dnl the file for a shared library we wish to link with |
| 748 | dnl |
Emil Velikov | a6efbac | 2014-03-11 11:50:37 +0000 | [diff] [blame] | 749 | case "$host_os" in |
| 750 | darwin* ) |
Jon TURNEY | adeba94 | 2015-09-04 14:00:19 +0100 | [diff] [blame] | 751 | LIB_EXT='dylib' |
| 752 | IMP_LIB_EXT=$LIB_EXT |
| 753 | ;; |
Emil Velikov | a6efbac | 2014-03-11 11:50:37 +0000 | [diff] [blame] | 754 | cygwin* ) |
Jon TURNEY | adeba94 | 2015-09-04 14:00:19 +0100 | [diff] [blame] | 755 | LIB_EXT='dll' |
| 756 | IMP_LIB_EXT='dll.a' |
| 757 | ;; |
Emil Velikov | a6efbac | 2014-03-11 11:50:37 +0000 | [diff] [blame] | 758 | aix* ) |
Jon TURNEY | adeba94 | 2015-09-04 14:00:19 +0100 | [diff] [blame] | 759 | LIB_EXT='a' |
| 760 | IMP_LIB_EXT=$LIB_EXT |
| 761 | ;; |
Emil Velikov | a6efbac | 2014-03-11 11:50:37 +0000 | [diff] [blame] | 762 | * ) |
Jon TURNEY | adeba94 | 2015-09-04 14:00:19 +0100 | [diff] [blame] | 763 | LIB_EXT='so' |
| 764 | IMP_LIB_EXT=$LIB_EXT |
| 765 | ;; |
Emil Velikov | a6efbac | 2014-03-11 11:50:37 +0000 | [diff] [blame] | 766 | esac |
Emil Velikov | bba9c28 | 2014-03-08 19:48:04 +0000 | [diff] [blame] | 767 | |
| 768 | AC_SUBST([LIB_EXT]) |
| 769 | |
Tom Fogal | c0573fb | 2011-10-10 10:33:18 -0600 | [diff] [blame] | 770 | dnl |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 771 | dnl Arch/platform-specific settings |
| 772 | dnl |
| 773 | AC_ARG_ENABLE([asm], |
| 774 | [AS_HELP_STRING([--disable-asm], |
Vinson Lee | b81d85f | 2017-04-20 14:48:50 -0700 | [diff] [blame] | 775 | [disable assembly usage @<:@default=enabled on supported platforms@:>@])], |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 776 | [enable_asm="$enableval"], |
| 777 | [enable_asm=yes] |
| 778 | ) |
| 779 | asm_arch="" |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 780 | AC_MSG_CHECKING([whether to enable assembly]) |
| 781 | test "x$enable_asm" = xno && AC_MSG_RESULT([no]) |
| 782 | # disable if cross compiling on x86/x86_64 since we must run gen_matypes |
Matt Turner | 585e250 | 2014-09-21 13:22:28 -0700 | [diff] [blame] | 783 | if test "x$enable_asm" = xyes -a "x$cross_compiling" = xyes; then |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 784 | case "$host_cpu" in |
Jean-Sébastien Pédron | 148f0de | 2013-06-05 13:27:37 +0200 | [diff] [blame] | 785 | i?86 | x86_64 | amd64) |
Dongwon Kim | 49eb5e7 | 2016-02-16 10:05:24 -0800 | [diff] [blame] | 786 | if test "x$host_cpu" != "x$target_cpu"; then |
| 787 | enable_asm=no |
| 788 | AC_MSG_RESULT([no, cross compiling]) |
| 789 | fi |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 790 | ;; |
| 791 | esac |
| 792 | fi |
| 793 | # check for supported arches |
| 794 | if test "x$enable_asm" = xyes; then |
| 795 | case "$host_cpu" in |
| 796 | i?86) |
| 797 | case "$host_os" in |
Emil Velikov | 395ce0b | 2014-08-13 18:05:56 +0100 | [diff] [blame] | 798 | linux* | *freebsd* | dragonfly* | *netbsd* | openbsd* | gnu*) |
Andreas Boll | 06fff29 | 2013-03-16 13:50:19 +0100 | [diff] [blame] | 799 | asm_arch=x86 |
| 800 | ;; |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 801 | esac |
| 802 | ;; |
Jean-Sébastien Pédron | 148f0de | 2013-06-05 13:27:37 +0200 | [diff] [blame] | 803 | x86_64|amd64) |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 804 | case "$host_os" in |
Jonathan Gray | 78fbb41 | 2013-06-26 17:11:57 +1000 | [diff] [blame] | 805 | linux* | *freebsd* | dragonfly* | *netbsd* | openbsd*) |
Emil Velikov | 395ce0b | 2014-08-13 18:05:56 +0100 | [diff] [blame] | 806 | asm_arch=x86_64 |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 807 | ;; |
| 808 | esac |
| 809 | ;; |
David S. Miller | 857ac1e | 2009-02-26 05:35:15 -0800 | [diff] [blame] | 810 | sparc*) |
| 811 | case "$host_os" in |
| 812 | linux*) |
| 813 | asm_arch=sparc |
| 814 | ;; |
| 815 | esac |
| 816 | ;; |
Ben Crocker | c26be2b | 2017-06-02 19:37:55 -0400 | [diff] [blame] | 817 | powerpc64le) |
| 818 | case "$host_os" in |
| 819 | linux*) |
| 820 | asm_arch=ppc64le |
| 821 | ;; |
| 822 | esac |
| 823 | ;; |
Eric Anholt | ba8533b | 2017-07-31 15:15:14 -0700 | [diff] [blame] | 824 | aarch64) |
| 825 | case "$host_os" in |
| 826 | linux*) |
| 827 | asm_arch=aarch64 |
| 828 | ;; |
| 829 | esac |
| 830 | ;; |
| 831 | arm) |
| 832 | case "$host_os" in |
| 833 | linux*) |
| 834 | asm_arch=arm |
| 835 | ;; |
| 836 | esac |
| 837 | ;; |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 838 | esac |
| 839 | |
| 840 | case "$asm_arch" in |
| 841 | x86) |
Eric Anholt | e426949 | 2012-06-11 10:25:05 -0700 | [diff] [blame] | 842 | DEFINES="$DEFINES -DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM" |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 843 | AC_MSG_RESULT([yes, x86]) |
| 844 | ;; |
Jean-Sébastien Pédron | 148f0de | 2013-06-05 13:27:37 +0200 | [diff] [blame] | 845 | x86_64|amd64) |
Eric Anholt | e426949 | 2012-06-11 10:25:05 -0700 | [diff] [blame] | 846 | DEFINES="$DEFINES -DUSE_X86_64_ASM" |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 847 | AC_MSG_RESULT([yes, x86_64]) |
| 848 | ;; |
David S. Miller | 857ac1e | 2009-02-26 05:35:15 -0800 | [diff] [blame] | 849 | sparc) |
Eric Anholt | e426949 | 2012-06-11 10:25:05 -0700 | [diff] [blame] | 850 | DEFINES="$DEFINES -DUSE_SPARC_ASM" |
David S. Miller | 857ac1e | 2009-02-26 05:35:15 -0800 | [diff] [blame] | 851 | AC_MSG_RESULT([yes, sparc]) |
| 852 | ;; |
Ben Crocker | c26be2b | 2017-06-02 19:37:55 -0400 | [diff] [blame] | 853 | ppc64le) |
| 854 | DEFINES="$DEFINES -DUSE_PPC64LE_ASM" |
| 855 | AC_MSG_RESULT([yes, ppc64le]) |
| 856 | ;; |
Eric Anholt | ba8533b | 2017-07-31 15:15:14 -0700 | [diff] [blame] | 857 | aarch64) |
| 858 | DEFINES="$DEFINES -DUSE_AARCH64_ASM" |
| 859 | AC_MSG_RESULT([yes, aarch64]) |
| 860 | ;; |
| 861 | arm) |
| 862 | DEFINES="$DEFINES -DUSE_ARM_ASM" |
| 863 | AC_MSG_RESULT([yes, arm]) |
| 864 | ;; |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 865 | *) |
| 866 | AC_MSG_RESULT([no, platform not supported]) |
| 867 | ;; |
| 868 | esac |
| 869 | fi |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 870 | |
Matt Turner | 20553e4 | 2016-07-21 11:46:23 -0700 | [diff] [blame] | 871 | AC_HEADER_MAJOR |
Chia-I Wu | b039dbf | 2014-08-20 14:40:23 +0800 | [diff] [blame] | 872 | AC_CHECK_HEADER([xlocale.h], [DEFINES="$DEFINES -DHAVE_XLOCALE_H"]) |
Alan Coopersmith | 31cd2d7 | 2015-05-15 19:05:45 -0700 | [diff] [blame] | 873 | AC_CHECK_HEADER([sys/sysctl.h], [DEFINES="$DEFINES -DHAVE_SYS_SYSCTL_H"]) |
Emil Velikov | 5a75019 | 2018-03-23 17:37:39 +0000 | [diff] [blame] | 874 | AC_CHECK_HEADERS([endian.h]) |
Bas Nieuwenhuizen | cc10b34 | 2018-07-18 13:58:49 +0200 | [diff] [blame] | 875 | AC_CHECK_HEADER([dlfcn.h], [DEFINES="$DEFINES -DHAVE_DLFCN_H"]) |
Chia-I Wu | b039dbf | 2014-08-20 14:40:23 +0800 | [diff] [blame] | 876 | AC_CHECK_FUNC([strtof], [DEFINES="$DEFINES -DHAVE_STRTOF"]) |
Emil Velikov | eb3e256 | 2015-07-10 12:28:23 +0100 | [diff] [blame] | 877 | AC_CHECK_FUNC([mkostemp], [DEFINES="$DEFINES -DHAVE_MKOSTEMP"]) |
Nicolai Hähnle | 2e3d0dd | 2017-11-15 12:41:58 +0100 | [diff] [blame] | 878 | AC_CHECK_FUNC([timespec_get], [DEFINES="$DEFINES -DHAVE_TIMESPEC_GET"]) |
Vinson Lee | 8c1e4b1 | 2017-11-28 23:16:58 -0800 | [diff] [blame] | 879 | AC_CHECK_FUNC([memfd_create], [DEFINES="$DEFINES -DHAVE_MEMFD_CREATE"]) |
Chia-I Wu | b039dbf | 2014-08-20 14:40:23 +0800 | [diff] [blame] | 880 | |
Eric Engestrom | 49b4284 | 2017-08-31 16:55:56 +0000 | [diff] [blame] | 881 | AC_MSG_CHECKING([whether strtod has locale support]) |
| 882 | AC_LINK_IFELSE([AC_LANG_SOURCE([[ |
| 883 | #define _GNU_SOURCE |
| 884 | #include <stdlib.h> |
| 885 | #include <locale.h> |
| 886 | #ifdef HAVE_XLOCALE_H |
| 887 | #include <xlocale.h> |
| 888 | #endif |
| 889 | int main() { |
| 890 | locale_t loc = newlocale(LC_CTYPE_MASK, "C", NULL); |
| 891 | const char *s = "1.0"; |
| 892 | char *end; |
| 893 | double d = strtod_l(s, end, loc); |
| 894 | float f = strtof_l(s, end, loc); |
| 895 | freelocale(loc); |
| 896 | return 0; |
| 897 | }]])], |
| 898 | [DEFINES="$DEFINES -DHAVE_STRTOD_L"]; |
| 899 | AC_MSG_RESULT([yes]), |
| 900 | AC_MSG_RESULT([no])) |
| 901 | |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 902 | dnl Check to see if dlopen is in default libraries (like Solaris, which |
| 903 | dnl has it in libc), or if libdl is needed to get it. |
Matt Turner | 74b5568 | 2017-10-01 23:20:55 -0700 | [diff] [blame] | 904 | AC_CHECK_FUNC([dlopen], [], |
Tapani Pälli | 57c57df | 2012-08-16 13:59:12 +0300 | [diff] [blame] | 905 | [AC_CHECK_LIB([dl], [dlopen], |
Matt Turner | 74b5568 | 2017-10-01 23:20:55 -0700 | [diff] [blame] | 906 | [DLOPEN_LIBS="-ldl"])]) |
Chia-I Wu | 08f4bc0 | 2010-07-16 20:09:29 +0800 | [diff] [blame] | 907 | AC_SUBST([DLOPEN_LIBS]) |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 908 | |
Jon TURNEY | ec8ebff | 2014-04-05 17:11:45 +0100 | [diff] [blame] | 909 | dnl Check if that library also has dladdr |
Jon TURNEY | a2e1dc0 | 2014-08-08 20:13:18 +0100 | [diff] [blame] | 910 | save_LIBS="$LIBS" |
| 911 | LIBS="$LIBS $DLOPEN_LIBS" |
| 912 | AC_CHECK_FUNCS([dladdr]) |
| 913 | LIBS="$save_LIBS" |
Jon TURNEY | ec8ebff | 2014-04-05 17:11:45 +0100 | [diff] [blame] | 914 | |
Matt Turner | d4fa083 | 2017-02-14 07:29:56 -0800 | [diff] [blame] | 915 | AC_CHECK_FUNC([dl_iterate_phdr], [DEFINES="$DEFINES -DHAVE_DL_ITERATE_PHDR"]) |
| 916 | |
Vinson Lee | 990bd49 | 2013-01-26 22:50:05 -0800 | [diff] [blame] | 917 | case "$host_os" in |
Jose Fonseca | 8f0274c | 2015-03-19 13:38:52 +0000 | [diff] [blame] | 918 | darwin*) |
Vinson Lee | 990bd49 | 2013-01-26 22:50:05 -0800 | [diff] [blame] | 919 | ;; |
| 920 | *) |
| 921 | AC_CHECK_FUNCS([clock_gettime], [CLOCK_LIB=], |
| 922 | [AC_CHECK_LIB([rt], [clock_gettime], [CLOCK_LIB=-lrt], |
Matt Turner | 180e60d | 2014-06-10 18:08:10 -0700 | [diff] [blame] | 923 | [AC_MSG_ERROR([Could not find clock_gettime])])]) |
Vinson Lee | 990bd49 | 2013-01-26 22:50:05 -0800 | [diff] [blame] | 924 | AC_SUBST([CLOCK_LIB]) |
| 925 | ;; |
| 926 | esac |
Dave Airlie | ec83535 | 2012-12-04 09:25:13 +1000 | [diff] [blame] | 927 | |
Dan Nicholson | 985e1cd | 2008-06-04 13:17:06 -0700 | [diff] [blame] | 928 | dnl See if posix_memalign is available |
| 929 | AC_CHECK_FUNC([posix_memalign], [DEFINES="$DEFINES -DHAVE_POSIX_MEMALIGN"]) |
| 930 | |
Timothy Arceri | 85a9b1b | 2017-03-01 16:04:23 +1100 | [diff] [blame] | 931 | dnl Check for zlib |
| 932 | PKG_CHECK_MODULES([ZLIB], [zlib >= $ZLIB_REQUIRED]) |
Grazvydas Ignotas | 87f7234 | 2017-12-29 01:29:10 +0200 | [diff] [blame] | 933 | DEFINES="$DEFINES -DHAVE_ZLIB" |
Timothy Arceri | 85a9b1b | 2017-03-01 16:04:23 +1100 | [diff] [blame] | 934 | |
Matt Turner | 7da1242 | 2012-09-18 20:21:47 -0700 | [diff] [blame] | 935 | dnl Check for pthreads |
Jose Fonseca | 8f0274c | 2015-03-19 13:38:52 +0000 | [diff] [blame] | 936 | AX_PTHREAD |
| 937 | if test "x$ax_pthread_ok" = xno; then |
| 938 | AC_MSG_ERROR([Building mesa on this platform requires pthreads]) |
| 939 | fi |
Matt Turner | dd4fde8 | 2012-09-27 15:49:52 -0700 | [diff] [blame] | 940 | dnl AX_PTHREADS leaves PTHREAD_LIBS empty for gcc and sets PTHREAD_CFLAGS |
| 941 | dnl to -pthread, which causes problems if we need -lpthread to appear in |
Gurchetan Singh | e23608d | 2016-10-27 09:06:42 -0700 | [diff] [blame] | 942 | dnl pkgconfig files. Since Android doesn't have a pthread lib, this check |
| 943 | dnl is not valid for that platform. |
| 944 | if test "x$android" = xno; then |
| 945 | test -z "$PTHREAD_LIBS" && PTHREAD_LIBS="-lpthread" |
| 946 | fi |
Emil Velikov | e5aa806 | 2017-06-05 00:03:59 +0100 | [diff] [blame] | 947 | dnl According to the manual when using pthreads, one should add -pthread to |
| 948 | dnl both compile and link-time arguments. |
| 949 | dnl In practise that should be sufficient for all platforms, since any |
| 950 | dnl platforms build with GCC and Clang support the flag. |
| 951 | PTHREAD_LIBS="$PTHREAD_LIBS -pthread" |
Matt Turner | 7da1242 | 2012-09-18 20:21:47 -0700 | [diff] [blame] | 952 | |
Jonathan Gray | 9401d90 | 2018-02-20 17:38:00 +1100 | [diff] [blame] | 953 | dnl pthread-stubs is mandatory on some BSD platforms, due to the nature of the |
Emil Velikov | b82bd31 | 2017-03-02 19:02:44 +0000 | [diff] [blame] | 954 | dnl project. Even then there's a notable issue as described in the project README |
Jon Turney | 7d8edba | 2016-06-07 14:22:31 +0000 | [diff] [blame] | 955 | case "$host_os" in |
Jonathan Gray | 9401d90 | 2018-02-20 17:38:00 +1100 | [diff] [blame] | 956 | linux* | cygwin* | darwin* | solaris* | *-gnu* | gnu* | openbsd*) |
Jon Turney | 7d8edba | 2016-06-07 14:22:31 +0000 | [diff] [blame] | 957 | pthread_stubs_possible="no" |
| 958 | ;; |
| 959 | * ) |
| 960 | pthread_stubs_possible="yes" |
| 961 | ;; |
| 962 | esac |
| 963 | |
| 964 | if test "x$pthread_stubs_possible" = xyes; then |
Emil Velikov | 8a5680f | 2017-03-02 19:02:45 +0000 | [diff] [blame] | 965 | PKG_CHECK_MODULES(PTHREADSTUBS, pthread-stubs >= 0.4) |
Jon Turney | 7d8edba | 2016-06-07 14:22:31 +0000 | [diff] [blame] | 966 | fi |
Rob Herring | 1f4869a | 2016-05-03 21:02:46 -0500 | [diff] [blame] | 967 | |
Timothy Arceri | f98a276 | 2017-10-16 18:06:49 +1100 | [diff] [blame] | 968 | dnl Check for futex for fast inline simple_mtx_t. |
| 969 | AC_CHECK_HEADER([linux/futex.h], [DEFINES="$DEFINES -DHAVE_LINUX_FUTEX_H"]) |
| 970 | |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 971 | dnl SELinux awareness. |
| 972 | AC_ARG_ENABLE([selinux], |
| 973 | [AS_HELP_STRING([--enable-selinux], |
| 974 | [Build SELinux-aware Mesa @<:@default=disabled@:>@])], |
| 975 | [MESA_SELINUX="$enableval"], |
| 976 | [MESA_SELINUX=no]) |
| 977 | if test "x$enable_selinux" = "xyes"; then |
Kusanagi Kouichi | 6ba4392 | 2014-02-15 11:53:00 +0900 | [diff] [blame] | 978 | PKG_CHECK_MODULES([SELINUX], [libselinux], [], |
| 979 | [AC_CHECK_HEADER([selinux/selinux.h],[], |
| 980 | [AC_MSG_ERROR([SELinux headers not found])]) |
| 981 | AC_CHECK_LIB([selinux],[is_selinux_enabled],[], |
| 982 | [AC_MSG_ERROR([SELinux library not found])]) |
| 983 | SELINUX_LIBS="-lselinux"]) |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 984 | DEFINES="$DEFINES -DMESA_SELINUX" |
| 985 | fi |
Kusanagi Kouichi | 6ba4392 | 2014-02-15 11:53:00 +0900 | [diff] [blame] | 986 | AC_SUBST([SELINUX_CFLAGS]) |
Matt Turner | 9ed0007 | 2012-09-18 20:22:37 -0700 | [diff] [blame] | 987 | AC_SUBST([SELINUX_LIBS]) |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 988 | |
Tobias Droste | 352831c | 2016-11-19 02:38:54 +0100 | [diff] [blame] | 989 | dnl |
| 990 | dnl LLVM |
| 991 | dnl |
Tobias Droste | 0cc4ffd | 2016-11-19 02:38:58 +0100 | [diff] [blame] | 992 | AC_ARG_ENABLE([llvm-shared-libs], |
| 993 | [AS_HELP_STRING([--enable-llvm-shared-libs], |
| 994 | [link with LLVM shared libraries @<:@default=enabled@:>@])], |
| 995 | [enable_llvm_shared_libs="$enableval"], |
| 996 | [enable_llvm_shared_libs=yes]) |
| 997 | |
| 998 | AC_ARG_WITH([llvm-prefix], |
| 999 | [AS_HELP_STRING([--with-llvm-prefix], |
| 1000 | [Prefix for LLVM installations in non-standard locations])], |
| 1001 | [llvm_prefix="$withval"], |
| 1002 | [llvm_prefix='']) |
| 1003 | |
| 1004 | PKG_CHECK_MODULES([LIBELF], [libelf], [have_libelf=yes], [have_libelf=no]) |
| 1005 | if test "x$have_libelf" = xno; then |
| 1006 | LIBELF_LIBS='' |
| 1007 | LIBELF_CFLAGS='' |
| 1008 | AC_CHECK_LIB([elf], [elf_memory], [have_libelf=yes;LIBELF_LIBS=-lelf], [have_libelf=no]) |
| 1009 | AC_SUBST([LIBELF_LIBS]) |
| 1010 | AC_SUBST([LIBELF_CFLAGS]) |
| 1011 | fi |
| 1012 | |
Tobias Droste | 8c98e27 | 2016-11-19 02:38:59 +0100 | [diff] [blame] | 1013 | if test -z "$LLVM_CONFIG"; then |
| 1014 | if test -n "$llvm_prefix"; then |
| 1015 | AC_PATH_TOOL([LLVM_CONFIG], [llvm-config], [no], ["$llvm_prefix/bin"]) |
| 1016 | else |
| 1017 | AC_PATH_TOOL([LLVM_CONFIG], [llvm-config], [no]) |
| 1018 | fi |
| 1019 | fi |
| 1020 | |
Tobias Droste | 352831c | 2016-11-19 02:38:54 +0100 | [diff] [blame] | 1021 | llvm_add_component() { |
| 1022 | new_llvm_component=$1 |
| 1023 | driver_name=$2 |
| 1024 | |
Tobias Droste | 45c8a4e | 2016-11-19 02:39:09 +0100 | [diff] [blame] | 1025 | if $LLVM_CONFIG --components | grep -iqw $new_llvm_component ; then |
| 1026 | LLVM_COMPONENTS="${LLVM_COMPONENTS} ${new_llvm_component}" |
| 1027 | else |
| 1028 | AC_MSG_ERROR([LLVM component '$new_llvm_component' not enabled in your LLVM build. Required by $driver_name.]) |
| 1029 | fi |
Tobias Droste | 352831c | 2016-11-19 02:38:54 +0100 | [diff] [blame] | 1030 | } |
| 1031 | |
Emil Velikov | 36d6d1e | 2017-10-05 11:19:07 +0100 | [diff] [blame] | 1032 | llvm_add_optional_component() { |
| 1033 | new_llvm_component=$1 |
| 1034 | driver_name=$2 |
| 1035 | |
| 1036 | if $LLVM_CONFIG --components | grep -iqw $new_llvm_component ; then |
| 1037 | LLVM_COMPONENTS="${LLVM_COMPONENTS} ${new_llvm_component}" |
| 1038 | fi |
| 1039 | } |
| 1040 | |
Tobias Droste | 352831c | 2016-11-19 02:38:54 +0100 | [diff] [blame] | 1041 | llvm_add_default_components() { |
| 1042 | driver_name=$1 |
| 1043 | |
| 1044 | # Required default components |
| 1045 | llvm_add_component "bitwriter" $driver_name |
| 1046 | llvm_add_component "engine" $driver_name |
| 1047 | llvm_add_component "mcdisassembler" $driver_name |
| 1048 | llvm_add_component "mcjit" $driver_name |
| 1049 | |
| 1050 | # Optional default components |
Emil Velikov | 36d6d1e | 2017-10-05 11:19:07 +0100 | [diff] [blame] | 1051 | llvm_add_optional_component "inteljitevents" $driver_name |
Tobias Droste | 352831c | 2016-11-19 02:38:54 +0100 | [diff] [blame] | 1052 | } |
| 1053 | |
| 1054 | llvm_add_target() { |
| 1055 | new_llvm_target=$1 |
| 1056 | driver_name=$2 |
| 1057 | |
| 1058 | if $LLVM_CONFIG --targets-built | grep -iqw $new_llvm_target ; then |
| 1059 | llvm_add_component $new_llvm_target $driver_name |
| 1060 | else |
| 1061 | AC_MSG_ERROR([LLVM target '$new_llvm_target' not enabled in your LLVM build. Required by $driver_name.]) |
| 1062 | fi |
| 1063 | } |
| 1064 | |
Tobias Droste | 0cc4ffd | 2016-11-19 02:38:58 +0100 | [diff] [blame] | 1065 | # Call this inside ` ` to get the return value. |
| 1066 | # $1 is the llvm-config command with arguments. |
| 1067 | strip_unwanted_llvm_flags() { |
Vinson Lee | 62c48cc | 2017-03-16 15:26:18 -0700 | [diff] [blame] | 1068 | echo " `$1` " | sed -E \ |
Jan Beich | fe56c74 | 2017-03-12 03:19:14 +0000 | [diff] [blame] | 1069 | -e 's/[[[:space:]]]+-m[[^[:space:]]]*//g' \ |
Vinson Lee | bd6f0dc | 2017-03-22 00:27:15 -0700 | [diff] [blame] | 1070 | -e 's/[[[:space:]]]+-DNDEBUG[[[:space:]]]/ /g' \ |
| 1071 | -e 's/[[[:space:]]]+-D_GNU_SOURCE[[[:space:]]]/ /g' \ |
| 1072 | -e 's/[[[:space:]]]+-pedantic[[[:space:]]]/ /g' \ |
Jan Beich | fe56c74 | 2017-03-12 03:19:14 +0000 | [diff] [blame] | 1073 | -e 's/[[[:space:]]]+-W[[^[:space:]]]*//g' \ |
| 1074 | -e 's/[[[:space:]]]+-O[[^[:space:]]]*//g' \ |
| 1075 | -e 's/[[[:space:]]]+-g[[^[:space:]]]*//g' \ |
Vinson Lee | 62c48cc | 2017-03-16 15:26:18 -0700 | [diff] [blame] | 1076 | -e 's/-fno-rtti[[[:space:]]]/-Fno-rtti /g' \ |
Jan Beich | fe56c74 | 2017-03-12 03:19:14 +0000 | [diff] [blame] | 1077 | -e 's/[[[:space:]]]+-f[[^[:space:]]]*//g' \ |
Vinson Lee | 62c48cc | 2017-03-16 15:26:18 -0700 | [diff] [blame] | 1078 | -e 's/-Fno-rtti[[[:space:]]]/-fno-rtti /g' \ |
| 1079 | -e 's/^[[[:space:]]]//' \ |
| 1080 | -e 's/[[[:space:]]]$//' |
Tobias Droste | 0cc4ffd | 2016-11-19 02:38:58 +0100 | [diff] [blame] | 1081 | } |
| 1082 | |
Tobias Droste | bf4b0fc | 2016-11-19 02:38:57 +0100 | [diff] [blame] | 1083 | llvm_set_environment_variables() { |
Tobias Droste | bf4b0fc | 2016-11-19 02:38:57 +0100 | [diff] [blame] | 1084 | if test "x$LLVM_CONFIG" != xno; then |
| 1085 | LLVM_VERSION=`$LLVM_CONFIG --version | egrep -o '^[[0-9.]]+'` |
Tobias Droste | bf4b0fc | 2016-11-19 02:38:57 +0100 | [diff] [blame] | 1086 | LLVM_CPPFLAGS=`strip_unwanted_llvm_flags "$LLVM_CONFIG --cppflags"` |
Tobias Droste | bf4b0fc | 2016-11-19 02:38:57 +0100 | [diff] [blame] | 1087 | LLVM_INCLUDEDIR=`$LLVM_CONFIG --includedir` |
| 1088 | LLVM_LIBDIR=`$LLVM_CONFIG --libdir` |
| 1089 | |
Emil Velikov | 4d8bb9c | 2017-01-18 13:54:02 +0000 | [diff] [blame] | 1090 | # We need to respect LLVM_CPPFLAGS when compiling LLVM headers. |
Tomasz Figa | 2d14ae6 | 2016-12-14 17:00:27 +0900 | [diff] [blame] | 1091 | save_CFLAGS="$CFLAGS" |
Emil Velikov | 4d8bb9c | 2017-01-18 13:54:02 +0000 | [diff] [blame] | 1092 | CFLAGS="$CFLAGS $LLVM_CPPFLAGS" |
Tomasz Figa | 2d14ae6 | 2016-12-14 17:00:27 +0900 | [diff] [blame] | 1093 | |
Tobias Droste | bf4b0fc | 2016-11-19 02:38:57 +0100 | [diff] [blame] | 1094 | AC_COMPUTE_INT([LLVM_VERSION_MAJOR], [LLVM_VERSION_MAJOR], |
| 1095 | [#include "${LLVM_INCLUDEDIR}/llvm/Config/llvm-config.h"]) |
| 1096 | AC_COMPUTE_INT([LLVM_VERSION_MINOR], [LLVM_VERSION_MINOR], |
| 1097 | [#include "${LLVM_INCLUDEDIR}/llvm/Config/llvm-config.h"]) |
Tobias Droste | a66cd76 | 2016-11-19 02:39:11 +0100 | [diff] [blame] | 1098 | AC_COMPUTE_INT([LLVM_VERSION_PATCH], [LLVM_VERSION_PATCH], |
| 1099 | [#include "${LLVM_INCLUDEDIR}/llvm/Config/llvm-config.h"]) |
Tobias Droste | bf4b0fc | 2016-11-19 02:38:57 +0100 | [diff] [blame] | 1100 | |
Tomasz Figa | 2d14ae6 | 2016-12-14 17:00:27 +0900 | [diff] [blame] | 1101 | CFLAGS="$save_CFLAGS" |
| 1102 | |
Tobias Droste | a66cd76 | 2016-11-19 02:39:11 +0100 | [diff] [blame] | 1103 | # Only needed for LLVM < 3.6.0 |
Tobias Droste | bf4b0fc | 2016-11-19 02:38:57 +0100 | [diff] [blame] | 1104 | if test -z "$LLVM_VERSION_PATCH"; then |
| 1105 | LLVM_VERSION_PATCH=0 |
| 1106 | fi |
| 1107 | |
Emil Velikov | fc30992 | 2017-01-18 13:54:01 +0000 | [diff] [blame] | 1108 | LLVM_VERSION_INT="${LLVM_VERSION_MAJOR}0${LLVM_VERSION_MINOR}" |
Tobias Droste | bf4b0fc | 2016-11-19 02:38:57 +0100 | [diff] [blame] | 1109 | |
Tobias Droste | 04377cb | 2017-01-28 14:56:57 +0100 | [diff] [blame] | 1110 | FOUND_LLVM=yes |
Tobias Droste | bf4b0fc | 2016-11-19 02:38:57 +0100 | [diff] [blame] | 1111 | else |
Tobias Droste | 04377cb | 2017-01-28 14:56:57 +0100 | [diff] [blame] | 1112 | FOUND_LLVM=no |
Tobias Droste | bf4b0fc | 2016-11-19 02:38:57 +0100 | [diff] [blame] | 1113 | LLVM_VERSION_INT=0 |
| 1114 | fi |
| 1115 | } |
| 1116 | |
Emil Velikov | 514a494 | 2017-02-07 16:13:07 +0000 | [diff] [blame] | 1117 | require_llvm() { |
Emil Velikov | b3b4156 | 2017-02-07 15:53:14 +0000 | [diff] [blame] | 1118 | if test "x$enable_llvm" != "xyes"; then |
| 1119 | AC_MSG_ERROR([--enable-llvm is required when building $1]) |
Emil Velikov | 514a494 | 2017-02-07 16:13:07 +0000 | [diff] [blame] | 1120 | fi |
| 1121 | } |
| 1122 | |
Emil Velikov | a66ffcd | 2017-02-07 16:24:44 +0000 | [diff] [blame] | 1123 | llvm_require_version() { |
Emil Velikov | a66ffcd | 2017-02-07 16:24:44 +0000 | [diff] [blame] | 1124 | require_llvm $2 |
Tobias Droste | 5db8953 | 2016-11-19 02:39:10 +0100 | [diff] [blame] | 1125 | |
| 1126 | llvm_target_version_major=`echo $1 | cut -d. -f1 | egrep -o '^[[0-9]]+'` |
| 1127 | llvm_target_version_minor=`echo $1 | cut -d. -f2 | egrep -o '^[[0-9]]+'` |
| 1128 | llvm_target_version_patch=`echo $1 | cut -d. -f3 | egrep -o '^[[0-9]]+'` |
| 1129 | |
| 1130 | if test "$LLVM_VERSION_MAJOR" -gt "$llvm_target_version_major"; then |
| 1131 | # major > required major |
| 1132 | # --> OK |
| 1133 | return |
| 1134 | fi |
| 1135 | |
| 1136 | if test "$LLVM_VERSION_MAJOR" -eq "$llvm_target_version_major"; then |
| 1137 | if test "$LLVM_VERSION_MINOR" -gt "$llvm_target_version_minor"; then |
| 1138 | # major = required major and |
| 1139 | # minor > required minor |
| 1140 | # --> OK |
| 1141 | return |
| 1142 | else |
| 1143 | if test "$LLVM_VERSION_MINOR" -eq "$llvm_target_version_minor"; then |
| 1144 | if test "$LLVM_VERSION_PATCH" -ge "$llvm_target_version_patch"; then |
| 1145 | # major = required major and |
| 1146 | # minor = required minor and |
| 1147 | # patch >= required patch |
| 1148 | # --> OK |
| 1149 | return |
| 1150 | fi |
| 1151 | fi |
| 1152 | fi |
| 1153 | fi |
| 1154 | |
| 1155 | AC_MSG_ERROR([LLVM $1 or newer is required for $2]) |
Tobias Droste | 0cc4ffd | 2016-11-19 02:38:58 +0100 | [diff] [blame] | 1156 | } |
| 1157 | |
| 1158 | radeon_llvm_check() { |
| 1159 | if test ${LLVM_VERSION_INT} -lt 307; then |
| 1160 | amdgpu_llvm_target_name='r600' |
| 1161 | else |
| 1162 | amdgpu_llvm_target_name='amdgpu' |
| 1163 | fi |
| 1164 | |
Emil Velikov | a66ffcd | 2017-02-07 16:24:44 +0000 | [diff] [blame] | 1165 | llvm_require_version $* |
Tobias Droste | 0cc4ffd | 2016-11-19 02:38:58 +0100 | [diff] [blame] | 1166 | |
Tobias Droste | 5db8953 | 2016-11-19 02:39:10 +0100 | [diff] [blame] | 1167 | llvm_add_target $amdgpu_llvm_target_name $2 |
Tobias Droste | 0cc4ffd | 2016-11-19 02:38:58 +0100 | [diff] [blame] | 1168 | |
Tobias Droste | 5db8953 | 2016-11-19 02:39:10 +0100 | [diff] [blame] | 1169 | llvm_add_default_components $2 |
| 1170 | llvm_add_component "bitreader" $2 |
| 1171 | llvm_add_component "ipo" $2 |
Tobias Droste | 0cc4ffd | 2016-11-19 02:38:58 +0100 | [diff] [blame] | 1172 | |
Tobias Droste | 0cc4ffd | 2016-11-19 02:38:58 +0100 | [diff] [blame] | 1173 | if test "x$have_libelf" != xyes; then |
Matt Turner | f73903f | 2017-03-06 09:17:19 -0800 | [diff] [blame] | 1174 | AC_MSG_ERROR([$2 requires libelf when using llvm]) |
Tobias Droste | 0cc4ffd | 2016-11-19 02:38:58 +0100 | [diff] [blame] | 1175 | fi |
| 1176 | } |
| 1177 | |
Tobias Droste | c702369 | 2016-11-19 02:39:06 +0100 | [diff] [blame] | 1178 | llvm_set_environment_variables |
| 1179 | |
Tobias Droste | c702369 | 2016-11-19 02:39:06 +0100 | [diff] [blame] | 1180 | AC_SUBST([LLVM_CFLAGS]) |
Tobias Droste | c702369 | 2016-11-19 02:39:06 +0100 | [diff] [blame] | 1181 | AC_SUBST([LLVM_CXXFLAGS]) |
Tobias Droste | c702369 | 2016-11-19 02:39:06 +0100 | [diff] [blame] | 1182 | AC_SUBST([LLVM_LIBS]) |
| 1183 | AC_SUBST([LLVM_LDFLAGS]) |
| 1184 | AC_SUBST([LLVM_INCLUDEDIR]) |
Tobias Droste | c702369 | 2016-11-19 02:39:06 +0100 | [diff] [blame] | 1185 | |
Rob Clark | 70c2720 | 2017-03-24 16:07:03 -0400 | [diff] [blame] | 1186 | dnl |
| 1187 | dnl libunwind |
| 1188 | dnl |
Eric Engestrom | 845d079 | 2017-06-01 15:06:57 +0100 | [diff] [blame] | 1189 | PKG_CHECK_EXISTS(libunwind, [HAVE_LIBUNWIND=yes], [HAVE_LIBUNWIND=no]) |
Rob Clark | 70c2720 | 2017-03-24 16:07:03 -0400 | [diff] [blame] | 1190 | AC_ARG_ENABLE([libunwind], |
| 1191 | [AS_HELP_STRING([--enable-libunwind], |
| 1192 | [Use libunwind for backtracing (default: auto)])], |
| 1193 | [LIBUNWIND="$enableval"], |
Eric Engestrom | 845d079 | 2017-06-01 15:06:57 +0100 | [diff] [blame] | 1194 | [LIBUNWIND="$HAVE_LIBUNWIND"]) |
Rob Clark | 70c2720 | 2017-03-24 16:07:03 -0400 | [diff] [blame] | 1195 | |
| 1196 | if test "x$LIBUNWIND" = "xyes"; then |
Emil Velikov | 3bcef6a | 2017-04-13 19:47:17 +0100 | [diff] [blame] | 1197 | PKG_CHECK_MODULES(LIBUNWIND, libunwind) |
Rob Clark | 70c2720 | 2017-03-24 16:07:03 -0400 | [diff] [blame] | 1198 | AC_DEFINE(HAVE_LIBUNWIND, 1, [Have libunwind support]) |
| 1199 | fi |
| 1200 | |
Rob Clark | 70c2720 | 2017-03-24 16:07:03 -0400 | [diff] [blame] | 1201 | |
Marek Olšák | 440d71d | 2011-06-14 05:38:58 +0200 | [diff] [blame] | 1202 | dnl Options for APIs |
Chia-I Wu | be5f34a | 2010-10-27 16:14:27 +0800 | [diff] [blame] | 1203 | AC_ARG_ENABLE([opengl], |
| 1204 | [AS_HELP_STRING([--disable-opengl], |
Emil Velikov | a662fa9 | 2014-09-22 18:58:19 +0100 | [diff] [blame] | 1205 | [disable support for standard OpenGL API @<:@default=enabled@:>@])], |
Chia-I Wu | be5f34a | 2010-10-27 16:14:27 +0800 | [diff] [blame] | 1206 | [enable_opengl="$enableval"], |
| 1207 | [enable_opengl=yes]) |
| 1208 | AC_ARG_ENABLE([gles1], |
Marek Olšák | dd04854 | 2015-05-26 12:47:03 +0200 | [diff] [blame] | 1209 | [AS_HELP_STRING([--disable-gles1], |
| 1210 | [disable support for OpenGL ES 1.x API @<:@default=enabled@:>@])], |
Chia-I Wu | be5f34a | 2010-10-27 16:14:27 +0800 | [diff] [blame] | 1211 | [enable_gles1="$enableval"], |
Marek Olšák | dd04854 | 2015-05-26 12:47:03 +0200 | [diff] [blame] | 1212 | [enable_gles1=yes]) |
Chia-I Wu | be5f34a | 2010-10-27 16:14:27 +0800 | [diff] [blame] | 1213 | AC_ARG_ENABLE([gles2], |
Marek Olšák | dd04854 | 2015-05-26 12:47:03 +0200 | [diff] [blame] | 1214 | [AS_HELP_STRING([--disable-gles2], |
| 1215 | [disable support for OpenGL ES 2.x API @<:@default=enabled@:>@])], |
Chia-I Wu | be5f34a | 2010-10-27 16:14:27 +0800 | [diff] [blame] | 1216 | [enable_gles2="$enableval"], |
Marek Olšák | dd04854 | 2015-05-26 12:47:03 +0200 | [diff] [blame] | 1217 | [enable_gles2=yes]) |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 1218 | |
| 1219 | AC_ARG_ENABLE([dri], |
| 1220 | [AS_HELP_STRING([--enable-dri], |
Matt Turner | 32e8ce6 | 2012-08-17 14:05:56 -0700 | [diff] [blame] | 1221 | [enable DRI modules @<:@default=enabled@:>@])], |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 1222 | [enable_dri="$enableval"], |
Matt Turner | 32e8ce6 | 2012-08-17 14:05:56 -0700 | [diff] [blame] | 1223 | [enable_dri=yes]) |
Emil Velikov | 23740ed | 2014-03-21 18:09:36 +0000 | [diff] [blame] | 1224 | |
Steven Toth | 8c60bcb | 2016-09-28 12:58:00 -0600 | [diff] [blame] | 1225 | AC_ARG_ENABLE([gallium-extra-hud], |
| 1226 | [AS_HELP_STRING([--enable-gallium-extra-hud], |
| 1227 | [enable HUD block/NIC I/O HUD stats support @<:@default=disabled@:>@])], |
| 1228 | [enable_gallium_extra_hud="$enableval"], |
| 1229 | [enable_gallium_extra_hud=no]) |
| 1230 | AM_CONDITIONAL(HAVE_GALLIUM_EXTRA_HUD, test "x$enable_gallium_extra_hud" = xyes) |
| 1231 | if test "x$enable_gallium_extra_hud" = xyes ; then |
| 1232 | DEFINES="${DEFINES} -DHAVE_GALLIUM_EXTRA_HUD=1" |
| 1233 | fi |
| 1234 | |
| 1235 | #TODO: no pkgconfig .pc available for libsensors. |
| 1236 | #PKG_CHECK_MODULES([LIBSENSORS], [libsensors >= $LIBSENSORS_REQUIRED], [enable_lmsensors=yes], [enable_lmsensors=no]) |
| 1237 | AC_ARG_ENABLE([lmsensors], |
| 1238 | [AS_HELP_STRING([--enable-lmsensors], |
| 1239 | [enable HUD lmsensor support @<:@default=disabled@:>@])], |
| 1240 | [enable_lmsensors="$enableval"], |
| 1241 | [enable_lmsensors=no]) |
| 1242 | AM_CONDITIONAL(HAVE_LIBSENSORS, test "x$enable_lmsensors" = xyes) |
| 1243 | if test "x$enable_lmsensors" = xyes ; then |
| 1244 | DEFINES="${DEFINES} -DHAVE_LIBSENSORS=1" |
Emil Velikov | 4380a20 | 2016-12-08 17:58:21 +0000 | [diff] [blame] | 1245 | LIBSENSORS_LIBS="-lsensors" |
Steven Toth | 8c60bcb | 2016-09-28 12:58:00 -0600 | [diff] [blame] | 1246 | else |
Emil Velikov | 4380a20 | 2016-12-08 17:58:21 +0000 | [diff] [blame] | 1247 | LIBSENSORS_LIBS="" |
Steven Toth | 8c60bcb | 2016-09-28 12:58:00 -0600 | [diff] [blame] | 1248 | fi |
Emil Velikov | 4380a20 | 2016-12-08 17:58:21 +0000 | [diff] [blame] | 1249 | AC_SUBST(LIBSENSORS_LIBS) |
Steven Toth | 8c60bcb | 2016-09-28 12:58:00 -0600 | [diff] [blame] | 1250 | |
Emil Velikov | 23740ed | 2014-03-21 18:09:36 +0000 | [diff] [blame] | 1251 | case "$host_os" in |
| 1252 | linux*) |
| 1253 | dri3_default=yes |
| 1254 | ;; |
| 1255 | *) |
| 1256 | dri3_default=no |
| 1257 | ;; |
| 1258 | esac |
Emil Velikov | b89d1b2 | 2015-11-22 22:05:01 +0000 | [diff] [blame] | 1259 | |
| 1260 | if test "x$enable_dri" = xno; then |
| 1261 | dri3_default=no |
| 1262 | fi |
| 1263 | |
Armin K | f0f202e | 2013-11-09 00:06:45 +0100 | [diff] [blame] | 1264 | AC_ARG_ENABLE([dri3], |
| 1265 | [AS_HELP_STRING([--enable-dri3], |
Emil Velikov | 23740ed | 2014-03-21 18:09:36 +0000 | [diff] [blame] | 1266 | [enable DRI3 @<:@default=auto@:>@])], |
Armin K | f0f202e | 2013-11-09 00:06:45 +0100 | [diff] [blame] | 1267 | [enable_dri3="$enableval"], |
Emil Velikov | 23740ed | 2014-03-21 18:09:36 +0000 | [diff] [blame] | 1268 | [enable_dri3="$dri3_default"]) |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 1269 | AC_ARG_ENABLE([glx], |
Chuck Atkins | a92910a | 2016-04-18 10:09:17 -0400 | [diff] [blame] | 1270 | [AS_HELP_STRING([--enable-glx@<:@=dri|xlib|gallium-xlib@:>@], |
| 1271 | [enable the GLX library and choose an implementation @<:@default=auto@:>@])], |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 1272 | [enable_glx="$enableval"], |
Matt Turner | 32e8ce6 | 2012-08-17 14:05:56 -0700 | [diff] [blame] | 1273 | [enable_glx=yes]) |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 1274 | AC_ARG_ENABLE([osmesa], |
| 1275 | [AS_HELP_STRING([--enable-osmesa], |
Matt Turner | 32e8ce6 | 2012-08-17 14:05:56 -0700 | [diff] [blame] | 1276 | [enable OSMesa library @<:@default=disabled@:>@])], |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 1277 | [enable_osmesa="$enableval"], |
Matt Turner | 32e8ce6 | 2012-08-17 14:05:56 -0700 | [diff] [blame] | 1278 | [enable_osmesa=no]) |
Matt Turner | 2f142d5 | 2013-08-20 14:16:17 -0700 | [diff] [blame] | 1279 | AC_ARG_ENABLE([gallium-osmesa], |
| 1280 | [AS_HELP_STRING([--enable-gallium-osmesa], |
| 1281 | [enable Gallium implementation of the OSMesa library @<:@default=disabled@:>@])], |
| 1282 | [enable_gallium_osmesa="$enableval"], |
| 1283 | [enable_gallium_osmesa=no]) |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 1284 | AC_ARG_ENABLE([egl], |
| 1285 | [AS_HELP_STRING([--disable-egl], |
| 1286 | [disable EGL library @<:@default=enabled@:>@])], |
| 1287 | [enable_egl="$enableval"], |
| 1288 | [enable_egl=yes]) |
| 1289 | |
Thomas Hellstrom | 424b121 | 2011-07-04 10:21:35 +0200 | [diff] [blame] | 1290 | AC_ARG_ENABLE([xa], |
| 1291 | [AS_HELP_STRING([--enable-xa], |
Emil Velikov | a662fa9 | 2014-09-22 18:58:19 +0100 | [diff] [blame] | 1292 | [enable build of the XA X Acceleration API @<:@default=disabled@:>@])], |
Thomas Hellstrom | 424b121 | 2011-07-04 10:21:35 +0200 | [diff] [blame] | 1293 | [enable_xa="$enableval"], |
| 1294 | [enable_xa=no]) |
Benjamin Franzke | eddcecb | 2011-05-26 15:09:39 +0200 | [diff] [blame] | 1295 | AC_ARG_ENABLE([gbm], |
| 1296 | [AS_HELP_STRING([--enable-gbm], |
Jon Turney | 7ad7a07 | 2018-01-16 23:27:43 +0000 | [diff] [blame] | 1297 | [enable gbm library @<:@default=yes except cygwin and macOS@:>@])], |
Benjamin Franzke | eddcecb | 2011-05-26 15:09:39 +0200 | [diff] [blame] | 1298 | [enable_gbm="$enableval"], |
Marek Olšák | 4650a27 | 2016-10-18 23:19:58 +0200 | [diff] [blame] | 1299 | [case "$host_os" in |
Jon Turney | 7ad7a07 | 2018-01-16 23:27:43 +0000 | [diff] [blame] | 1300 | cygwin* | darwin*) |
Marek Olšák | 4650a27 | 2016-10-18 23:19:58 +0200 | [diff] [blame] | 1301 | enable_gbm=no |
| 1302 | ;; |
| 1303 | *) |
| 1304 | enable_gbm=yes |
| 1305 | ;; |
| 1306 | esac]) |
Joakim Sindholt | fdd9657 | 2011-08-04 15:14:06 +0200 | [diff] [blame] | 1307 | AC_ARG_ENABLE([nine], |
| 1308 | [AS_HELP_STRING([--enable-nine], |
| 1309 | [enable build of the nine Direct3D9 API @<:@default=no@:>@])], |
| 1310 | [enable_nine="$enableval"], |
| 1311 | [enable_nine=no]) |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 1312 | |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 1313 | AC_ARG_ENABLE([xvmc], |
| 1314 | [AS_HELP_STRING([--enable-xvmc], |
| 1315 | [enable xvmc library @<:@default=auto@:>@])], |
| 1316 | [enable_xvmc="$enableval"], |
Emil Velikov | c6e5801 | 2014-08-17 23:56:19 +0100 | [diff] [blame] | 1317 | [enable_xvmc=auto]) |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 1318 | AC_ARG_ENABLE([vdpau], |
| 1319 | [AS_HELP_STRING([--enable-vdpau], |
| 1320 | [enable vdpau library @<:@default=auto@:>@])], |
| 1321 | [enable_vdpau="$enableval"], |
| 1322 | [enable_vdpau=auto]) |
Christian König | 15e39ca | 2013-08-05 11:41:27 -0600 | [diff] [blame] | 1323 | AC_ARG_ENABLE([omx], |
| 1324 | [AS_HELP_STRING([--enable-omx], |
Gurkirpal Singh | e2afa15 | 2018-01-20 05:37:53 +0530 | [diff] [blame] | 1325 | [DEPRECATED: Use --enable-omx-bellagio or --enable-omx-tizonia instead @<:@default=auto@:>@])], |
| 1326 | [AC_MSG_ERROR([--enable-omx is deprecated. Use --enable-omx-bellagio or --enable-omx-tizonia instead.])], |
Gurkirpal Singh | 6a8aa11 | 2017-08-12 21:37:15 +0530 | [diff] [blame] | 1327 | []) |
| 1328 | AC_ARG_ENABLE([omx-bellagio], |
| 1329 | [AS_HELP_STRING([--enable-omx-bellagio], |
| 1330 | [enable OpenMAX Bellagio library @<:@default=disabled@:>@])], |
| 1331 | [enable_omx_bellagio="$enableval"], |
| 1332 | [enable_omx_bellagio=no]) |
Gurkirpal Singh | e2afa15 | 2018-01-20 05:37:53 +0530 | [diff] [blame] | 1333 | AC_ARG_ENABLE([omx-tizonia], |
| 1334 | [AS_HELP_STRING([--enable-omx-tizonia], |
| 1335 | [enable OpenMAX Tizonia library @<:@default=disabled@:>@])], |
| 1336 | [enable_omx_tizonia="$enableval"], |
| 1337 | [enable_omx_tizonia=no]) |
Christian König | 3867933 | 2014-07-02 16:35:28 -0400 | [diff] [blame] | 1338 | AC_ARG_ENABLE([va], |
| 1339 | [AS_HELP_STRING([--enable-va], |
| 1340 | [enable va library @<:@default=auto@:>@])], |
| 1341 | [enable_va="$enableval"], |
| 1342 | [enable_va=auto]) |
Francisco Jerez | c6db1b3 | 2012-04-20 16:56:19 +0200 | [diff] [blame] | 1343 | AC_ARG_ENABLE([opencl], |
| 1344 | [AS_HELP_STRING([--enable-opencl], |
Emil Velikov | a662fa9 | 2014-09-22 18:58:19 +0100 | [diff] [blame] | 1345 | [enable OpenCL library @<:@default=disabled@:>@])], |
Emil Velikov | 065b6ca | 2014-03-04 20:02:35 +0000 | [diff] [blame] | 1346 | [enable_opencl="$enableval"], |
Francisco Jerez | c6db1b3 | 2012-04-20 16:56:19 +0200 | [diff] [blame] | 1347 | [enable_opencl=no]) |
Tom Stellard | 07567c1 | 2013-09-18 00:36:55 -0700 | [diff] [blame] | 1348 | AC_ARG_ENABLE([opencl_icd], |
| 1349 | [AS_HELP_STRING([--enable-opencl-icd], |
| 1350 | [Build an OpenCL ICD library to be loaded by an ICD implementation |
Emil Velikov | 6ef9482 | 2017-10-16 16:40:08 +0100 | [diff] [blame] | 1351 | @<:@default=enabled@:>@])], |
Tom Stellard | 07567c1 | 2013-09-18 00:36:55 -0700 | [diff] [blame] | 1352 | [enable_opencl_icd="$enableval"], |
Emil Velikov | 6ef9482 | 2017-10-16 16:40:08 +0100 | [diff] [blame] | 1353 | [enable_opencl_icd=yes]) |
Chia-I Wu | be5f34a | 2010-10-27 16:14:27 +0800 | [diff] [blame] | 1354 | |
Matt Turner | c09a4cb | 2013-03-09 17:35:12 -0800 | [diff] [blame] | 1355 | AC_ARG_ENABLE([gallium-tests], |
Francisco Jerez | 66f7fd9 | 2012-04-25 22:16:26 +0200 | [diff] [blame] | 1356 | [AS_HELP_STRING([--enable-gallium-tests], |
Emil Velikov | a662fa9 | 2014-09-22 18:58:19 +0100 | [diff] [blame] | 1357 | [Enable optional Gallium tests) @<:@default=disabled@:>@])], |
Francisco Jerez | 66f7fd9 | 2012-04-25 22:16:26 +0200 | [diff] [blame] | 1358 | [enable_gallium_tests="$enableval"], |
| 1359 | [enable_gallium_tests=no]) |
| 1360 | |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 1361 | # Option for Gallium drivers |
Damien Lespiau | 164a04e | 2013-01-14 13:54:57 +0000 | [diff] [blame] | 1362 | |
| 1363 | # Keep this in sync with the --with-gallium-drivers help string default value |
Thomas Hellstrom | 87118d8 | 2012-01-12 12:10:53 +0100 | [diff] [blame] | 1364 | GALLIUM_DRIVERS_DEFAULT="r300,r600,svga,swrast" |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 1365 | |
| 1366 | AC_ARG_WITH([gallium-drivers], |
| 1367 | [AS_HELP_STRING([--with-gallium-drivers@<:@=DIRS...@:>@], |
| 1368 | [comma delimited Gallium drivers list, e.g. |
Eric Anholt | c4c488a | 2017-08-25 15:34:22 -0700 | [diff] [blame] | 1369 | "i915,nouveau,r300,r600,radeonsi,freedreno,pl111,svga,swrast,swr,tegra,v3d,vc4,virgl,etnaviv,imx" |
Damien Lespiau | 164a04e | 2013-01-14 13:54:57 +0000 | [diff] [blame] | 1370 | @<:@default=r300,r600,svga,swrast@:>@])], |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 1371 | [with_gallium_drivers="$withval"], |
| 1372 | [with_gallium_drivers="$GALLIUM_DRIVERS_DEFAULT"]) |
Chia-I Wu | 156e955 | 2010-10-30 14:26:01 +0800 | [diff] [blame] | 1373 | |
Ian Romanick | db311b4 | 2011-06-22 11:35:27 -0700 | [diff] [blame] | 1374 | # Doing '--without-gallium-drivers' will set this variable to 'no'. Clear it |
| 1375 | # here so that the script doesn't choke on an unknown driver name later. |
| 1376 | case "$with_gallium_drivers" in |
| 1377 | yes) with_gallium_drivers="$GALLIUM_DRIVERS_DEFAULT" ;; |
| 1378 | no) with_gallium_drivers='' ;; |
| 1379 | esac |
| 1380 | |
Chia-I Wu | be5f34a | 2010-10-27 16:14:27 +0800 | [diff] [blame] | 1381 | if test "x$enable_opengl" = xno -a \ |
| 1382 | "x$enable_gles1" = xno -a \ |
| 1383 | "x$enable_gles2" = xno -a \ |
Joakim Sindholt | fdd9657 | 2011-08-04 15:14:06 +0200 | [diff] [blame] | 1384 | "x$enable_nine" = xno -a \ |
Thomas Hellstrom | 424b121 | 2011-07-04 10:21:35 +0200 | [diff] [blame] | 1385 | "x$enable_xa" = xno -a \ |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 1386 | "x$enable_xvmc" = xno -a \ |
| 1387 | "x$enable_vdpau" = xno -a \ |
Gurkirpal Singh | 6a8aa11 | 2017-08-12 21:37:15 +0530 | [diff] [blame] | 1388 | "x$enable_omx_bellagio" = xno -a \ |
Gurkirpal Singh | e2afa15 | 2018-01-20 05:37:53 +0530 | [diff] [blame] | 1389 | "x$enable_omx_tizonia" = xno -a \ |
Christian König | 3867933 | 2014-07-02 16:35:28 -0400 | [diff] [blame] | 1390 | "x$enable_va" = xno -a \ |
Francisco Jerez | c6db1b3 | 2012-04-20 16:56:19 +0200 | [diff] [blame] | 1391 | "x$enable_opencl" = xno; then |
Chia-I Wu | be5f34a | 2010-10-27 16:14:27 +0800 | [diff] [blame] | 1392 | AC_MSG_ERROR([at least one API should be enabled]) |
| 1393 | fi |
| 1394 | |
Gurkirpal Singh | e2afa15 | 2018-01-20 05:37:53 +0530 | [diff] [blame] | 1395 | if test "x$enable_omx_bellagio" = xyes -a \ |
| 1396 | "x$enable_omx_tizonia" = xyes; then |
| 1397 | AC_MSG_ERROR([Can't enable both bellagio and tizonia at same time]) |
| 1398 | fi |
| 1399 | |
Andreas Boll | 723b783 | 2013-02-01 13:39:42 +0100 | [diff] [blame] | 1400 | # Building OpenGL ES1 and/or ES2 without OpenGL is not supported on mesa 9.0.x |
| 1401 | if test "x$enable_opengl" = xno -a \ |
| 1402 | "x$enable_gles1" = xyes; then |
| 1403 | AC_MSG_ERROR([Building OpenGL ES1 without OpenGL is not supported]) |
| 1404 | fi |
| 1405 | |
| 1406 | if test "x$enable_opengl" = xno -a \ |
| 1407 | "x$enable_gles2" = xyes; then |
| 1408 | AC_MSG_ERROR([Building OpenGL ES2 without OpenGL is not supported]) |
| 1409 | fi |
| 1410 | |
Matt Turner | 691c304 | 2013-01-18 23:43:05 -0800 | [diff] [blame] | 1411 | AM_CONDITIONAL(HAVE_OPENGL, test "x$enable_opengl" = xyes) |
| 1412 | AM_CONDITIONAL(HAVE_OPENGL_ES1, test "x$enable_gles1" = xyes) |
| 1413 | AM_CONDITIONAL(HAVE_OPENGL_ES2, test "x$enable_gles2" = xyes) |
| 1414 | AM_CONDITIONAL(NEED_OPENGL_COMMON, test "x$enable_opengl" = xyes -o \ |
| 1415 | "x$enable_gles1" = xyes -o \ |
| 1416 | "x$enable_gles2" = xyes) |
Eric Engestrom | 8821ef4 | 2017-07-14 11:14:28 +0100 | [diff] [blame] | 1417 | AM_CONDITIONAL(NEED_KHRPLATFORM, test "x$enable_egl" = xyes -o \ |
Eric Engestrom | 87c1561 | 2018-08-07 12:56:25 +0100 | [diff] [blame] | 1418 | "x$enable_opengl" = xyes -o \ |
Eric Engestrom | 8821ef4 | 2017-07-14 11:14:28 +0100 | [diff] [blame] | 1419 | "x$enable_gles1" = xyes -o \ |
| 1420 | "x$enable_gles2" = xyes) |
Matt Turner | 691c304 | 2013-01-18 23:43:05 -0800 | [diff] [blame] | 1421 | |
Chuck Atkins | a92910a | 2016-04-18 10:09:17 -0400 | [diff] [blame] | 1422 | # Validate GLX options |
| 1423 | if test "x$enable_glx" = xyes; then |
| 1424 | if test "x$enable_dri" = xyes; then |
| 1425 | enable_glx=dri |
| 1426 | elif test -n "$with_gallium_drivers"; then |
| 1427 | enable_glx=gallium-xlib |
| 1428 | else |
| 1429 | enable_glx=xlib |
| 1430 | fi |
Kenneth Graunke | 9d21b5d | 2012-01-04 23:49:18 -0800 | [diff] [blame] | 1431 | fi |
Chuck Atkins | a92910a | 2016-04-18 10:09:17 -0400 | [diff] [blame] | 1432 | case "x$enable_glx" in |
| 1433 | xdri | xxlib | xgallium-xlib) |
| 1434 | # GLX requires OpenGL |
| 1435 | if test "x$enable_opengl" = xno; then |
| 1436 | AC_MSG_ERROR([GLX cannot be built without OpenGL]) |
| 1437 | fi |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 1438 | |
Chuck Atkins | a92910a | 2016-04-18 10:09:17 -0400 | [diff] [blame] | 1439 | # Check individual dependencies |
| 1440 | case "x$enable_glx" in |
| 1441 | xdri) |
| 1442 | if test "x$enable_dri" = xno; then |
| 1443 | AC_MSG_ERROR([DRI-based GLX requires DRI to be enabled]) |
| 1444 | fi |
| 1445 | ;; |
| 1446 | xxlib) |
| 1447 | if test "x$enable_dri" = xyes; then |
| 1448 | AC_MSG_ERROR([Xlib-based GLX cannot be built with DRI enabled]) |
| 1449 | fi |
| 1450 | ;; |
| 1451 | xgallium-xlib ) |
| 1452 | if test "x$enable_dri" = xyes; then |
| 1453 | AC_MSG_ERROR([Xlib-based (Gallium) GLX cannot be built with DRI enabled]) |
| 1454 | fi |
| 1455 | if test -z "$with_gallium_drivers"; then |
| 1456 | AC_MSG_ERROR([Xlib-based (Gallium) GLX cannot be built without Gallium enabled]) |
| 1457 | fi |
| 1458 | ;; |
| 1459 | esac |
| 1460 | ;; |
| 1461 | xno) |
| 1462 | ;; |
| 1463 | *) |
| 1464 | AC_MSG_ERROR([Illegal value for --enable-glx: $enable_glx]) |
| 1465 | ;; |
| 1466 | esac |
Matt Turner | 32e8ce6 | 2012-08-17 14:05:56 -0700 | [diff] [blame] | 1467 | |
Akihiko Odaki | 4296842 | 2016-06-26 10:54:35 +0900 | [diff] [blame] | 1468 | AM_CONDITIONAL(HAVE_GLX, test "x$enable_glx" != xno) |
Chuck Atkins | a92910a | 2016-04-18 10:09:17 -0400 | [diff] [blame] | 1469 | AM_CONDITIONAL(HAVE_DRI_GLX, test "x$enable_glx" = xdri) |
| 1470 | AM_CONDITIONAL(HAVE_XLIB_GLX, test "x$enable_glx" = xxlib) |
| 1471 | AM_CONDITIONAL(HAVE_GALLIUM_XLIB_GLX, test "x$enable_glx" = xgallium-xlib) |
Jon TURNEY | 45f9aae | 2014-05-12 10:17:06 +0100 | [diff] [blame] | 1472 | |
Boyan Ding | 97495c4 | 2017-01-25 14:49:26 +0800 | [diff] [blame] | 1473 | DEFAULT_GL_LIB_NAME=GL |
| 1474 | |
Chuck Atkins | f9a35bf | 2016-05-30 16:35:40 +0100 | [diff] [blame] | 1475 | dnl |
| 1476 | dnl Libglvnd configuration |
| 1477 | dnl |
| 1478 | AC_ARG_ENABLE([libglvnd], |
| 1479 | [AS_HELP_STRING([--enable-libglvnd], |
Kyle Brenneman | ce562f9 | 2017-01-04 11:31:58 -0700 | [diff] [blame] | 1480 | [Build GLX and EGL for libglvnd @<:@default=disabled@:>@])], |
Chuck Atkins | f9a35bf | 2016-05-30 16:35:40 +0100 | [diff] [blame] | 1481 | [enable_libglvnd="$enableval"], |
| 1482 | [enable_libglvnd=no]) |
Kyle Brenneman | ce562f9 | 2017-01-04 11:31:58 -0700 | [diff] [blame] | 1483 | AM_CONDITIONAL(USE_LIBGLVND, test "x$enable_libglvnd" = xyes) |
| 1484 | |
Chuck Atkins | f9a35bf | 2016-05-30 16:35:40 +0100 | [diff] [blame] | 1485 | if test "x$enable_libglvnd" = xyes ; then |
Chuck Atkins | f9a35bf | 2016-05-30 16:35:40 +0100 | [diff] [blame] | 1486 | case "x$enable_glx" in |
Chuck Atkins | f9a35bf | 2016-05-30 16:35:40 +0100 | [diff] [blame] | 1487 | xxlib | xgallium-xlib ) |
| 1488 | AC_MSG_ERROR([cannot build libgvnd when Xlib-GLX or Gallium-Xlib-GLX is enabled]) |
| 1489 | ;; |
Chuck Atkins | f9a35bf | 2016-05-30 16:35:40 +0100 | [diff] [blame] | 1490 | esac |
| 1491 | |
Kyle Brenneman | ce562f9 | 2017-01-04 11:31:58 -0700 | [diff] [blame] | 1492 | PKG_CHECK_MODULES([GLVND], libglvnd >= 0.2.0) |
Emil Velikov | 179e21a | 2017-04-18 11:33:42 +0100 | [diff] [blame] | 1493 | LIBGLVND_DATADIR=`$PKG_CONFIG --variable=datadir libglvnd` |
Kyle Brenneman | ce562f9 | 2017-01-04 11:31:58 -0700 | [diff] [blame] | 1494 | AC_SUBST([LIBGLVND_DATADIR]) |
| 1495 | |
| 1496 | DEFINES="${DEFINES} -DUSE_LIBGLVND=1" |
Chuck Atkins | f9a35bf | 2016-05-30 16:35:40 +0100 | [diff] [blame] | 1497 | DEFAULT_GL_LIB_NAME=GLX_mesa |
Emil Velikov | b496756 | 2017-10-31 18:58:09 +0000 | [diff] [blame] | 1498 | |
| 1499 | if test "x$enable_glx" = xno -a "x$enable_egl" = xno; then |
| 1500 | AC_MSG_ERROR([cannot build libglvnd without GLX or EGL]) |
| 1501 | fi |
Chuck Atkins | f9a35bf | 2016-05-30 16:35:40 +0100 | [diff] [blame] | 1502 | fi |
| 1503 | |
Boyan Ding | 97495c4 | 2017-01-25 14:49:26 +0800 | [diff] [blame] | 1504 | AC_ARG_WITH([gl-lib-name], |
| 1505 | [AS_HELP_STRING([--with-gl-lib-name@<:@=NAME@:>@], |
| 1506 | [specify GL library name @<:@default=GL@:>@])], |
Emil Velikov | d5ac236 | 2018-02-23 19:32:04 +0000 | [diff] [blame] | 1507 | [AC_MSG_ERROR([--with-gl-lib-name is no longer supported. Rename the library manually if needed.])], |
| 1508 | []) |
Boyan Ding | 97495c4 | 2017-01-25 14:49:26 +0800 | [diff] [blame] | 1509 | AC_ARG_WITH([osmesa-lib-name], |
| 1510 | [AS_HELP_STRING([--with-osmesa-lib-name@<:@=NAME@:>@], |
| 1511 | [specify OSMesa library name @<:@default=OSMesa@:>@])], |
Emil Velikov | d5ac236 | 2018-02-23 19:32:04 +0000 | [diff] [blame] | 1512 | [AC_MSG_ERROR([--with-osmesa-lib-name is no longer supported. Rename the library manually if needed.])], |
| 1513 | []) |
| 1514 | GL_LIB="$DEFAULT_GL_LIB_NAME" |
| 1515 | OSMESA_LIB=OSMesa |
Boyan Ding | 97495c4 | 2017-01-25 14:49:26 +0800 | [diff] [blame] | 1516 | |
| 1517 | dnl |
| 1518 | dnl Mangled Mesa support |
| 1519 | dnl |
| 1520 | AC_ARG_ENABLE([mangling], |
| 1521 | [AS_HELP_STRING([--enable-mangling], |
| 1522 | [enable mangled symbols and library name @<:@default=disabled@:>@])], |
| 1523 | [enable_mangling="${enableval}"], |
| 1524 | [enable_mangling=no] |
| 1525 | ) |
| 1526 | if test "x${enable_mangling}" = "xyes" ; then |
Emil Velikov | 25a9450 | 2018-02-23 19:32:05 +0000 | [diff] [blame] | 1527 | if test "x$enable_libglvnd" = xyes; then |
| 1528 | AC_MSG_ERROR([Conflicting options --enable-mangling and --enable-libglvnd.]) |
| 1529 | fi |
Boyan Ding | 97495c4 | 2017-01-25 14:49:26 +0800 | [diff] [blame] | 1530 | DEFINES="${DEFINES} -DUSE_MGL_NAMESPACE" |
| 1531 | GL_LIB="Mangled${GL_LIB}" |
| 1532 | OSMESA_LIB="Mangled${OSMESA_LIB}" |
| 1533 | fi |
| 1534 | AC_SUBST([GL_LIB]) |
| 1535 | AC_SUBST([OSMESA_LIB]) |
| 1536 | |
Emil Velikov | 315c46c | 2018-02-23 19:32:08 +0000 | [diff] [blame] | 1537 | dnl HACK when building glx + glvnd we ship gl.pc, despite that glvnd should do it |
| 1538 | dnl Thus we need to use GL as a DSO name. |
| 1539 | if test "x$enable_libglvnd" = xyes -a "x$enable_glx" != xno; then |
| 1540 | GL_PKGCONF_LIB="GL" |
| 1541 | else |
| 1542 | GL_PKGCONF_LIB="$GL_LIB" |
| 1543 | fi |
| 1544 | AC_SUBST([GL_PKGCONF_LIB]) |
| 1545 | |
Emil Velikov | 16f6d43 | 2015-07-09 21:19:15 +0100 | [diff] [blame] | 1546 | # Check for libdrm |
| 1547 | PKG_CHECK_MODULES([LIBDRM], [libdrm >= $LIBDRM_REQUIRED], |
| 1548 | [have_libdrm=yes], [have_libdrm=no]) |
| 1549 | if test "x$have_libdrm" = xyes; then |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 1550 | DEFINES="$DEFINES -DHAVE_LIBDRM" |
Emil Velikov | 16f6d43 | 2015-07-09 21:19:15 +0100 | [diff] [blame] | 1551 | fi |
| 1552 | |
Emil Velikov | 9898c60 | 2016-09-12 18:47:54 +0100 | [diff] [blame] | 1553 | require_libdrm() { |
| 1554 | if test "x$have_libdrm" != xyes; then |
| 1555 | AC_MSG_ERROR([$1 requires libdrm >= $LIBDRM_REQUIRED]) |
| 1556 | fi |
| 1557 | } |
| 1558 | |
| 1559 | |
Jon TURNEY | 45f9aae | 2014-05-12 10:17:06 +0100 | [diff] [blame] | 1560 | # Select which platform-dependent DRI code gets built |
| 1561 | case "$host_os" in |
| 1562 | darwin*) |
| 1563 | dri_platform='apple' ;; |
Jon Turney | 533b353 | 2016-07-11 21:38:16 +0100 | [diff] [blame] | 1564 | cygwin*) |
| 1565 | dri_platform='windows' ;; |
| 1566 | gnu*) |
Jon TURNEY | 45f9aae | 2014-05-12 10:17:06 +0100 | [diff] [blame] | 1567 | dri_platform='none' ;; |
| 1568 | *) |
| 1569 | dri_platform='drm' ;; |
| 1570 | esac |
| 1571 | |
Emil Velikov | be43072 | 2015-10-11 11:53:45 +0100 | [diff] [blame] | 1572 | if test "x$enable_dri" = xyes -a "x$dri_platform" = xdrm -a "x$have_libdrm" = xyes; then |
| 1573 | have_drisw_kms='yes' |
| 1574 | fi |
| 1575 | |
Jon TURNEY | 45f9aae | 2014-05-12 10:17:06 +0100 | [diff] [blame] | 1576 | AM_CONDITIONAL(HAVE_DRICOMMON, test "x$enable_dri" = xyes ) |
| 1577 | AM_CONDITIONAL(HAVE_DRISW, test "x$enable_dri" = xyes ) |
Emil Velikov | be43072 | 2015-10-11 11:53:45 +0100 | [diff] [blame] | 1578 | AM_CONDITIONAL(HAVE_DRISW_KMS, test "x$have_drisw_kms" = xyes ) |
Emil Velikov | 16f6d43 | 2015-07-09 21:19:15 +0100 | [diff] [blame] | 1579 | AM_CONDITIONAL(HAVE_DRI2, test "x$enable_dri" = xyes -a "x$dri_platform" = xdrm -a "x$have_libdrm" = xyes ) |
| 1580 | AM_CONDITIONAL(HAVE_DRI3, test "x$enable_dri3" = xyes -a "x$dri_platform" = xdrm -a "x$have_libdrm" = xyes ) |
Matt Turner | 585e250 | 2014-09-21 13:22:28 -0700 | [diff] [blame] | 1581 | AM_CONDITIONAL(HAVE_APPLEDRI, test "x$enable_dri" = xyes -a "x$dri_platform" = xapple ) |
Steven Toth | 8c60bcb | 2016-09-28 12:58:00 -0600 | [diff] [blame] | 1582 | AM_CONDITIONAL(HAVE_LMSENSORS, test "x$enable_lmsensors" = xyes ) |
| 1583 | AM_CONDITIONAL(HAVE_GALLIUM_EXTRA_HUD, test "x$enable_gallium_extra_hud" = xyes ) |
Jon Turney | 533b353 | 2016-07-11 21:38:16 +0100 | [diff] [blame] | 1584 | AM_CONDITIONAL(HAVE_WINDOWSDRI, test "x$enable_dri" = xyes -a "x$dri_platform" = xwindows ) |
Keith Packard | 7ab1fff | 2018-02-09 07:45:58 -0800 | [diff] [blame] | 1585 | AM_CONDITIONAL(HAVE_XLEASE, test "x$have_xlease" = xyes ) |
Matt Turner | 06ad64a | 2012-01-15 21:30:26 -0500 | [diff] [blame] | 1586 | |
Matt Turner | 8c9b78a | 2012-08-17 14:22:47 -0700 | [diff] [blame] | 1587 | AC_ARG_ENABLE([shared-glapi], |
| 1588 | [AS_HELP_STRING([--enable-shared-glapi], |
Emil Velikov | a662fa9 | 2014-09-22 18:58:19 +0100 | [diff] [blame] | 1589 | [Enable shared glapi for OpenGL @<:@default=enabled@:>@])], |
Matt Turner | 8c9b78a | 2012-08-17 14:22:47 -0700 | [diff] [blame] | 1590 | [enable_shared_glapi="$enableval"], |
Emil Velikov | 0432aa0 | 2014-02-19 00:54:04 +0000 | [diff] [blame] | 1591 | [enable_shared_glapi=yes]) |
Matt Turner | 8c9b78a | 2012-08-17 14:22:47 -0700 | [diff] [blame] | 1592 | |
Emil Velikov | 0432aa0 | 2014-02-19 00:54:04 +0000 | [diff] [blame] | 1593 | case "x$enable_opengl$enable_gles1$enable_gles2" in |
| 1594 | x*yes*yes*) |
| 1595 | if test "x$enable_shared_glapi" = xno; then |
| 1596 | AC_MSG_ERROR([shared GLAPI required when building two or more of |
| 1597 | the following APIs - opengl, gles1 gles2]) |
| 1598 | fi |
| 1599 | ;; |
| 1600 | esac |
Matt Turner | 8c9b78a | 2012-08-17 14:22:47 -0700 | [diff] [blame] | 1601 | |
Matt Turner | 8c9b78a | 2012-08-17 14:22:47 -0700 | [diff] [blame] | 1602 | AM_CONDITIONAL(HAVE_SHARED_GLAPI, test "x$enable_shared_glapi" = xyes) |
| 1603 | |
Emil Velikov | 44ec468 | 2014-09-08 23:52:46 +0100 | [diff] [blame] | 1604 | # Build the pipe-drivers as separate libraries/modules. |
| 1605 | # Do not touch this unless you know what you are doing. |
| 1606 | # XXX: Expose via configure option ? |
| 1607 | enable_shared_pipe_drivers=no |
| 1608 | |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 1609 | dnl |
| 1610 | dnl Driver specific build directories |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1611 | dnl |
Jakob Bornecrantz | 7e54d7d | 2009-02-11 02:38:21 +0100 | [diff] [blame] | 1612 | |
Matt Turner | 2f142d5 | 2013-08-20 14:16:17 -0700 | [diff] [blame] | 1613 | if test "x$enable_gallium_osmesa" = xyes; then |
Emil Velikov | e8e1158 | 2014-03-12 00:36:21 +0000 | [diff] [blame] | 1614 | if ! echo "$with_gallium_drivers" | grep -q 'swrast'; then |
| 1615 | AC_MSG_ERROR([gallium_osmesa requires the gallium swrast driver]) |
Matt Turner | 2f142d5 | 2013-08-20 14:16:17 -0700 | [diff] [blame] | 1616 | fi |
| 1617 | if test "x$enable_osmesa" = xyes; then |
| 1618 | AC_MSG_ERROR([Cannot enable both classic and Gallium OSMesa implementations]) |
| 1619 | fi |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 1620 | fi |
| 1621 | |
Emil Velikov | 5872850 | 2017-01-19 15:19:56 +0000 | [diff] [blame] | 1622 | require_dri_shared_libs_and_glapi() { |
| 1623 | if test "x$enable_static" = xyes; then |
| 1624 | AC_MSG_ERROR([$1 cannot be build as static library]) |
| 1625 | fi |
| 1626 | |
| 1627 | if test "x$enable_dri" != xyes; then |
| 1628 | # There is only a single backend which won't be build/used otherwise. |
| 1629 | # XXX: Revisit this as the egl/haiku is a thing. |
| 1630 | AC_MSG_ERROR([$1 requires --enable-dri]) |
| 1631 | fi |
| 1632 | |
| 1633 | if test "x$enable_shared_glapi" != xyes; then |
| 1634 | AC_MSG_ERROR([$1 requires --enable-shared-glapi]) |
| 1635 | fi |
| 1636 | } |
| 1637 | |
Chia-I Wu | 94ec5fd | 2011-06-27 09:19:02 +0900 | [diff] [blame] | 1638 | if test "x$enable_dri" = xyes; then |
Emil Velikov | da410e6 | 2016-12-07 13:25:00 +0000 | [diff] [blame] | 1639 | require_dri_shared_libs_and_glapi "DRI" |
Emil Velikov | 4d8267e | 2014-03-12 18:13:02 +0000 | [diff] [blame] | 1640 | |
Chia-I Wu | 8123934 | 2011-07-02 09:49:17 +0900 | [diff] [blame] | 1641 | # not a hard requirement as swrast does not depend on it |
| 1642 | if test "x$have_libdrm" = xyes; then |
| 1643 | DRI_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED" |
Chia-I Wu | 94ec5fd | 2011-06-27 09:19:02 +0900 | [diff] [blame] | 1644 | fi |
Chia-I Wu | 94ec5fd | 2011-06-27 09:19:02 +0900 | [diff] [blame] | 1645 | fi |
| 1646 | |
Samuel Thibault | 7585617 | 2011-03-14 22:08:21 +0000 | [diff] [blame] | 1647 | AC_ARG_ENABLE([driglx-direct], |
| 1648 | [AS_HELP_STRING([--disable-driglx-direct], |
Andreas Boll | 5ecbc3a | 2012-11-10 17:58:49 +0100 | [diff] [blame] | 1649 | [disable direct rendering in GLX and EGL for DRI \ |
Emil Velikov | 6aeef54 | 2017-12-20 17:34:55 +0000 | [diff] [blame] | 1650 | @<:@default=enabled@:>@])], |
Samuel Thibault | 7585617 | 2011-03-14 22:08:21 +0000 | [diff] [blame] | 1651 | [driglx_direct="$enableval"], |
Jon TURNEY | bd526ec | 2014-05-09 13:54:09 +0100 | [diff] [blame] | 1652 | [driglx_direct="yes"]) |
Samuel Thibault | 7585617 | 2011-03-14 22:08:21 +0000 | [diff] [blame] | 1653 | |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 1654 | dnl |
| 1655 | dnl libGL configuration per driver |
| 1656 | dnl |
Chuck Atkins | e9a4ec4 | 2017-01-06 08:27:44 -0500 | [diff] [blame] | 1657 | if test "x$enable_glx" != xno; then |
| 1658 | PKG_CHECK_MODULES([GLPROTO], [glproto >= $GLPROTO_REQUIRED]) |
| 1659 | fi |
Chuck Atkins | a92910a | 2016-04-18 10:09:17 -0400 | [diff] [blame] | 1660 | case "x$enable_glx" in |
| 1661 | xxlib | xgallium-xlib) |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 1662 | # Xlib-based GLX |
Emil Velikov | da029f8 | 2014-07-11 23:17:48 +0100 | [diff] [blame] | 1663 | dri_modules="x11 xext xcb" |
| 1664 | PKG_CHECK_MODULES([XLIBGL], [$dri_modules]) |
| 1665 | GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV $dri_modules" |
Matt Turner | e273ed3 | 2012-08-14 12:24:31 -0700 | [diff] [blame] | 1666 | X11_INCLUDES="$X11_INCLUDES $XLIBGL_CFLAGS" |
| 1667 | GL_LIB_DEPS="$XLIBGL_LIBS" |
Matt Turner | b6651ae | 2012-09-18 21:51:25 -0700 | [diff] [blame] | 1668 | GL_LIB_DEPS="$GL_LIB_DEPS $SELINUX_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS" |
| 1669 | GL_PC_LIB_PRIV="$GL_PC_LIB_PRIV $SELINUX_LIBS -lm $PTHREAD_LIBS" |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 1670 | ;; |
Chuck Atkins | a92910a | 2016-04-18 10:09:17 -0400 | [diff] [blame] | 1671 | xdri) |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 1672 | # DRI-based GLX |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 1673 | |
Emil Velikov | a7ea751 | 2018-02-23 19:32:00 +0000 | [diff] [blame] | 1674 | require_dri_shared_libs_and_glapi "GLX" |
| 1675 | |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 1676 | # find the DRI deps for libGL |
Emil Velikov | 43b09ee | 2017-02-09 13:35:49 +0000 | [diff] [blame] | 1677 | dri_modules="x11 xext xdamage >= $XDAMAGE_REQUIRED xfixes x11-xcb xcb xcb-glx >= $XCBGLX_REQUIRED" |
Armin K | f0f202e | 2013-11-09 00:06:45 +0100 | [diff] [blame] | 1678 | |
Jon TURNEY | 45f9aae | 2014-05-12 10:17:06 +0100 | [diff] [blame] | 1679 | if test x"$driglx_direct" = xyes; then |
| 1680 | if test x"$dri_platform" = xdrm ; then |
Jon TURNEY | f647a72 | 2014-06-02 18:52:15 +0100 | [diff] [blame] | 1681 | DEFINES="$DEFINES -DGLX_USE_DRM" |
Emil Velikov | 9898c60 | 2016-09-12 18:47:54 +0100 | [diff] [blame] | 1682 | require_libdrm "Direct rendering" |
Jon TURNEY | 45f9aae | 2014-05-12 10:17:06 +0100 | [diff] [blame] | 1683 | |
| 1684 | PKG_CHECK_MODULES([DRI2PROTO], [dri2proto >= $DRI2PROTO_REQUIRED]) |
| 1685 | GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV libdrm >= $LIBDRM_REQUIRED" |
Emil Velikov | acf3d2a | 2016-11-27 00:25:28 +0000 | [diff] [blame] | 1686 | |
Jon TURNEY | 45f9aae | 2014-05-12 10:17:06 +0100 | [diff] [blame] | 1687 | if test x"$enable_dri" = xyes; then |
| 1688 | dri_modules="$dri_modules xcb-dri2 >= $XCBDRI2_REQUIRED" |
| 1689 | fi |
Jon TURNEY | 5a459a0 | 2014-05-12 10:47:07 +0100 | [diff] [blame] | 1690 | fi |
| 1691 | if test x"$dri_platform" = xapple ; then |
| 1692 | DEFINES="$DEFINES -DGLX_USE_APPLEGL" |
| 1693 | fi |
Jon Turney | 533b353 | 2016-07-11 21:38:16 +0100 | [diff] [blame] | 1694 | if test x"$dri_platform" = xwindows ; then |
| 1695 | DEFINES="$DEFINES -DGLX_USE_WINDOWSGL" |
| 1696 | fi |
Armin K | f0f202e | 2013-11-09 00:06:45 +0100 | [diff] [blame] | 1697 | fi |
Jon TURNEY | 2b9dac3 | 2010-04-21 12:58:54 +0100 | [diff] [blame] | 1698 | |
Matt Turner | e273ed3 | 2012-08-14 12:24:31 -0700 | [diff] [blame] | 1699 | # add xf86vidmode if available |
| 1700 | PKG_CHECK_MODULES([XF86VIDMODE], [xxf86vm], HAVE_XF86VIDMODE=yes, HAVE_XF86VIDMODE=no) |
| 1701 | if test "$HAVE_XF86VIDMODE" = yes ; then |
| 1702 | dri_modules="$dri_modules xxf86vm" |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 1703 | fi |
| 1704 | |
Matt Turner | e273ed3 | 2012-08-14 12:24:31 -0700 | [diff] [blame] | 1705 | PKG_CHECK_MODULES([DRIGL], [$dri_modules]) |
| 1706 | GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV $dri_modules" |
Armin K | f0f202e | 2013-11-09 00:06:45 +0100 | [diff] [blame] | 1707 | X11_INCLUDES="$X11_INCLUDES $DRIGL_CFLAGS" |
| 1708 | GL_LIB_DEPS="$DRIGL_LIBS" |
| 1709 | |
Matt Turner | b6651ae | 2012-09-18 21:51:25 -0700 | [diff] [blame] | 1710 | # need DRM libs, $PTHREAD_LIBS, etc. |
| 1711 | GL_LIB_DEPS="$GL_LIB_DEPS $LIBDRM_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS" |
| 1712 | GL_PC_LIB_PRIV="-lm $PTHREAD_LIBS $DLOPEN_LIBS" |
Dan Nicholson | 979ff51 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 1713 | ;; |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 1714 | esac |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 1715 | |
Ian Romanick | 4becf67 | 2012-01-03 11:35:59 -0800 | [diff] [blame] | 1716 | # This is outside the case (above) so that it is invoked even for non-GLX |
| 1717 | # builds. |
Eric Anholt | 8ffb098 | 2012-02-05 06:10:56 +0100 | [diff] [blame] | 1718 | AM_CONDITIONAL(HAVE_XF86VIDMODE, test "x$HAVE_XF86VIDMODE" = xyes) |
Ian Romanick | 4becf67 | 2012-01-03 11:35:59 -0800 | [diff] [blame] | 1719 | |
Matt Turner | b6651ae | 2012-09-18 21:51:25 -0700 | [diff] [blame] | 1720 | GLESv1_CM_LIB_DEPS="$LIBDRM_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS" |
| 1721 | GLESv1_CM_PC_LIB_PRIV="-lm $PTHREAD_LIBS $DLOPEN_LIBS" |
| 1722 | GLESv2_LIB_DEPS="$LIBDRM_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS" |
| 1723 | GLESv2_PC_LIB_PRIV="-lm $PTHREAD_LIBS $DLOPEN_LIBS" |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 1724 | |
Robert Bragg | dda49c3 | 2012-09-19 16:12:08 +0100 | [diff] [blame] | 1725 | AC_SUBST([X11_INCLUDES]) |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 1726 | AC_SUBST([GL_LIB_DEPS]) |
Dan Nicholson | 71e208b | 2008-11-24 11:01:57 -0800 | [diff] [blame] | 1727 | AC_SUBST([GL_PC_REQ_PRIV]) |
| 1728 | AC_SUBST([GL_PC_LIB_PRIV]) |
| 1729 | AC_SUBST([GL_PC_CFLAGS]) |
| 1730 | AC_SUBST([DRI_PC_REQ_PRIV]) |
Li Peng | c33c191 | 2010-07-30 12:26:15 +0800 | [diff] [blame] | 1731 | AC_SUBST([GLESv1_CM_LIB_DEPS]) |
Kristian Høgsberg | 9e4f2da | 2010-05-04 14:13:11 -0400 | [diff] [blame] | 1732 | AC_SUBST([GLESv1_CM_PC_LIB_PRIV]) |
Kristian Høgsberg | 9339c12 | 2010-03-05 19:01:43 -0500 | [diff] [blame] | 1733 | AC_SUBST([GLESv2_LIB_DEPS]) |
Kristian Høgsberg | 9e4f2da | 2010-05-04 14:13:11 -0400 | [diff] [blame] | 1734 | AC_SUBST([GLESv2_PC_LIB_PRIV]) |
| 1735 | |
Jon TURNEY | 2b9dac3 | 2010-04-21 12:58:54 +0100 | [diff] [blame] | 1736 | AC_SUBST([HAVE_XF86VIDMODE]) |
| 1737 | |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1738 | dnl |
Chia-I Wu | 5029ea4 | 2011-06-27 13:06:39 +0900 | [diff] [blame] | 1739 | dnl More GLX setup |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1740 | dnl |
Chuck Atkins | a92910a | 2016-04-18 10:09:17 -0400 | [diff] [blame] | 1741 | case "x$enable_glx" in |
| 1742 | xxlib | xgallium-xlib) |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1743 | DEFINES="$DEFINES -DUSE_XSHM" |
Chia-I Wu | 5029ea4 | 2011-06-27 13:06:39 +0900 | [diff] [blame] | 1744 | ;; |
Chuck Atkins | a92910a | 2016-04-18 10:09:17 -0400 | [diff] [blame] | 1745 | xdri) |
Chia-I Wu | 5029ea4 | 2011-06-27 13:06:39 +0900 | [diff] [blame] | 1746 | DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING" |
| 1747 | if test "x$driglx_direct" = xyes; then |
| 1748 | DEFINES="$DEFINES -DGLX_DIRECT_RENDERING" |
| 1749 | fi |
| 1750 | ;; |
| 1751 | esac |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1752 | |
| 1753 | dnl |
Tom Fogal | 31351dc | 2010-12-05 17:58:32 -0700 | [diff] [blame] | 1754 | dnl TLS detection |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 1755 | dnl |
Tom Fogal | 31351dc | 2010-12-05 17:58:32 -0700 | [diff] [blame] | 1756 | |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 1757 | AC_ARG_ENABLE([glx-tls], |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 1758 | [AS_HELP_STRING([--enable-glx-tls], |
Emil Velikov | b83153e | 2016-12-05 19:02:28 +0000 | [diff] [blame] | 1759 | [enable TLS support in GLX @<:@default=enabled@:>@])], |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 1760 | [GLX_USE_TLS="$enableval"], |
Emil Velikov | b83153e | 2016-12-05 19:02:28 +0000 | [diff] [blame] | 1761 | [GLX_USE_TLS=yes]) |
Tom Fogal | 31351dc | 2010-12-05 17:58:32 -0700 | [diff] [blame] | 1762 | AC_SUBST(GLX_TLS, ${GLX_USE_TLS}) |
| 1763 | |
Emil Velikov | d0d2153 | 2016-12-05 19:02:29 +0000 | [diff] [blame] | 1764 | if test "x$GLX_USE_TLS" = xyes; then |
| 1765 | DEFINES="$DEFINES -DGLX_USE_TLS" |
| 1766 | fi |
Tom Fogal | 4484297 | 2011-02-21 22:32:18 -0700 | [diff] [blame] | 1767 | |
Jeremy Huddleston | 6dfc5e2 | 2015-08-29 14:51:45 -0700 | [diff] [blame] | 1768 | dnl Read-only text section on x86 hardened platforms |
| 1769 | AC_ARG_ENABLE([glx-read-only-text], |
| 1770 | [AS_HELP_STRING([--enable-glx-read-only-text], |
| 1771 | [Disable writable .text section on x86 (decreases performance) @<:@default=disabled@:>@])], |
| 1772 | [enable_glx_read_only_text="$enableval"], |
| 1773 | [enable_glx_read_only_text=no]) |
| 1774 | if test "x$enable_glx_read_only_text" = xyes; then |
| 1775 | DEFINES="$DEFINES -DGLX_X86_READONLY_TEXT" |
| 1776 | fi |
| 1777 | |
Tom Fogal | 31351dc | 2010-12-05 17:58:32 -0700 | [diff] [blame] | 1778 | dnl |
Emil Velikov | 3208fd2 | 2017-05-03 17:02:35 +0100 | [diff] [blame] | 1779 | dnl DEPRECATED: EGL Platforms configuration |
| 1780 | dnl |
| 1781 | AC_ARG_WITH([egl-platforms], |
| 1782 | [AS_HELP_STRING([--with-egl-platforms@<:@=DIRS...@:>@], |
| 1783 | [DEPRECATED: use --with-platforms instead@<:@default=auto@:>@])], |
| 1784 | [with_egl_platforms="$withval"], |
| 1785 | [with_egl_platforms=auto]) |
| 1786 | |
| 1787 | if test "x$with_egl_platforms" = xauto; then |
Emil Velikov | 2d35773 | 2017-04-25 16:39:52 +0100 | [diff] [blame] | 1788 | with_egl_platforms="x11,surfaceless" |
Emil Velikov | edb5a65 | 2017-05-03 21:24:26 +0100 | [diff] [blame] | 1789 | if test "x$enable_gbm" = xyes; then |
Emil Velikov | 2d35773 | 2017-04-25 16:39:52 +0100 | [diff] [blame] | 1790 | with_egl_platforms="$with_egl_platforms,drm" |
Emil Velikov | 3208fd2 | 2017-05-03 17:02:35 +0100 | [diff] [blame] | 1791 | fi |
| 1792 | else |
| 1793 | AC_MSG_WARN([--with-egl-platforms is deprecated. Use --with-platforms instead.]) |
| 1794 | fi |
| 1795 | |
| 1796 | dnl |
| 1797 | dnl Platforms configuration |
| 1798 | dnl |
| 1799 | AC_ARG_WITH([platforms], |
| 1800 | [AS_HELP_STRING([--with-platforms@<:@=DIRS...@:>@], |
| 1801 | [comma delimited native platforms libEGL/Vulkan/other supports, e.g. |
| 1802 | "x11,drm,wayland,surfaceless..." @<:@default=auto@:>@])], |
| 1803 | [with_platforms="$withval"], |
| 1804 | [with_platforms=auto]) |
| 1805 | |
Emil Velikov | 73682f8 | 2016-11-25 18:34:03 +0000 | [diff] [blame] | 1806 | # Reuse the autodetection rather than duplicating it. |
| 1807 | if test "x$with_platforms" = xauto; then |
| 1808 | with_platforms=$with_egl_platforms |
Emil Velikov | 3208fd2 | 2017-05-03 17:02:35 +0100 | [diff] [blame] | 1809 | fi |
| 1810 | |
Emil Velikov | 73682f8 | 2016-11-25 18:34:03 +0000 | [diff] [blame] | 1811 | # Do per platform setups and checks |
| 1812 | platforms=`IFS=', '; echo $with_platforms` |
| 1813 | for plat in $platforms; do |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 1814 | case "$plat" in |
| 1815 | wayland) |
Emil Velikov | 3208fd2 | 2017-05-03 17:02:35 +0100 | [diff] [blame] | 1816 | |
Emil Velikov | 2785090 | 2017-09-01 17:39:36 +0100 | [diff] [blame] | 1817 | PKG_CHECK_MODULES([WAYLAND_CLIENT], [wayland-client >= $WAYLAND_REQUIRED]) |
| 1818 | PKG_CHECK_MODULES([WAYLAND_SERVER], [wayland-server >= $WAYLAND_REQUIRED]) |
Daniel Stone | d33cd87 | 2018-02-22 09:21:00 +0000 | [diff] [blame] | 1819 | PKG_CHECK_MODULES([WAYLAND_PROTOCOLS], [wayland-protocols >= $WAYLAND_PROTOCOLS_REQUIRED]) |
Eric Engestrom | 1db4ec0 | 2018-05-29 15:41:28 +0100 | [diff] [blame] | 1820 | if test "x$enable_egl" = xyes; then |
Eric Engestrom | 37eb56d | 2018-06-07 15:45:01 +0100 | [diff] [blame] | 1821 | PKG_CHECK_MODULES([WAYLAND_EGL], [wayland-egl-backend >= $WAYLAND_EGL_BACKEND_REQUIRED]) |
Eric Engestrom | 1db4ec0 | 2018-05-29 15:41:28 +0100 | [diff] [blame] | 1822 | fi |
Daniel Stone | d33cd87 | 2018-02-22 09:21:00 +0000 | [diff] [blame] | 1823 | WAYLAND_PROTOCOLS_DATADIR=`$PKG_CONFIG --variable=pkgdatadir wayland-protocols` |
Emil Velikov | 3208fd2 | 2017-05-03 17:02:35 +0100 | [diff] [blame] | 1824 | |
Daniel Stone | 61d6ff3 | 2018-02-22 09:22:36 +0000 | [diff] [blame] | 1825 | PKG_CHECK_MODULES([WAYLAND_SCANNER], [wayland-scanner], |
| 1826 | WAYLAND_SCANNER=`$PKG_CONFIG --variable=wayland_scanner wayland-scanner`, |
| 1827 | WAYLAND_SCANNER='') |
Emil Velikov | 6b8657a | 2018-06-28 15:06:09 +0100 | [diff] [blame] | 1828 | PKG_CHECK_EXISTS([wayland-scanner >= 1.15], |
| 1829 | AC_SUBST(SCANNER_ARG, 'private-code'), |
| 1830 | AC_SUBST(SCANNER_ARG, 'code')) |
| 1831 | |
Daniel Stone | 61d6ff3 | 2018-02-22 09:22:36 +0000 | [diff] [blame] | 1832 | if test "x$WAYLAND_SCANNER" = x; then |
| 1833 | AC_PATH_PROG([WAYLAND_SCANNER], [wayland-scanner], [:]) |
| 1834 | fi |
| 1835 | |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 1836 | if test "x$WAYLAND_SCANNER" = "x:"; then |
| 1837 | AC_MSG_ERROR([wayland-scanner is needed to compile the wayland platform]) |
| 1838 | fi |
Emil Velikov | fa6b9be | 2017-09-01 11:51:49 +0100 | [diff] [blame] | 1839 | DEFINES="$DEFINES -DHAVE_WAYLAND_PLATFORM -DWL_HIDE_DEPRECATED" |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 1840 | ;; |
Emil Velikov | 3208fd2 | 2017-05-03 17:02:35 +0100 | [diff] [blame] | 1841 | |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 1842 | x11) |
| 1843 | PKG_CHECK_MODULES([XCB_DRI2], [x11-xcb xcb xcb-dri2 >= $XCBDRI2_REQUIRED xcb-xfixes]) |
| 1844 | DEFINES="$DEFINES -DHAVE_X11_PLATFORM" |
| 1845 | ;; |
Emil Velikov | 3208fd2 | 2017-05-03 17:02:35 +0100 | [diff] [blame] | 1846 | |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 1847 | drm) |
| 1848 | test "x$enable_gbm" = "xno" && |
| 1849 | AC_MSG_ERROR([EGL platform drm needs gbm]) |
| 1850 | DEFINES="$DEFINES -DHAVE_DRM_PLATFORM" |
| 1851 | ;; |
Emil Velikov | 3208fd2 | 2017-05-03 17:02:35 +0100 | [diff] [blame] | 1852 | |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 1853 | surfaceless) |
| 1854 | DEFINES="$DEFINES -DHAVE_SURFACELESS_PLATFORM" |
| 1855 | ;; |
Emil Velikov | 3208fd2 | 2017-05-03 17:02:35 +0100 | [diff] [blame] | 1856 | |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 1857 | android) |
| 1858 | PKG_CHECK_MODULES([ANDROID], [cutils hardware sync]) |
Chad Versace | dc66654 | 2018-05-31 19:57:55 -0700 | [diff] [blame] | 1859 | if test -n "$with_gallium_drivers"; then |
| 1860 | PKG_CHECK_MODULES([BACKTRACE], [backtrace]) |
| 1861 | fi |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 1862 | DEFINES="$DEFINES -DHAVE_ANDROID_PLATFORM" |
| 1863 | ;; |
Emil Velikov | 3208fd2 | 2017-05-03 17:02:35 +0100 | [diff] [blame] | 1864 | |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 1865 | *) |
| 1866 | AC_MSG_ERROR([platform '$plat' does not exist]) |
| 1867 | ;; |
| 1868 | esac |
Emil Velikov | 3208fd2 | 2017-05-03 17:02:35 +0100 | [diff] [blame] | 1869 | |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 1870 | case "$plat" in |
| 1871 | wayland|drm|surfaceless) |
| 1872 | require_libdrm "Platform $plat" |
| 1873 | ;; |
| 1874 | esac |
Emil Velikov | 3208fd2 | 2017-05-03 17:02:35 +0100 | [diff] [blame] | 1875 | done |
Daniel Stone | d33cd87 | 2018-02-22 09:21:00 +0000 | [diff] [blame] | 1876 | AC_SUBST([WAYLAND_PROTOCOLS_DATADIR]) |
Emil Velikov | 3208fd2 | 2017-05-03 17:02:35 +0100 | [diff] [blame] | 1877 | |
Emil Velikov | 8212fc9 | 2017-05-03 15:57:31 +0100 | [diff] [blame] | 1878 | if test "x$enable_glx" != xno; then |
| 1879 | if ! echo "$platforms" | grep -q 'x11'; then |
Eric Engestrom | 338f47b | 2017-05-24 08:30:59 +0100 | [diff] [blame] | 1880 | AC_MSG_ERROR([Building GLX without the x11 platform is not supported]) |
Emil Velikov | 8212fc9 | 2017-05-03 15:57:31 +0100 | [diff] [blame] | 1881 | fi |
| 1882 | fi |
| 1883 | |
Emil Velikov | acf3d2a | 2016-11-27 00:25:28 +0000 | [diff] [blame] | 1884 | if test x"$enable_dri3" = xyes; then |
| 1885 | DEFINES="$DEFINES -DHAVE_DRI3" |
| 1886 | |
Dave Airlie | 7aeef2d | 2018-03-14 06:06:00 +1000 | [diff] [blame] | 1887 | dri3_modules="x11-xcb xcb >= $XCB_REQUIRED xcb-dri3 xcb-xfixes xcb-present xcb-sync xshmfence >= $XSHMFENCE_REQUIRED" |
Emil Velikov | acf3d2a | 2016-11-27 00:25:28 +0000 | [diff] [blame] | 1888 | PKG_CHECK_MODULES([XCB_DRI3], [$dri3_modules]) |
Daniel Stone | 9f35096 | 2018-03-20 16:05:13 +0000 | [diff] [blame] | 1889 | dri3_modifier_modules="xcb-dri3 >= $XCBDRI3_MODIFIERS_REQUIRED xcb-present >= $XCBPRESENT_MODIFIERS_REQUIRED" |
Dave Airlie | 7aeef2d | 2018-03-14 06:06:00 +1000 | [diff] [blame] | 1890 | PKG_CHECK_MODULES([XCB_DRI3_MODIFIERS], [$dri3_modifier_modules], [have_dri3_modifiers=yes], [have_dri3_modifiers=no]) |
| 1891 | |
| 1892 | if test "x$have_dri3_modifiers" == xyes; then |
| 1893 | DEFINES="$DEFINES -DHAVE_DRI3_MODIFIERS" |
| 1894 | fi |
Emil Velikov | acf3d2a | 2016-11-27 00:25:28 +0000 | [diff] [blame] | 1895 | fi |
| 1896 | |
Keith Packard | 7ab1fff | 2018-02-09 07:45:58 -0800 | [diff] [blame] | 1897 | |
| 1898 | if echo "$platforms" | grep -q 'x11' && echo "$platforms" | grep -q 'drm'; then |
| 1899 | have_xlease=yes |
| 1900 | else |
| 1901 | have_xlease=no |
| 1902 | fi |
| 1903 | |
| 1904 | if test x"$have_xlease" = xyes; then |
| 1905 | randr_modules="x11-xcb xcb-randr" |
| 1906 | PKG_CHECK_MODULES([XCB_RANDR], [$randr_modules]) |
Keith Packard | 3f960c1 | 2018-06-19 15:58:30 -0700 | [diff] [blame] | 1907 | xlib_randr_modules="xrandr" |
| 1908 | PKG_CHECK_MODULES([XLIB_RANDR], [$xlib_randr_modules]) |
Keith Packard | 7ab1fff | 2018-02-09 07:45:58 -0800 | [diff] [blame] | 1909 | fi |
| 1910 | |
Emil Velikov | 73682f8 | 2016-11-25 18:34:03 +0000 | [diff] [blame] | 1911 | AM_CONDITIONAL(HAVE_PLATFORM_X11, echo "$platforms" | grep -q 'x11') |
| 1912 | AM_CONDITIONAL(HAVE_PLATFORM_WAYLAND, echo "$platforms" | grep -q 'wayland') |
| 1913 | AM_CONDITIONAL(HAVE_PLATFORM_DRM, echo "$platforms" | grep -q 'drm') |
| 1914 | AM_CONDITIONAL(HAVE_PLATFORM_SURFACELESS, echo "$platforms" | grep -q 'surfaceless') |
| 1915 | AM_CONDITIONAL(HAVE_PLATFORM_ANDROID, echo "$platforms" | grep -q 'android') |
Emil Velikov | 3208fd2 | 2017-05-03 17:02:35 +0100 | [diff] [blame] | 1916 | |
Keith Packard | 7ab1fff | 2018-02-09 07:45:58 -0800 | [diff] [blame] | 1917 | AC_ARG_ENABLE(xlib-lease, |
| 1918 | [AS_HELP_STRING([--enable-xlib-lease] |
| 1919 | [enable VK_acquire_xlib_display using X leases])], |
| 1920 | [enable_xlib_lease=$enableval], [enable_xlib_lease=auto]) |
| 1921 | case "x$enable_xlib_lease" in |
| 1922 | xyes) |
| 1923 | ;; |
| 1924 | xno) |
| 1925 | ;; |
| 1926 | *) |
| 1927 | if echo "$platforms" | grep -q 'x11' && echo "$platforms" | grep -q 'drm'; then |
| 1928 | enable_xlib_lease=yes |
| 1929 | else |
| 1930 | enable_xlib_lease=no |
| 1931 | fi |
| 1932 | esac |
| 1933 | |
| 1934 | AM_CONDITIONAL(HAVE_XLIB_LEASE, test "x$enable_xlib_lease" = xyes) |
| 1935 | |
Emil Velikov | 3208fd2 | 2017-05-03 17:02:35 +0100 | [diff] [blame] | 1936 | dnl |
Tom Fogal | 31351dc | 2010-12-05 17:58:32 -0700 | [diff] [blame] | 1937 | dnl More DRI setup |
| 1938 | dnl |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 1939 | dnl Directory for DRI drivers |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 1940 | AC_ARG_WITH([dri-driverdir], |
Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 1941 | [AS_HELP_STRING([--with-dri-driverdir=DIR], |
Dan Nicholson | 5dbbde5 | 2008-05-06 06:21:41 -0700 | [diff] [blame] | 1942 | [directory for the DRI drivers @<:@${libdir}/dri@:>@])], |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 1943 | [DRI_DRIVER_INSTALL_DIR="$withval"], |
Dan Nicholson | 5dbbde5 | 2008-05-06 06:21:41 -0700 | [diff] [blame] | 1944 | [DRI_DRIVER_INSTALL_DIR='${libdir}/dri']) |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 1945 | AC_SUBST([DRI_DRIVER_INSTALL_DIR]) |
Chow Loong Jin | 35506de | 2009-10-28 14:34:14 +0800 | [diff] [blame] | 1946 | dnl Extra search path for DRI drivers |
| 1947 | AC_ARG_WITH([dri-searchpath], |
| 1948 | [AS_HELP_STRING([--with-dri-searchpath=DIRS...], |
| 1949 | [semicolon delimited DRI driver search directories @<:@${libdir}/dri@:>@])], |
| 1950 | [DRI_DRIVER_SEARCH_DIR="$withval"], |
| 1951 | [DRI_DRIVER_SEARCH_DIR='${DRI_DRIVER_INSTALL_DIR}']) |
| 1952 | AC_SUBST([DRI_DRIVER_SEARCH_DIR]) |
Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 1953 | dnl Which drivers to build - default is chosen by platform |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 1954 | AC_ARG_WITH([dri-drivers], |
Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 1955 | [AS_HELP_STRING([--with-dri-drivers@<:@=DIRS...@:>@], |
Emil Velikov | 65e67b9 | 2014-02-03 20:54:08 +0000 | [diff] [blame] | 1956 | [comma delimited classic DRI drivers list, e.g. |
Emil Velikov | 9d5b681 | 2017-02-01 22:30:23 +0000 | [diff] [blame] | 1957 | "i915,i965,nouveau,radeon,r200,swrast" @<:@default=auto@:>@])], |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 1958 | [with_dri_drivers="$withval"], |
Emil Velikov | ee55500 | 2014-02-04 17:26:38 +0000 | [diff] [blame] | 1959 | [with_dri_drivers=auto]) |
Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 1960 | |
Emil Velikov | 9eae750 | 2014-02-18 00:57:24 +0000 | [diff] [blame] | 1961 | if test "x$with_dri_drivers" = xauto; then |
| 1962 | if test "x$enable_opengl" = xyes -a "x$enable_dri" = xyes; then |
Emil Velikov | ee55500 | 2014-02-04 17:26:38 +0000 | [diff] [blame] | 1963 | with_dri_drivers="yes" |
Emil Velikov | 9eae750 | 2014-02-18 00:57:24 +0000 | [diff] [blame] | 1964 | else |
| 1965 | with_dri_drivers="no" |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 1966 | fi |
Emil Velikov | 9eae750 | 2014-02-18 00:57:24 +0000 | [diff] [blame] | 1967 | fi |
Emil Velikov | f42333b | 2014-02-24 22:57:59 +0000 | [diff] [blame] | 1968 | if test "x$with_dri_drivers" = xno; then |
| 1969 | with_dri_drivers='' |
| 1970 | fi |
Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 1971 | |
Emil Velikov | 6f9298d | 2017-08-02 19:39:04 +0100 | [diff] [blame] | 1972 | # Check for expat |
Vinson Lee | a0ed829 | 2017-08-05 13:31:50 -0700 | [diff] [blame] | 1973 | PKG_CHECK_MODULES([EXPAT], [expat],, |
| 1974 | [PKG_CHECK_MODULES([EXPAT], [expat21])] |
| 1975 | ) |
Emil Velikov | 6f9298d | 2017-08-02 19:39:04 +0100 | [diff] [blame] | 1976 | |
Emil Velikov | ee55500 | 2014-02-04 17:26:38 +0000 | [diff] [blame] | 1977 | dnl If $with_dri_drivers is yes, drivers will be added through |
| 1978 | dnl platform checks. Set DEFINES and LIB_DEPS |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 1979 | if test "x$enable_dri" = xyes; then |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 1980 | # Platform specific settings and drivers to build |
| 1981 | case "$host_os" in |
| 1982 | linux*) |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 1983 | case "$host_cpu" in |
Emil Velikov | 35f6eed | 2014-02-03 21:05:19 +0000 | [diff] [blame] | 1984 | powerpc* | sparc*) |
| 1985 | # Build only the drivers for cards that exist on PowerPC/sparc |
Emil Velikov | ee55500 | 2014-02-04 17:26:38 +0000 | [diff] [blame] | 1986 | if test "x$with_dri_drivers" = "xyes"; then |
| 1987 | with_dri_drivers="r200 radeon swrast" |
Dave Airlie | 2b0e75e | 2008-06-12 12:06:50 +1000 | [diff] [blame] | 1988 | fi |
| 1989 | ;; |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 1990 | esac |
| 1991 | ;; |
Jon TURNEY | c6e33ca | 2011-03-14 22:08:23 +0000 | [diff] [blame] | 1992 | cygwin*) |
Emil Velikov | ee55500 | 2014-02-04 17:26:38 +0000 | [diff] [blame] | 1993 | if test "x$with_dri_drivers" = "xyes"; then |
| 1994 | with_dri_drivers="swrast" |
Jon TURNEY | c6e33ca | 2011-03-14 22:08:23 +0000 | [diff] [blame] | 1995 | fi |
| 1996 | ;; |
Jon TURNEY | ff90a87 | 2014-05-11 14:38:52 +0100 | [diff] [blame] | 1997 | darwin*) |
Emil Velikov | dfc84c2 | 2016-12-05 19:52:43 +0000 | [diff] [blame] | 1998 | DEFINES="$DEFINES -DBUILDING_MESA" |
Jon TURNEY | ff90a87 | 2014-05-11 14:38:52 +0100 | [diff] [blame] | 1999 | if test "x$with_dri_drivers" = "xyes"; then |
| 2000 | with_dri_drivers="swrast" |
| 2001 | fi |
| 2002 | ;; |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 2003 | esac |
Dan Nicholson | 112a40e | 2008-02-21 10:17:19 -0800 | [diff] [blame] | 2004 | |
| 2005 | # default drivers |
Emil Velikov | ee55500 | 2014-02-04 17:26:38 +0000 | [diff] [blame] | 2006 | if test "x$with_dri_drivers" = "xyes"; then |
| 2007 | with_dri_drivers="i915 i965 nouveau r200 radeon swrast" |
Dan Nicholson | 112a40e | 2008-02-21 10:17:19 -0800 | [diff] [blame] | 2008 | fi |
| 2009 | |
Matt Turner | 2b3a8cb | 2012-01-13 14:30:36 -0500 | [diff] [blame] | 2010 | # put all the necessary libs together |
Emil Velikov | aec20d6 | 2013-10-29 21:14:41 +0000 | [diff] [blame] | 2011 | DRI_LIB_DEPS="$DRI_LIB_DEPS $SELINUX_LIBS $LIBDRM_LIBS $EXPAT_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS" |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 2012 | fi |
Eric Anholt | 1925a9a | 2013-06-26 13:04:51 -0700 | [diff] [blame] | 2013 | |
Emil Velikov | ee55500 | 2014-02-04 17:26:38 +0000 | [diff] [blame] | 2014 | AC_SUBST([DRI_LIB_DEPS]) |
Emil Velikov | ee55500 | 2014-02-04 17:26:38 +0000 | [diff] [blame] | 2015 | |
Emil Velikov | f42333b | 2014-02-24 22:57:59 +0000 | [diff] [blame] | 2016 | DRI_DIRS='' |
| 2017 | dnl Duplicates in DRI_DIRS are removed by sorting it at the end of this block |
| 2018 | if test -n "$with_dri_drivers"; then |
Emil Velikov | ee55500 | 2014-02-04 17:26:38 +0000 | [diff] [blame] | 2019 | if test "x$enable_opengl" != xyes; then |
| 2020 | AC_MSG_ERROR([--with-dri-drivers requires OpenGL]) |
| 2021 | fi |
| 2022 | |
| 2023 | dri_drivers=`IFS=', '; echo $with_dri_drivers` |
| 2024 | for driver in $dri_drivers; do |
Eric Anholt | 9856d65 | 2014-03-04 14:43:16 -0800 | [diff] [blame] | 2025 | DRI_DIRS="$DRI_DIRS $driver" |
Emil Velikov | ee55500 | 2014-02-04 17:26:38 +0000 | [diff] [blame] | 2026 | case "x$driver" in |
| 2027 | xi915) |
Dave Airlie | b457f67 | 2017-02-02 14:27:50 +1000 | [diff] [blame] | 2028 | require_libdrm "i915" |
Emil Velikov | 350e8e8 | 2017-02-15 13:07:54 +0000 | [diff] [blame] | 2029 | HAVE_I915_DRI=yes |
Lionel Landwerlin | 3c50ebc | 2017-06-15 12:28:07 +0100 | [diff] [blame] | 2030 | PKG_CHECK_MODULES([I915], [libdrm >= $LIBDRM_INTEL_REQUIRED libdrm_intel >= $LIBDRM_INTEL_REQUIRED]) |
Emil Velikov | ee55500 | 2014-02-04 17:26:38 +0000 | [diff] [blame] | 2031 | ;; |
| 2032 | xi965) |
Dave Airlie | b457f67 | 2017-02-02 14:27:50 +1000 | [diff] [blame] | 2033 | require_libdrm "i965" |
Emil Velikov | 350e8e8 | 2017-02-15 13:07:54 +0000 | [diff] [blame] | 2034 | HAVE_I965_DRI=yes |
Emil Velikov | ee55500 | 2014-02-04 17:26:38 +0000 | [diff] [blame] | 2035 | ;; |
| 2036 | xnouveau) |
Dave Airlie | b457f67 | 2017-02-02 14:27:50 +1000 | [diff] [blame] | 2037 | require_libdrm "nouveau" |
Emil Velikov | 350e8e8 | 2017-02-15 13:07:54 +0000 | [diff] [blame] | 2038 | HAVE_NOUVEAU_DRI=yes |
Ilia Mirkin | 2b4eaab | 2017-02-01 21:29:12 -0500 | [diff] [blame] | 2039 | PKG_CHECK_MODULES([NVVIEUX], [libdrm >= $LIBDRM_NVVIEUX_REQUIRED libdrm_nouveau >= $LIBDRM_NVVIEUX_REQUIRED]) |
Emil Velikov | ee55500 | 2014-02-04 17:26:38 +0000 | [diff] [blame] | 2040 | ;; |
| 2041 | xradeon) |
Dave Airlie | b457f67 | 2017-02-02 14:27:50 +1000 | [diff] [blame] | 2042 | require_libdrm "radeon" |
Emil Velikov | ee55500 | 2014-02-04 17:26:38 +0000 | [diff] [blame] | 2043 | HAVE_RADEON_DRI=yes; |
Ilia Mirkin | 2b4eaab | 2017-02-01 21:29:12 -0500 | [diff] [blame] | 2044 | PKG_CHECK_MODULES([RADEON], [libdrm >= $LIBDRM_RADEON_REQUIRED libdrm_radeon >= $LIBDRM_RADEON_REQUIRED]) |
Emil Velikov | ee55500 | 2014-02-04 17:26:38 +0000 | [diff] [blame] | 2045 | ;; |
| 2046 | xr200) |
Dave Airlie | b457f67 | 2017-02-02 14:27:50 +1000 | [diff] [blame] | 2047 | require_libdrm "r200" |
Emil Velikov | 350e8e8 | 2017-02-15 13:07:54 +0000 | [diff] [blame] | 2048 | HAVE_R200_DRI=yes |
Ilia Mirkin | 2b4eaab | 2017-02-01 21:29:12 -0500 | [diff] [blame] | 2049 | PKG_CHECK_MODULES([RADEON], [libdrm >= $LIBDRM_RADEON_REQUIRED libdrm_radeon >= $LIBDRM_RADEON_REQUIRED]) |
Emil Velikov | ee55500 | 2014-02-04 17:26:38 +0000 | [diff] [blame] | 2050 | ;; |
| 2051 | xswrast) |
Emil Velikov | 350e8e8 | 2017-02-15 13:07:54 +0000 | [diff] [blame] | 2052 | HAVE_SWRAST_DRI=yes |
Emil Velikov | ee55500 | 2014-02-04 17:26:38 +0000 | [diff] [blame] | 2053 | ;; |
| 2054 | *) |
| 2055 | AC_MSG_ERROR([classic DRI driver '$driver' does not exist]) |
| 2056 | ;; |
| 2057 | esac |
| 2058 | done |
Emil Velikov | f42333b | 2014-02-24 22:57:59 +0000 | [diff] [blame] | 2059 | DRI_DIRS=`echo $DRI_DIRS|tr " " "\n"|sort -u|tr "\n" " "` |
Emil Velikov | ee55500 | 2014-02-04 17:26:38 +0000 | [diff] [blame] | 2060 | fi |
Emil Velikov | ee55500 | 2014-02-04 17:26:38 +0000 | [diff] [blame] | 2061 | |
Jason Ekstrand | ca16373 | 2016-03-29 12:00:24 -0700 | [diff] [blame] | 2062 | |
Emil Velikov | 38abcdb | 2017-02-07 20:48:12 +0000 | [diff] [blame] | 2063 | dnl |
| 2064 | dnl Gallium LLVM |
Emil Velikov | b3b4156 | 2017-02-07 15:53:14 +0000 | [diff] [blame] | 2065 | dnl Deprecated: kept for backwards compatibility |
Tobias Droste | 04377cb | 2017-01-28 14:56:57 +0100 | [diff] [blame] | 2066 | dnl |
Emil Velikov | 38abcdb | 2017-02-07 20:48:12 +0000 | [diff] [blame] | 2067 | AC_ARG_ENABLE([gallium-llvm], |
| 2068 | [AS_HELP_STRING([--enable-gallium-llvm], |
Emil Velikov | b3b4156 | 2017-02-07 15:53:14 +0000 | [diff] [blame] | 2069 | [DEPRECATED: use --enable-llvm instead])], |
Emil Velikov | 38abcdb | 2017-02-07 20:48:12 +0000 | [diff] [blame] | 2070 | [enable_gallium_llvm="$enableval"], |
| 2071 | [enable_gallium_llvm=auto]) |
| 2072 | |
Emil Velikov | b3b4156 | 2017-02-07 15:53:14 +0000 | [diff] [blame] | 2073 | if test "x$enable_gallium_llvm" != xauto; then |
| 2074 | AC_MSG_WARN([The --enable-gallium-llvm option has been deprecated. Use --enable-llvm instead.]) |
| 2075 | enable_llvm=$enable_gallium_llvm |
| 2076 | fi |
| 2077 | |
| 2078 | dnl |
| 2079 | dnl LLVM |
| 2080 | dnl |
| 2081 | AC_ARG_ENABLE([llvm], |
| 2082 | [AS_HELP_STRING([--enable-llvm], |
| 2083 | [build with LLVM support @<:@default=enabled on x86/x86_64@:>@])], |
| 2084 | [enable_llvm="$enableval"], |
| 2085 | [enable_llvm=auto]) |
| 2086 | |
| 2087 | if test "x$enable_llvm" = xauto -a "x$FOUND_LLVM" = xyes; then |
Emil Velikov | d4840c0 | 2017-01-18 13:54:04 +0000 | [diff] [blame] | 2088 | if test "x$FOUND_LLVM" = xyes; then |
| 2089 | case "$host_cpu" in |
Emil Velikov | b3b4156 | 2017-02-07 15:53:14 +0000 | [diff] [blame] | 2090 | i*86|x86_64|amd64) enable_llvm=yes;; |
| 2091 | *) enable_llvm=no;; |
Emil Velikov | d4840c0 | 2017-01-18 13:54:04 +0000 | [diff] [blame] | 2092 | esac |
| 2093 | else |
Emil Velikov | b3b4156 | 2017-02-07 15:53:14 +0000 | [diff] [blame] | 2094 | enable_llvm=no |
Emil Velikov | d4840c0 | 2017-01-18 13:54:04 +0000 | [diff] [blame] | 2095 | fi |
Emil Velikov | 38abcdb | 2017-02-07 20:48:12 +0000 | [diff] [blame] | 2096 | fi |
| 2097 | |
Emil Velikov | b3b4156 | 2017-02-07 15:53:14 +0000 | [diff] [blame] | 2098 | if test "x$enable_llvm" = xyes -a "x$FOUND_LLVM" = xno; then |
| 2099 | AC_MSG_ERROR([--enable-llvm selected but llvm-config is not found]) |
Tobias Droste | 04377cb | 2017-01-28 14:56:57 +0100 | [diff] [blame] | 2100 | fi |
| 2101 | |
Jason Ekstrand | ca16373 | 2016-03-29 12:00:24 -0700 | [diff] [blame] | 2102 | # |
| 2103 | # Vulkan driver configuration |
| 2104 | # |
| 2105 | |
Jason Ekstrand | ca16373 | 2016-03-29 12:00:24 -0700 | [diff] [blame] | 2106 | AC_ARG_WITH([vulkan-drivers], |
| 2107 | [AS_HELP_STRING([--with-vulkan-drivers@<:@=DIRS...@:>@], |
| 2108 | [comma delimited Vulkan drivers list, e.g. |
Emil Velikov | cb6be5c | 2017-01-27 18:29:38 +0000 | [diff] [blame] | 2109 | "intel,radeon" |
Jason Ekstrand | 1a100d4 | 2016-04-14 13:04:22 -0700 | [diff] [blame] | 2110 | @<:@default=no@:>@])], |
Jason Ekstrand | ca16373 | 2016-03-29 12:00:24 -0700 | [diff] [blame] | 2111 | [with_vulkan_drivers="$withval"], |
Jason Ekstrand | 1a100d4 | 2016-04-14 13:04:22 -0700 | [diff] [blame] | 2112 | [with_vulkan_drivers="no"]) |
Jason Ekstrand | ca16373 | 2016-03-29 12:00:24 -0700 | [diff] [blame] | 2113 | |
| 2114 | # Doing '--without-vulkan-drivers' will set this variable to 'no'. Clear it |
| 2115 | # here so that the script doesn't choke on an unknown driver name later. |
Jason Ekstrand | 1a100d4 | 2016-04-14 13:04:22 -0700 | [diff] [blame] | 2116 | case "x$with_vulkan_drivers" in |
| 2117 | xyes) with_vulkan_drivers="$VULKAN_DRIVERS_DEFAULT" ;; |
| 2118 | xno) with_vulkan_drivers='' ;; |
Jason Ekstrand | ca16373 | 2016-03-29 12:00:24 -0700 | [diff] [blame] | 2119 | esac |
| 2120 | |
| 2121 | AC_ARG_WITH([vulkan-icddir], |
| 2122 | [AS_HELP_STRING([--with-vulkan-icddir=DIR], |
Andreas Boll | d66cb7c | 2016-07-19 12:30:40 +0200 | [diff] [blame] | 2123 | [directory for the Vulkan driver icd files @<:@${datarootdir}/vulkan/icd.d@:>@])], |
Jason Ekstrand | ca16373 | 2016-03-29 12:00:24 -0700 | [diff] [blame] | 2124 | [VULKAN_ICD_INSTALL_DIR="$withval"], |
Emil Velikov | cbc37f7 | 2016-06-24 16:35:05 +0100 | [diff] [blame] | 2125 | [VULKAN_ICD_INSTALL_DIR='${datarootdir}/vulkan/icd.d']) |
Jason Ekstrand | ca16373 | 2016-03-29 12:00:24 -0700 | [diff] [blame] | 2126 | AC_SUBST([VULKAN_ICD_INSTALL_DIR]) |
| 2127 | |
Emil Velikov | 05043e0 | 2016-12-05 20:14:24 +0000 | [diff] [blame] | 2128 | require_x11_dri3() { |
| 2129 | if echo "$platforms" | grep -q 'x11'; then |
| 2130 | if test "x$enable_dri3" != xyes; then |
| 2131 | AC_MSG_ERROR([$1 Vulkan driver requires DRI3 when built with X11]) |
| 2132 | fi |
| 2133 | fi |
| 2134 | } |
| 2135 | |
Jason Ekstrand | ca16373 | 2016-03-29 12:00:24 -0700 | [diff] [blame] | 2136 | if test -n "$with_vulkan_drivers"; then |
Matt Turner | d4fa083 | 2017-02-14 07:29:56 -0800 | [diff] [blame] | 2137 | if test "x$ac_cv_func_dl_iterate_phdr" = xno; then |
| 2138 | AC_MSG_ERROR([Vulkan drivers require the dl_iterate_phdr function]) |
| 2139 | fi |
| 2140 | |
Jason Ekstrand | ca16373 | 2016-03-29 12:00:24 -0700 | [diff] [blame] | 2141 | VULKAN_DRIVERS=`IFS=', '; echo $with_vulkan_drivers` |
| 2142 | for driver in $VULKAN_DRIVERS; do |
| 2143 | case "x$driver" in |
| 2144 | xintel) |
Emil Velikov | b1fb6e8 | 2016-12-01 21:21:10 +0000 | [diff] [blame] | 2145 | require_libdrm "ANV" |
Emil Velikov | 05043e0 | 2016-12-05 20:14:24 +0000 | [diff] [blame] | 2146 | require_x11_dri3 "ANV" |
Emil Velikov | 350e8e8 | 2017-02-15 13:07:54 +0000 | [diff] [blame] | 2147 | HAVE_INTEL_VULKAN=yes |
Jason Ekstrand | ca16373 | 2016-03-29 12:00:24 -0700 | [diff] [blame] | 2148 | ;; |
Dave Airlie | f4e499e | 2016-10-07 09:16:09 +1000 | [diff] [blame] | 2149 | xradeon) |
Emil Velikov | 8ff2937 | 2016-12-01 19:53:11 +0000 | [diff] [blame] | 2150 | require_libdrm "radv" |
Ilia Mirkin | 2b4eaab | 2017-02-01 21:29:12 -0500 | [diff] [blame] | 2151 | PKG_CHECK_MODULES([AMDGPU], [libdrm >= $LIBDRM_AMDGPU_REQUIRED libdrm_amdgpu >= $LIBDRM_AMDGPU_REQUIRED]) |
Tobias Droste | 5db8953 | 2016-11-19 02:39:10 +0100 | [diff] [blame] | 2152 | radeon_llvm_check $LLVM_REQUIRED_RADV "radv" |
Emil Velikov | 05043e0 | 2016-12-05 20:14:24 +0000 | [diff] [blame] | 2153 | require_x11_dri3 "radv" |
Eric Engestrom | c765c39 | 2018-06-04 12:08:15 +0100 | [diff] [blame] | 2154 | if test "x$acv_mako_found" = xno; then |
| 2155 | AC_MSG_ERROR([Python mako module v$PYTHON_MAKO_REQUIRED or higher not found]) |
| 2156 | fi |
Emil Velikov | 350e8e8 | 2017-02-15 13:07:54 +0000 | [diff] [blame] | 2157 | HAVE_RADEON_VULKAN=yes |
Emil Velikov | d1efa09 | 2017-01-13 16:51:31 +0000 | [diff] [blame] | 2158 | ;; |
Jason Ekstrand | ca16373 | 2016-03-29 12:00:24 -0700 | [diff] [blame] | 2159 | *) |
| 2160 | AC_MSG_ERROR([Vulkan driver '$driver' does not exist]) |
| 2161 | ;; |
| 2162 | esac |
| 2163 | done |
| 2164 | VULKAN_DRIVERS=`echo $VULKAN_DRIVERS|tr " " "\n"|sort -u|tr "\n" " "` |
| 2165 | fi |
| 2166 | |
| 2167 | |
Emil Velikov | 9f8dc3b | 2017-01-18 19:40:31 +0000 | [diff] [blame] | 2168 | DEFINES="$DEFINES -DENABLE_SHADER_CACHE" |
Eric Anholt | bdcee13 | 2013-09-27 16:57:11 -0700 | [diff] [blame] | 2169 | AM_CONDITIONAL(NEED_MEGADRIVER, test -n "$DRI_DIRS") |
Chuck Atkins | a92910a | 2016-04-18 10:09:17 -0400 | [diff] [blame] | 2170 | AM_CONDITIONAL(NEED_LIBMESA, test "x$enable_glx" = xxlib -o \ |
Eric Anholt | 1925a9a | 2013-06-26 13:04:51 -0700 | [diff] [blame] | 2171 | "x$enable_osmesa" = xyes -o \ |
Eric Anholt | bdcee13 | 2013-09-27 16:57:11 -0700 | [diff] [blame] | 2172 | -n "$DRI_DIRS") |
Matt Turner | 349845f | 2012-01-15 11:39:48 -0500 | [diff] [blame] | 2173 | |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 2174 | dnl |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 2175 | dnl OSMesa configuration |
| 2176 | dnl |
Dan Nicholson | 979ff51 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 2177 | |
Dan Nicholson | 6689f9e | 2007-12-05 21:04:15 -0800 | [diff] [blame] | 2178 | dnl Configure the channel bits for OSMesa (libOSMesa, libOSMesa16, ...) |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 2179 | AC_ARG_WITH([osmesa-bits], |
Dan Nicholson | 6689f9e | 2007-12-05 21:04:15 -0800 | [diff] [blame] | 2180 | [AS_HELP_STRING([--with-osmesa-bits=BITS], |
| 2181 | [OSMesa channel bits and library name: 8, 16, 32 @<:@default=8@:>@])], |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 2182 | [osmesa_bits="$withval"], |
| 2183 | [osmesa_bits=8]) |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 2184 | if test "x$osmesa_bits" != x8; then |
Chuck Atkins | a92910a | 2016-04-18 10:09:17 -0400 | [diff] [blame] | 2185 | if test "x$enable_dri" = xyes -o "x$enable_glx" != xno; then |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 2186 | AC_MSG_WARN([Ignoring OSMesa channel bits because of non-OSMesa driver]) |
| 2187 | osmesa_bits=8 |
| 2188 | fi |
Dan Nicholson | 6689f9e | 2007-12-05 21:04:15 -0800 | [diff] [blame] | 2189 | fi |
| 2190 | case "x$osmesa_bits" in |
| 2191 | x8) |
Tom Fogal | c0573fb | 2011-10-10 10:33:18 -0600 | [diff] [blame] | 2192 | OSMESA_LIB="${OSMESA_LIB}" |
Dan Nicholson | 6689f9e | 2007-12-05 21:04:15 -0800 | [diff] [blame] | 2193 | ;; |
| 2194 | x16|x32) |
Tom Fogal | c0573fb | 2011-10-10 10:33:18 -0600 | [diff] [blame] | 2195 | OSMESA_LIB="${OSMESA_LIB}$osmesa_bits" |
Dan Nicholson | 6689f9e | 2007-12-05 21:04:15 -0800 | [diff] [blame] | 2196 | DEFINES="$DEFINES -DCHAN_BITS=$osmesa_bits -DDEFAULT_SOFTWARE_DEPTH_BITS=31" |
| 2197 | ;; |
| 2198 | *) |
| 2199 | AC_MSG_ERROR([OSMesa bits '$osmesa_bits' is not a valid option]) |
| 2200 | ;; |
| 2201 | esac |
Dan Nicholson | 6689f9e | 2007-12-05 21:04:15 -0800 | [diff] [blame] | 2202 | |
Matt Turner | 2f142d5 | 2013-08-20 14:16:17 -0700 | [diff] [blame] | 2203 | if test "x$enable_osmesa" = xyes -o "x$enable_gallium_osmesa" = xyes; then |
Emil Velikov | 4d8267e | 2014-03-12 18:13:02 +0000 | [diff] [blame] | 2204 | # only link libraries with osmesa if shared |
| 2205 | if test "$enable_static" = no; then |
| 2206 | OSMESA_LIB_DEPS="-lm $PTHREAD_LIBS $SELINUX_LIBS $DLOPEN_LIBS" |
| 2207 | else |
| 2208 | OSMESA_LIB_DEPS="" |
| 2209 | fi |
Matt Turner | b6651ae | 2012-09-18 21:51:25 -0700 | [diff] [blame] | 2210 | OSMESA_PC_LIB_PRIV="-lm $PTHREAD_LIBS $SELINUX_LIBS $DLOPEN_LIBS" |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 2211 | fi |
Laurent Carlier | 284325d | 2012-06-24 09:51:27 +0200 | [diff] [blame] | 2212 | |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 2213 | AC_SUBST([OSMESA_LIB_DEPS]) |
Matt Turner | 7ef94c6 | 2012-01-31 21:34:42 -0500 | [diff] [blame] | 2214 | AC_SUBST([OSMESA_PC_REQ]) |
Dan Nicholson | 8be02fc | 2008-12-14 09:35:29 -0800 | [diff] [blame] | 2215 | AC_SUBST([OSMESA_PC_LIB_PRIV]) |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 2216 | |
| 2217 | dnl |
Benjamin Franzke | 42cdf40 | 2011-07-25 09:37:02 +0200 | [diff] [blame] | 2218 | dnl gbm configuration |
| 2219 | dnl |
Benjamin Franzke | 42cdf40 | 2011-07-25 09:37:02 +0200 | [diff] [blame] | 2220 | if test "x$enable_gbm" = xyes; then |
Emil Velikov | b628fdd | 2016-12-07 13:24:59 +0000 | [diff] [blame] | 2221 | require_dri_shared_libs_and_glapi "gbm" |
Benjamin Franzke | 42cdf40 | 2011-07-25 09:37:02 +0200 | [diff] [blame] | 2222 | fi |
Matt Turner | a9676ae | 2013-01-18 23:59:49 -0800 | [diff] [blame] | 2223 | AM_CONDITIONAL(HAVE_GBM, test "x$enable_gbm" = xyes) |
Emil Velikov | 6b21fda | 2016-09-07 18:56:36 +0100 | [diff] [blame] | 2224 | # FINISHME: GBM has a number of dependencies which we should add below |
| 2225 | GBM_PC_REQ_PRIV="" |
Benjamin Franzke | 42cdf40 | 2011-07-25 09:37:02 +0200 | [diff] [blame] | 2226 | GBM_PC_LIB_PRIV="$DLOPEN_LIBS" |
Benjamin Franzke | 42cdf40 | 2011-07-25 09:37:02 +0200 | [diff] [blame] | 2227 | AC_SUBST([GBM_PC_REQ_PRIV]) |
| 2228 | AC_SUBST([GBM_PC_LIB_PRIV]) |
Benjamin Franzke | 42cdf40 | 2011-07-25 09:37:02 +0200 | [diff] [blame] | 2229 | |
| 2230 | dnl |
Dan Nicholson | 53b3734 | 2009-02-25 17:45:34 -0800 | [diff] [blame] | 2231 | dnl EGL configuration |
| 2232 | dnl |
Marek Olšák | 440d71d | 2011-06-14 05:38:58 +0200 | [diff] [blame] | 2233 | |
Dan Nicholson | 66f9786 | 2009-04-29 12:11:43 -0700 | [diff] [blame] | 2234 | if test "x$enable_egl" = xyes; then |
Matt Turner | b6651ae | 2012-09-18 21:51:25 -0700 | [diff] [blame] | 2235 | EGL_LIB_DEPS="$DLOPEN_LIBS $SELINUX_LIBS $PTHREAD_LIBS" |
Marek Olšák | ad50abba | 2011-06-14 05:14:27 +0200 | [diff] [blame] | 2236 | |
Benjamin Franzke | 85fe948 | 2011-08-09 14:23:18 +0200 | [diff] [blame] | 2237 | AC_CHECK_FUNC(mincore, [DEFINES="$DEFINES -DHAVE_MINCORE"]) |
| 2238 | |
Emil Velikov | b628fdd | 2016-12-07 13:24:59 +0000 | [diff] [blame] | 2239 | require_dri_shared_libs_and_glapi "egl" |
Dan Nicholson | 53b3734 | 2009-02-25 17:45:34 -0800 | [diff] [blame] | 2240 | fi |
Matt Turner | a9676ae | 2013-01-18 23:59:49 -0800 | [diff] [blame] | 2241 | AM_CONDITIONAL(HAVE_EGL, test "x$enable_egl" = xyes) |
Dan Nicholson | 53b3734 | 2009-02-25 17:45:34 -0800 | [diff] [blame] | 2242 | AC_SUBST([EGL_LIB_DEPS]) |
| 2243 | |
Ilia Mirkin | fd5e058 | 2015-10-14 15:49:58 -0400 | [diff] [blame] | 2244 | gallium_st="mesa" |
| 2245 | |
Dan Nicholson | 53b3734 | 2009-02-25 17:45:34 -0800 | [diff] [blame] | 2246 | dnl |
Thomas Hellstrom | 424b121 | 2011-07-04 10:21:35 +0200 | [diff] [blame] | 2247 | dnl XA configuration |
| 2248 | dnl |
| 2249 | if test "x$enable_xa" = xyes; then |
Emil Velikov | e283e96 | 2014-02-24 22:58:10 +0000 | [diff] [blame] | 2250 | if test "x$with_gallium_drivers" = xswrast; then |
| 2251 | AC_MSG_ERROR([ |
| 2252 | Building xa requires at least one non swrast gallium driver. |
Matt Turner | 180e60d | 2014-06-10 18:08:10 -0700 | [diff] [blame] | 2253 | If you are looking to use libxatracker.so with the VMware driver, |
Emil Velikov | e283e96 | 2014-02-24 22:58:10 +0000 | [diff] [blame] | 2254 | make sure to include svga in the gallium drivers list, apart from |
| 2255 | enabling XA. |
| 2256 | Example: ./configure --enable-xa --with-gallium-drivers=svga...]) |
| 2257 | fi |
Ilia Mirkin | fd5e058 | 2015-10-14 15:49:58 -0400 | [diff] [blame] | 2258 | gallium_st="$gallium_st xa" |
Thomas Hellstrom | 424b121 | 2011-07-04 10:21:35 +0200 | [diff] [blame] | 2259 | fi |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 2260 | AM_CONDITIONAL(HAVE_ST_XA, test "x$enable_xa" = xyes) |
Thomas Hellstrom | 424b121 | 2011-07-04 10:21:35 +0200 | [diff] [blame] | 2261 | |
Emil Velikov | 037e9d3 | 2016-12-07 14:40:39 +0000 | [diff] [blame] | 2262 | if echo $platforms | grep -q "x11"; then |
Emil Velikov | b496fc2 | 2016-12-07 14:42:00 +0000 | [diff] [blame] | 2263 | have_xvmc_platform=yes |
| 2264 | else |
| 2265 | have_xvmc_platform=no |
| 2266 | fi |
| 2267 | |
| 2268 | if echo $platforms | grep -q "x11"; then |
Emil Velikov | 037e9d3 | 2016-12-07 14:40:39 +0000 | [diff] [blame] | 2269 | have_vdpau_platform=yes |
| 2270 | else |
| 2271 | have_vdpau_platform=no |
| 2272 | fi |
| 2273 | |
Emil Velikov | dfb1f27 | 2018-06-14 14:15:59 +0100 | [diff] [blame] | 2274 | if echo $platforms | egrep -q "x11|drm"; then |
Emil Velikov | 1914c81 | 2016-12-07 14:38:10 +0000 | [diff] [blame] | 2275 | have_omx_platform=yes |
| 2276 | else |
| 2277 | have_omx_platform=no |
| 2278 | fi |
| 2279 | |
Emil Velikov | dfb1f27 | 2018-06-14 14:15:59 +0100 | [diff] [blame] | 2280 | if echo $platforms | egrep -q "x11|drm|wayland"; then |
Emil Velikov | 63e11ac | 2016-12-07 14:32:45 +0000 | [diff] [blame] | 2281 | have_va_platform=yes |
| 2282 | else |
| 2283 | have_va_platform=no |
| 2284 | fi |
| 2285 | |
Thomas Hellstrom | 424b121 | 2011-07-04 10:21:35 +0200 | [diff] [blame] | 2286 | dnl |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 2287 | dnl Gallium G3DVL configuration |
| 2288 | dnl |
Emil Velikov | 816d392 | 2014-06-11 22:15:58 +0100 | [diff] [blame] | 2289 | if test -n "$with_gallium_drivers" -a "x$with_gallium_drivers" != xswrast; then |
Emil Velikov | b496fc2 | 2016-12-07 14:42:00 +0000 | [diff] [blame] | 2290 | if test "x$enable_xvmc" = xauto -a "x$have_xvmc_platform" = xyes; then |
Emil Velikov | 5ab6ded | 2016-12-07 14:43:04 +0000 | [diff] [blame] | 2291 | PKG_CHECK_EXISTS([xvmc >= $XVMC_REQUIRED], [enable_xvmc=yes], [enable_xvmc=no]) |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 2292 | fi |
| 2293 | |
Emil Velikov | 037e9d3 | 2016-12-07 14:40:39 +0000 | [diff] [blame] | 2294 | if test "x$enable_vdpau" = xauto -a "x$have_vdpau_platform" = xyes; then |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 2295 | PKG_CHECK_EXISTS([vdpau >= $VDPAU_REQUIRED], [enable_vdpau=yes], [enable_vdpau=no]) |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 2296 | fi |
Christian König | 15e39ca | 2013-08-05 11:41:27 -0600 | [diff] [blame] | 2297 | |
Gurkirpal Singh | 6a8aa11 | 2017-08-12 21:37:15 +0530 | [diff] [blame] | 2298 | if test "x$enable_omx_bellagio" = xauto -a "x$have_omx_platform" = xyes; then |
| 2299 | PKG_CHECK_EXISTS([libomxil-bellagio >= $LIBOMXIL_BELLAGIO_REQUIRED], [enable_omx_bellagio=yes], [enable_omx_bellagio=no]) |
Christian König | 15e39ca | 2013-08-05 11:41:27 -0600 | [diff] [blame] | 2300 | fi |
Christian König | 3867933 | 2014-07-02 16:35:28 -0400 | [diff] [blame] | 2301 | |
Gurkirpal Singh | e2afa15 | 2018-01-20 05:37:53 +0530 | [diff] [blame] | 2302 | if test "x$enable_omx_tizonia" = xauto -a "x$have_omx_platform" = xyes; then |
| 2303 | PKG_CHECK_EXISTS([libtizonia >= $LIBOMXIL_TIZONIA_REQUIRED], [enable_omx_tizonia=yes], [enable_omx_tizonia=no]) |
| 2304 | fi |
| 2305 | |
Emil Velikov | 63e11ac | 2016-12-07 14:32:45 +0000 | [diff] [blame] | 2306 | if test "x$enable_va" = xauto -a "x$have_va_platform" = xyes; then |
Emil Velikov | 303bc36 | 2014-11-09 04:44:13 +0000 | [diff] [blame] | 2307 | PKG_CHECK_EXISTS([libva >= $LIBVA_REQUIRED], [enable_va=yes], [enable_va=no]) |
Christian König | 3867933 | 2014-07-02 16:35:28 -0400 | [diff] [blame] | 2308 | fi |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 2309 | fi |
| 2310 | |
Emil Velikov | c39dbfd | 2015-02-10 15:11:09 +0000 | [diff] [blame] | 2311 | if test "x$enable_dri" = xyes -o \ |
| 2312 | "x$enable_xvmc" = xyes -o \ |
Emil Velikov | 2dbaeda | 2014-11-09 04:44:14 +0000 | [diff] [blame] | 2313 | "x$enable_vdpau" = xyes -o \ |
Gurkirpal Singh | 6a8aa11 | 2017-08-12 21:37:15 +0530 | [diff] [blame] | 2314 | "x$enable_omx_bellagio" = xyes -o \ |
Gurkirpal Singh | e2afa15 | 2018-01-20 05:37:53 +0530 | [diff] [blame] | 2315 | "x$enable_omx_tizonia" = xyes -o \ |
Emil Velikov | 2dbaeda | 2014-11-09 04:44:14 +0000 | [diff] [blame] | 2316 | "x$enable_va" = xyes; then |
Emil Velikov | 2dbaeda | 2014-11-09 04:44:14 +0000 | [diff] [blame] | 2317 | need_gallium_vl=yes |
| 2318 | fi |
| 2319 | AM_CONDITIONAL(NEED_GALLIUM_VL, test "x$need_gallium_vl" = xyes) |
| 2320 | |
Emil Velikov | dd7b667 | 2015-02-16 18:22:16 +0000 | [diff] [blame] | 2321 | if test "x$enable_xvmc" = xyes -o \ |
| 2322 | "x$enable_vdpau" = xyes -o \ |
Gurkirpal Singh | 6a8aa11 | 2017-08-12 21:37:15 +0530 | [diff] [blame] | 2323 | "x$enable_omx_bellagio" = xyes -o \ |
Gurkirpal Singh | e2afa15 | 2018-01-20 05:37:53 +0530 | [diff] [blame] | 2324 | "x$enable_omx_tizonia" = xyes -o \ |
Emil Velikov | dd7b667 | 2015-02-16 18:22:16 +0000 | [diff] [blame] | 2325 | "x$enable_va" = xyes; then |
Emil Velikov | 85a0172 | 2017-10-31 18:58:10 +0000 | [diff] [blame] | 2326 | if echo $platforms | grep -q "x11"; then |
| 2327 | PKG_CHECK_MODULES([VL], [x11-xcb xcb xcb-dri2 >= $XCBDRI2_REQUIRED]) |
| 2328 | fi |
Emil Velikov | dd7b667 | 2015-02-16 18:22:16 +0000 | [diff] [blame] | 2329 | need_gallium_vl_winsys=yes |
| 2330 | fi |
| 2331 | AM_CONDITIONAL(NEED_GALLIUM_VL_WINSYS, test "x$need_gallium_vl_winsys" = xyes) |
| 2332 | |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 2333 | if test "x$enable_xvmc" = xyes; then |
Emil Velikov | b496fc2 | 2016-12-07 14:42:00 +0000 | [diff] [blame] | 2334 | if test "x$have_xvmc_platform" != xyes; then |
| 2335 | AC_MSG_ERROR([XVMC requires the x11 platforms]) |
| 2336 | fi |
Emil Velikov | 2dbaeda | 2014-11-09 04:44:14 +0000 | [diff] [blame] | 2337 | PKG_CHECK_MODULES([XVMC], [xvmc >= $XVMC_REQUIRED]) |
Ilia Mirkin | fd5e058 | 2015-10-14 15:49:58 -0400 | [diff] [blame] | 2338 | gallium_st="$gallium_st xvmc" |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 2339 | fi |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 2340 | AM_CONDITIONAL(HAVE_ST_XVMC, test "x$enable_xvmc" = xyes) |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 2341 | |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 2342 | if test "x$enable_vdpau" = xyes; then |
Emil Velikov | 037e9d3 | 2016-12-07 14:40:39 +0000 | [diff] [blame] | 2343 | if test "x$have_vdpau_platform" != xyes; then |
| 2344 | AC_MSG_ERROR([VDPAU requires the x11 platforms]) |
| 2345 | fi |
Emil Velikov | 2dbaeda | 2014-11-09 04:44:14 +0000 | [diff] [blame] | 2346 | PKG_CHECK_MODULES([VDPAU], [vdpau >= $VDPAU_REQUIRED]) |
Ilia Mirkin | fd5e058 | 2015-10-14 15:49:58 -0400 | [diff] [blame] | 2347 | gallium_st="$gallium_st vdpau" |
Christian König | 37402aa | 2016-01-20 16:19:08 +0100 | [diff] [blame] | 2348 | DEFINES="$DEFINES -DHAVE_ST_VDPAU" |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 2349 | fi |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 2350 | AM_CONDITIONAL(HAVE_ST_VDPAU, test "x$enable_vdpau" = xyes) |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 2351 | |
Gurkirpal Singh | 6a8aa11 | 2017-08-12 21:37:15 +0530 | [diff] [blame] | 2352 | if test "x$enable_omx_bellagio" = xyes; then |
Emil Velikov | 1914c81 | 2016-12-07 14:38:10 +0000 | [diff] [blame] | 2353 | if test "x$have_omx_platform" != xyes; then |
| 2354 | AC_MSG_ERROR([OMX requires at least one of the x11 or drm platforms]) |
| 2355 | fi |
Gurkirpal Singh | 6a8aa11 | 2017-08-12 21:37:15 +0530 | [diff] [blame] | 2356 | PKG_CHECK_MODULES([OMX_BELLAGIO], [libomxil-bellagio >= $LIBOMXIL_BELLAGIO_REQUIRED]) |
| 2357 | gallium_st="$gallium_st omx_bellagio" |
Gurkirpal Singh | e2afa15 | 2018-01-20 05:37:53 +0530 | [diff] [blame] | 2358 | AC_DEFINE([ENABLE_ST_OMX_BELLAGIO], 1, [Use Bellagio for OMX IL]) |
Mathias Fröhlich | 880c171 | 2018-03-16 06:34:35 +0100 | [diff] [blame] | 2359 | else |
| 2360 | AC_DEFINE([ENABLE_ST_OMX_BELLAGIO], 0) |
Christian König | 15e39ca | 2013-08-05 11:41:27 -0600 | [diff] [blame] | 2361 | fi |
Gurkirpal Singh | 6a8aa11 | 2017-08-12 21:37:15 +0530 | [diff] [blame] | 2362 | AM_CONDITIONAL(HAVE_ST_OMX_BELLAGIO, test "x$enable_omx_bellagio" = xyes) |
Christian König | 15e39ca | 2013-08-05 11:41:27 -0600 | [diff] [blame] | 2363 | |
Gurkirpal Singh | e2afa15 | 2018-01-20 05:37:53 +0530 | [diff] [blame] | 2364 | if test "x$enable_omx_tizonia" = xyes; then |
| 2365 | if test "x$have_omx_platform" != xyes; then |
| 2366 | AC_MSG_ERROR([OMX requires at least one of the x11 or drm platforms]) |
| 2367 | fi |
| 2368 | PKG_CHECK_MODULES([OMX_TIZONIA], |
| 2369 | [libtizonia >= $LIBOMXIL_TIZONIA_REQUIRED |
| 2370 | tizilheaders >= $LIBOMXIL_TIZONIA_REQUIRED |
| 2371 | libtizplatform >= $LIBOMXIL_TIZONIA_REQUIRED]) |
| 2372 | gallium_st="$gallium_st omx_tizonia" |
| 2373 | AC_DEFINE([ENABLE_ST_OMX_TIZONIA], 1, [Use Tizoina for OMX IL]) |
Mathias Fröhlich | 880c171 | 2018-03-16 06:34:35 +0100 | [diff] [blame] | 2374 | else |
| 2375 | AC_DEFINE([ENABLE_ST_OMX_TIZONIA], 0) |
Gurkirpal Singh | e2afa15 | 2018-01-20 05:37:53 +0530 | [diff] [blame] | 2376 | fi |
| 2377 | AM_CONDITIONAL(HAVE_ST_OMX_TIZONIA, test "x$enable_omx_tizonia" = xyes) |
| 2378 | |
Christian König | 3867933 | 2014-07-02 16:35:28 -0400 | [diff] [blame] | 2379 | if test "x$enable_va" = xyes; then |
Emil Velikov | 63e11ac | 2016-12-07 14:32:45 +0000 | [diff] [blame] | 2380 | if test "x$have_va_platform" != xyes; then |
| 2381 | AC_MSG_ERROR([VA requires at least one of the x11 drm or wayland platforms]) |
| 2382 | fi |
Emil Velikov | 2dbaeda | 2014-11-09 04:44:14 +0000 | [diff] [blame] | 2383 | PKG_CHECK_MODULES([VA], [libva >= $LIBVA_REQUIRED]) |
Ilia Mirkin | fd5e058 | 2015-10-14 15:49:58 -0400 | [diff] [blame] | 2384 | gallium_st="$gallium_st va" |
Christian König | 3867933 | 2014-07-02 16:35:28 -0400 | [diff] [blame] | 2385 | fi |
| 2386 | AM_CONDITIONAL(HAVE_ST_VA, test "x$enable_va" = xyes) |
| 2387 | |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 2388 | dnl |
Joakim Sindholt | fdd9657 | 2011-08-04 15:14:06 +0200 | [diff] [blame] | 2389 | dnl Nine Direct3D9 configuration |
| 2390 | dnl |
| 2391 | if test "x$enable_nine" = xyes; then |
| 2392 | if ! echo "$with_gallium_drivers" | grep -q 'swrast'; then |
| 2393 | AC_MSG_ERROR([nine requires the gallium swrast driver]) |
| 2394 | fi |
Tobias Nygren | 52e4e47 | 2015-04-17 20:18:48 +0200 | [diff] [blame] | 2395 | if test "x$with_gallium_drivers" = xswrast; then |
Joakim Sindholt | fdd9657 | 2011-08-04 15:14:06 +0200 | [diff] [blame] | 2396 | AC_MSG_ERROR([nine requires at least one non-swrast gallium driver]) |
| 2397 | fi |
David Heidelberg | 56717c0 | 2015-04-11 00:13:53 +0200 | [diff] [blame] | 2398 | if test $GCC_VERSION_MAJOR -lt 4 -o $GCC_VERSION_MAJOR -eq 4 -a $GCC_VERSION_MINOR -lt 6; then |
| 2399 | AC_MSG_ERROR([gcc >= 4.6 is required to build nine]) |
| 2400 | fi |
| 2401 | |
Joakim Sindholt | fdd9657 | 2011-08-04 15:14:06 +0200 | [diff] [blame] | 2402 | if test "x$enable_dri3" = xno; then |
| 2403 | AC_MSG_WARN([using nine together with wine requires DRI3 enabled system]) |
| 2404 | fi |
| 2405 | |
Ilia Mirkin | fd5e058 | 2015-10-14 15:49:58 -0400 | [diff] [blame] | 2406 | gallium_st="$gallium_st nine" |
Joakim Sindholt | fdd9657 | 2011-08-04 15:14:06 +0200 | [diff] [blame] | 2407 | fi |
| 2408 | AM_CONDITIONAL(HAVE_ST_NINE, test "x$enable_nine" = xyes) |
| 2409 | |
| 2410 | dnl |
Francisco Jerez | c6db1b3 | 2012-04-20 16:56:19 +0200 | [diff] [blame] | 2411 | dnl OpenCL configuration |
| 2412 | dnl |
| 2413 | |
Tom Stellard | ea76f03 | 2012-06-15 16:52:16 -0400 | [diff] [blame] | 2414 | AC_ARG_WITH([clang-libdir], |
| 2415 | [AS_HELP_STRING([--with-clang-libdir], |
| 2416 | [Path to Clang libraries @<:@default=llvm-config --libdir@:>@])], |
| 2417 | [CLANG_LIBDIR="$withval"], |
Emil Velikov | 2e830bb | 2014-02-24 22:58:07 +0000 | [diff] [blame] | 2418 | [CLANG_LIBDIR='']) |
Tom Stellard | ea76f03 | 2012-06-15 16:52:16 -0400 | [diff] [blame] | 2419 | |
Tom Stellard | a64d3dd | 2013-09-05 16:26:17 -0700 | [diff] [blame] | 2420 | PKG_CHECK_EXISTS([libclc], [have_libclc=yes], [have_libclc=no]) |
Tom Stellard | c79e766 | 2012-03-12 13:53:20 -0400 | [diff] [blame] | 2421 | |
Francisco Jerez | c6db1b3 | 2012-04-20 16:56:19 +0200 | [diff] [blame] | 2422 | if test "x$enable_opencl" = xyes; then |
Emil Velikov | 8015ffe | 2014-02-11 14:47:37 +0000 | [diff] [blame] | 2423 | if test -z "$with_gallium_drivers"; then |
Francisco Jerez | c6db1b3 | 2012-04-20 16:56:19 +0200 | [diff] [blame] | 2424 | AC_MSG_ERROR([cannot enable OpenCL without Gallium]) |
| 2425 | fi |
Tom Stellard | 79d77b3 | 2012-04-20 16:56:46 +0200 | [diff] [blame] | 2426 | |
Gert Wollny | 6905d00 | 2017-10-18 17:05:27 +0200 | [diff] [blame] | 2427 | if test "x$HAVE_CXX11" != "xyes"; then |
| 2428 | AC_MSG_ERROR([clover requires c++11 support]) |
Tom Stellard | 79d77b3 | 2012-04-20 16:56:46 +0200 | [diff] [blame] | 2429 | fi |
| 2430 | |
Tom Stellard | a64d3dd | 2013-09-05 16:26:17 -0700 | [diff] [blame] | 2431 | if test "x$have_libclc" = xno; then |
| 2432 | AC_MSG_ERROR([pkg-config cannot find libclc.pc which is required to build clover. |
| 2433 | Make sure the directory containing libclc.pc is specified in your |
| 2434 | PKG_CONFIG_PATH environment variable. |
| 2435 | By default libclc.pc is installed to /usr/local/share/pkgconfig/]) |
| 2436 | else |
Matt Turner | 0b361f9 | 2017-03-07 21:23:57 -0800 | [diff] [blame] | 2437 | LIBCLC_INCLUDEDIR=`$PKG_CONFIG --variable=includedir libclc` |
| 2438 | LIBCLC_LIBEXECDIR=`$PKG_CONFIG --variable=libexecdir libclc` |
| 2439 | AC_SUBST([LIBCLC_INCLUDEDIR]) |
| 2440 | AC_SUBST([LIBCLC_LIBEXECDIR]) |
Johannes Obermayr | 959e83d | 2012-11-30 01:44:56 +0100 | [diff] [blame] | 2441 | fi |
| 2442 | |
Ilia Mirkin | fd5e058 | 2015-10-14 15:49:58 -0400 | [diff] [blame] | 2443 | gallium_st="$gallium_st clover" |
Tom Stellard | 07567c1 | 2013-09-18 00:36:55 -0700 | [diff] [blame] | 2444 | |
| 2445 | if test "x$enable_opencl_icd" = xyes; then |
| 2446 | OPENCL_LIBNAME="MesaOpenCL" |
| 2447 | else |
| 2448 | OPENCL_LIBNAME="OpenCL" |
| 2449 | fi |
Jan Vesely | ab53830 | 2014-10-21 11:59:34 -0400 | [diff] [blame] | 2450 | |
| 2451 | if test "x$have_libelf" != xyes; then |
| 2452 | AC_MSG_ERROR([Clover requires libelf]) |
| 2453 | fi |
Tobias Droste | 62f4e6f | 2016-11-19 02:39:05 +0100 | [diff] [blame] | 2454 | |
Matt Turner | 7d1195c | 2017-03-02 04:43:21 +0000 | [diff] [blame] | 2455 | if test "x${ac_cv_cxx_compiler_gnu}" = xyes; then |
| 2456 | altivec_enabled=no |
| 2457 | AC_COMPILE_IFELSE([AC_LANG_SOURCE([ |
| 2458 | #if !defined(__VEC__) || !defined(__ALTIVEC__) |
| 2459 | #error "AltiVec not enabled" |
| 2460 | #endif |
| 2461 | ])], altivec_enabled=yes) |
| 2462 | |
| 2463 | if test "$altivec_enabled" = yes; then |
| 2464 | CLOVER_STD_OVERRIDE="-std=gnu++11" |
| 2465 | fi |
| 2466 | AC_SUBST([CLOVER_STD_OVERRIDE]) |
| 2467 | fi |
| 2468 | |
Emil Velikov | a66ffcd | 2017-02-07 16:24:44 +0000 | [diff] [blame] | 2469 | llvm_require_version $LLVM_REQUIRED_OPENCL "opencl" |
Tobias Droste | 62f4e6f | 2016-11-19 02:39:05 +0100 | [diff] [blame] | 2470 | |
Tobias Droste | 45c8a4e | 2016-11-19 02:39:09 +0100 | [diff] [blame] | 2471 | llvm_add_default_components "opencl" |
Tobias Droste | 62f4e6f | 2016-11-19 02:39:05 +0100 | [diff] [blame] | 2472 | llvm_add_component "all-targets" "opencl" |
Emil Velikov | df3a430 | 2017-10-05 11:19:08 +0100 | [diff] [blame] | 2473 | llvm_add_component "coverage" "opencl" |
Tobias Droste | 62f4e6f | 2016-11-19 02:39:05 +0100 | [diff] [blame] | 2474 | llvm_add_component "linker" "opencl" |
| 2475 | llvm_add_component "instrumentation" "opencl" |
| 2476 | llvm_add_component "ipo" "opencl" |
| 2477 | llvm_add_component "irreader" "opencl" |
Emil Velikov | df3a430 | 2017-10-05 11:19:08 +0100 | [diff] [blame] | 2478 | llvm_add_component "lto" "opencl" |
Tobias Droste | 62f4e6f | 2016-11-19 02:39:05 +0100 | [diff] [blame] | 2479 | llvm_add_component "option" "opencl" |
| 2480 | llvm_add_component "objcarcopts" "opencl" |
| 2481 | llvm_add_component "profiledata" "opencl" |
Emil Velikov | df3a430 | 2017-10-05 11:19:08 +0100 | [diff] [blame] | 2482 | llvm_add_optional_component "coroutines" "opencl" |
Tobias Droste | 62f4e6f | 2016-11-19 02:39:05 +0100 | [diff] [blame] | 2483 | |
| 2484 | dnl Check for Clang internal headers |
| 2485 | if test -z "$CLANG_LIBDIR"; then |
| 2486 | CLANG_LIBDIR=${LLVM_LIBDIR} |
| 2487 | fi |
| 2488 | CLANG_RESOURCE_DIR=$CLANG_LIBDIR/clang/${LLVM_VERSION} |
| 2489 | AS_IF([test ! -f "$CLANG_RESOURCE_DIR/include/stddef.h"], |
| 2490 | [AC_MSG_ERROR([Could not find clang internal header stddef.h in $CLANG_RESOURCE_DIR Use --with-clang-libdir to specify the correct path to the clang libraries.])]) |
Francisco Jerez | c6db1b3 | 2012-04-20 16:56:19 +0200 | [diff] [blame] | 2491 | fi |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 2492 | AM_CONDITIONAL(HAVE_CLOVER, test "x$enable_opencl" = xyes) |
Tom Stellard | 07567c1 | 2013-09-18 00:36:55 -0700 | [diff] [blame] | 2493 | AM_CONDITIONAL(HAVE_CLOVER_ICD, test "x$enable_opencl_icd" = xyes) |
| 2494 | AC_SUBST([OPENCL_LIBNAME]) |
Tobias Droste | c702369 | 2016-11-19 02:39:06 +0100 | [diff] [blame] | 2495 | AC_SUBST([CLANG_RESOURCE_DIR]) |
Francisco Jerez | c6db1b3 | 2012-04-20 16:56:19 +0200 | [diff] [blame] | 2496 | |
| 2497 | dnl |
Jakob Bornecrantz | 7e54d7d | 2009-02-11 02:38:21 +0100 | [diff] [blame] | 2498 | dnl Gallium configuration |
| 2499 | dnl |
Matt Turner | a9676ae | 2013-01-18 23:59:49 -0800 | [diff] [blame] | 2500 | AM_CONDITIONAL(HAVE_GALLIUM, test -n "$with_gallium_drivers") |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 2501 | |
Eric Anholt | 8861202 | 2012-02-05 10:46:13 +0100 | [diff] [blame] | 2502 | # libEGL wants to default to the first platform specified in |
| 2503 | # ./configure. parse that here. |
Emil Velikov | 73682f8 | 2016-11-25 18:34:03 +0000 | [diff] [blame] | 2504 | if test "x$platforms" != "x"; then |
| 2505 | FIRST_PLATFORM_CAPS=`echo $platforms | sed 's| .*||' | tr '[[a-z]]' '[[A-Z]]'` |
Eric Anholt | 8861202 | 2012-02-05 10:46:13 +0100 | [diff] [blame] | 2506 | EGL_NATIVE_PLATFORM="_EGL_PLATFORM_$FIRST_PLATFORM_CAPS" |
| 2507 | else |
| 2508 | EGL_NATIVE_PLATFORM="_EGL_INVALID_PLATFORM" |
| 2509 | fi |
| 2510 | |
Eric Anholt | 8861202 | 2012-02-05 10:46:13 +0100 | [diff] [blame] | 2511 | AC_SUBST([EGL_NATIVE_PLATFORM]) |
Eric Anholt | 8861202 | 2012-02-05 10:46:13 +0100 | [diff] [blame] | 2512 | AC_SUBST([EGL_CFLAGS]) |
Chia-I Wu | 49381d6 | 2010-01-11 01:23:01 +0800 | [diff] [blame] | 2513 | |
Ross Burton | 1a7275d | 2013-06-27 12:35:07 +0100 | [diff] [blame] | 2514 | # If we don't have the X11 platform, set this define so we don't try to include |
| 2515 | # the X11 headers. |
Emil Velikov | 73682f8 | 2016-11-25 18:34:03 +0000 | [diff] [blame] | 2516 | if ! echo "$platforms" | grep -q 'x11'; then |
Ross Burton | 1a7275d | 2013-06-27 12:35:07 +0100 | [diff] [blame] | 2517 | DEFINES="$DEFINES -DMESA_EGL_NO_X11_HEADERS" |
| 2518 | GL_PC_CFLAGS="$GL_PC_CFLAGS -DMESA_EGL_NO_X11_HEADERS" |
| 2519 | fi |
| 2520 | |
Alexandre Demers | 3ea3695 | 2012-04-04 10:54:56 +0200 | [diff] [blame] | 2521 | dnl Directory for XVMC libs |
| 2522 | AC_ARG_WITH([xvmc-libdir], |
| 2523 | [AS_HELP_STRING([--with-xvmc-libdir=DIR], |
| 2524 | [directory for the XVMC libraries @<:@default=${libdir}@:>@])], |
| 2525 | [XVMC_LIB_INSTALL_DIR="$withval"], |
| 2526 | [XVMC_LIB_INSTALL_DIR='${libdir}']) |
| 2527 | AC_SUBST([XVMC_LIB_INSTALL_DIR]) |
| 2528 | |
Tom Stellard | 79d77b3 | 2012-04-20 16:56:46 +0200 | [diff] [blame] | 2529 | dnl |
| 2530 | dnl Gallium Tests |
| 2531 | dnl |
Matt Turner | a9676ae | 2013-01-18 23:59:49 -0800 | [diff] [blame] | 2532 | AM_CONDITIONAL(HAVE_GALLIUM_TESTS, test "x$enable_gallium_tests" = xyes) |
Tom Stellard | 79d77b3 | 2012-04-20 16:56:46 +0200 | [diff] [blame] | 2533 | |
Thomas Balling Sørensen | 3299997 | 2010-07-14 00:34:56 +0200 | [diff] [blame] | 2534 | dnl Directory for VDPAU libs |
| 2535 | AC_ARG_WITH([vdpau-libdir], |
| 2536 | [AS_HELP_STRING([--with-vdpau-libdir=DIR], |
Christian König | 5ce06d1 | 2014-10-09 18:01:19 +0200 | [diff] [blame] | 2537 | [directory for the VDPAU libraries @<:@default=${libdir}/vdpau@:>@])], |
Thomas Balling Sørensen | 3299997 | 2010-07-14 00:34:56 +0200 | [diff] [blame] | 2538 | [VDPAU_LIB_INSTALL_DIR="$withval"], |
Christian König | 5ce06d1 | 2014-10-09 18:01:19 +0200 | [diff] [blame] | 2539 | [VDPAU_LIB_INSTALL_DIR='${libdir}/vdpau']) |
Thomas Balling Sørensen | 3299997 | 2010-07-14 00:34:56 +0200 | [diff] [blame] | 2540 | AC_SUBST([VDPAU_LIB_INSTALL_DIR]) |
Younes Manton | 40cd082 | 2010-03-05 23:11:05 -0500 | [diff] [blame] | 2541 | |
Gurkirpal Singh | 6a8aa11 | 2017-08-12 21:37:15 +0530 | [diff] [blame] | 2542 | dnl Directory for OMX_BELLAGIO libs |
Emil Velikov | 254aafb | 2014-03-03 02:21:53 +0000 | [diff] [blame] | 2543 | |
Gurkirpal Singh | 6a8aa11 | 2017-08-12 21:37:15 +0530 | [diff] [blame] | 2544 | AC_ARG_WITH([omx-bellagio-libdir], |
| 2545 | [AS_HELP_STRING([--with-omx-bellagio-libdir=DIR], |
| 2546 | [directory for the OMX_BELLAGIO libraries])], |
| 2547 | [OMX_BELLAGIO_LIB_INSTALL_DIR="$withval"], |
| 2548 | [OMX_BELLAGIO_LIB_INSTALL_DIR=`$PKG_CONFIG --exists libomxil-bellagio && \ |
| 2549 | $PKG_CONFIG --define-variable=libdir=\$libdir --variable=pluginsdir libomxil-bellagio`]) |
| 2550 | AC_SUBST([OMX_BELLAGIO_LIB_INSTALL_DIR]) |
Christian König | 15e39ca | 2013-08-05 11:41:27 -0600 | [diff] [blame] | 2551 | |
Gurkirpal Singh | e2afa15 | 2018-01-20 05:37:53 +0530 | [diff] [blame] | 2552 | dnl Directory for OMX_TIZONIA libs |
| 2553 | |
| 2554 | AC_ARG_WITH([omx-tizonia-libdir], |
| 2555 | [AS_HELP_STRING([--with-omx-tizonia-libdir=DIR], |
| 2556 | [directory for the OMX_TIZONIA libraries])], |
| 2557 | [OMX_TIZONIA_LIB_INSTALL_DIR="$withval"], |
| 2558 | [OMX_TIZONIA_LIB_INSTALL_DIR=`$PKG_CONFIG --define-variable=libdir=\$libdir --variable=pluginsdir libtizcore`]) |
| 2559 | AC_SUBST([OMX_TIZONIA_LIB_INSTALL_DIR]) |
| 2560 | |
Christian König | 3867933 | 2014-07-02 16:35:28 -0400 | [diff] [blame] | 2561 | dnl Directory for VA libs |
| 2562 | |
| 2563 | AC_ARG_WITH([va-libdir], |
| 2564 | [AS_HELP_STRING([--with-va-libdir=DIR], |
Christian König | d561a42 | 2014-10-09 19:51:48 +0200 | [diff] [blame] | 2565 | [directory for the VA libraries @<:@${libdir}/dri@:>@])], |
Christian König | 3867933 | 2014-07-02 16:35:28 -0400 | [diff] [blame] | 2566 | [VA_LIB_INSTALL_DIR="$withval"], |
Christian König | d561a42 | 2014-10-09 19:51:48 +0200 | [diff] [blame] | 2567 | [VA_LIB_INSTALL_DIR="${libdir}/dri"]) |
Christian König | 3867933 | 2014-07-02 16:35:28 -0400 | [diff] [blame] | 2568 | AC_SUBST([VA_LIB_INSTALL_DIR]) |
| 2569 | |
Joakim Sindholt | fdd9657 | 2011-08-04 15:14:06 +0200 | [diff] [blame] | 2570 | AC_ARG_WITH([d3d-libdir], |
| 2571 | [AS_HELP_STRING([--with-d3d-libdir=DIR], |
| 2572 | [directory for the D3D modules @<:@${libdir}/d3d@:>@])], |
| 2573 | [D3D_DRIVER_INSTALL_DIR="$withval"], |
| 2574 | [D3D_DRIVER_INSTALL_DIR="${libdir}/d3d"]) |
| 2575 | AC_SUBST([D3D_DRIVER_INSTALL_DIR]) |
| 2576 | |
Tim Rowley | f42186b | 2017-07-07 13:38:22 -0500 | [diff] [blame] | 2577 | dnl Architectures to build SWR library for |
| 2578 | |
| 2579 | AC_ARG_WITH([swr-archs], |
| 2580 | [AS_HELP_STRING([--with-swr-archs@<:@=DIRS...@:>@], |
| 2581 | [comma delimited swr architectures list, e.g. |
Tim Rowley | 1cb5a60 | 2017-07-07 13:58:09 -0500 | [diff] [blame] | 2582 | "avx,avx2,knl,skx" @<:@default="avx,avx2"@:>@])], |
Tim Rowley | f42186b | 2017-07-07 13:38:22 -0500 | [diff] [blame] | 2583 | [with_swr_archs="$withval"], |
| 2584 | [with_swr_archs="avx,avx2"]) |
| 2585 | |
Dave Airlie | 81fe198 | 2010-04-22 14:59:29 +1000 | [diff] [blame] | 2586 | dnl |
Andreas Boll | 1f2a890 | 2017-01-24 16:44:12 +0100 | [diff] [blame] | 2587 | dnl r300 doesn't strictly require LLVM, but for performance reasons we |
| 2588 | dnl highly recommend LLVM usage. So require it at least on x86 and x86_64 |
| 2589 | dnl architectures. |
| 2590 | dnl |
| 2591 | r300_require_llvm() { |
| 2592 | case "$host" in *gnux32) return;; esac |
| 2593 | case "$host_cpu" in |
Emil Velikov | 514a494 | 2017-02-07 16:13:07 +0000 | [diff] [blame] | 2594 | i*86|x86_64|amd64) require_llvm $1 |
Andreas Boll | 1f2a890 | 2017-01-24 16:44:12 +0100 | [diff] [blame] | 2595 | ;; |
| 2596 | esac |
| 2597 | } |
| 2598 | |
| 2599 | dnl |
Marek Olšák | 1ac4017 | 2016-10-18 23:47:01 +0200 | [diff] [blame] | 2600 | dnl DRM is needed by X, Wayland, and offscreen rendering. |
| 2601 | dnl Surfaceless is an alternative for the last one. |
| 2602 | dnl |
| 2603 | require_basic_egl() { |
Emil Velikov | 73682f8 | 2016-11-25 18:34:03 +0000 | [diff] [blame] | 2604 | case "$with_platforms" in |
Benjamin Gordon | de3555f | 2017-10-20 15:34:57 -0600 | [diff] [blame] | 2605 | *drm*|*surfaceless*|*android*) |
Marek Olšák | cc71df5 | 2014-04-24 13:40:56 +0200 | [diff] [blame] | 2606 | ;; |
Marek Olšák | 1ac4017 | 2016-10-18 23:47:01 +0200 | [diff] [blame] | 2607 | *) |
| 2608 | AC_MSG_ERROR([$1 requires one of these: |
Emil Velikov | 7748c3f | 2017-04-17 13:29:41 +0100 | [diff] [blame] | 2609 | 1) --with-platforms=drm (X, Wayland, offscreen rendering based on DRM) |
| 2610 | 2) --with-platforms=surfaceless (offscreen only) |
Benjamin Gordon | de3555f | 2017-10-20 15:34:57 -0600 | [diff] [blame] | 2611 | 3) --with-platforms=android (Android only) |
Marek Olšák | 1ac4017 | 2016-10-18 23:47:01 +0200 | [diff] [blame] | 2612 | Recommended options: drm,x11]) |
Marek Olšák | cc71df5 | 2014-04-24 13:40:56 +0200 | [diff] [blame] | 2613 | ;; |
| 2614 | esac |
Marek Olšák | cc71df5 | 2014-04-24 13:40:56 +0200 | [diff] [blame] | 2615 | } |
| 2616 | |
Chuck Atkins | c1bf669 | 2016-06-28 15:50:47 -0400 | [diff] [blame] | 2617 | swr_require_cxx_feature_flags() { |
| 2618 | feature_name="$1" |
| 2619 | preprocessor_test="$2" |
| 2620 | option_list="$3" |
| 2621 | output_var="$4" |
| 2622 | |
| 2623 | AC_MSG_CHECKING([whether $CXX supports $feature_name]) |
| 2624 | AC_LANG_PUSH([C++]) |
| 2625 | save_CXXFLAGS="$CXXFLAGS" |
| 2626 | save_IFS="$IFS" |
| 2627 | IFS="," |
| 2628 | found=0 |
| 2629 | for opts in $option_list |
| 2630 | do |
| 2631 | unset IFS |
| 2632 | CXXFLAGS="$opts $save_CXXFLAGS" |
| 2633 | AC_COMPILE_IFELSE( |
| 2634 | [AC_LANG_PROGRAM( |
| 2635 | [ #if !($preprocessor_test) |
| 2636 | #error |
| 2637 | #endif |
| 2638 | ])], |
| 2639 | [found=1; break], |
| 2640 | []) |
| 2641 | IFS="," |
| 2642 | done |
| 2643 | IFS="$save_IFS" |
| 2644 | CXXFLAGS="$save_CXXFLAGS" |
| 2645 | AC_LANG_POP([C++]) |
| 2646 | if test $found -eq 1; then |
| 2647 | AC_MSG_RESULT([$opts]) |
| 2648 | eval "$output_var=\$opts" |
| 2649 | return 0 |
| 2650 | fi |
| 2651 | AC_MSG_RESULT([no]) |
| 2652 | AC_MSG_ERROR([swr requires $feature_name support]) |
| 2653 | return 1 |
| 2654 | } |
| 2655 | |
Marek Olšák | 02c8ee2 | 2011-06-27 08:02:31 +0200 | [diff] [blame] | 2656 | dnl Duplicates in GALLIUM_DRIVERS_DIRS are removed by sorting it after this block |
Emil Velikov | f41102b | 2014-02-04 17:32:03 +0000 | [diff] [blame] | 2657 | if test -n "$with_gallium_drivers"; then |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 2658 | gallium_drivers=`IFS=', '; echo $with_gallium_drivers` |
| 2659 | for driver in $gallium_drivers; do |
| 2660 | case "x$driver" in |
| 2661 | xsvga) |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 2662 | HAVE_GALLIUM_SVGA=yes |
Emil Velikov | 9898c60 | 2016-09-12 18:47:54 +0100 | [diff] [blame] | 2663 | require_libdrm "svga" |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 2664 | ;; |
| 2665 | xi915) |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 2666 | HAVE_GALLIUM_I915=yes |
Lionel Landwerlin | 3c50ebc | 2017-06-15 12:28:07 +0100 | [diff] [blame] | 2667 | PKG_CHECK_MODULES([I915], [libdrm >= $LIBDRM_INTEL_REQUIRED libdrm_intel >= $LIBDRM_INTEL_REQUIRED]) |
Emil Velikov | 9898c60 | 2016-09-12 18:47:54 +0100 | [diff] [blame] | 2668 | require_libdrm "Gallium i915" |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 2669 | ;; |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 2670 | xr300) |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 2671 | HAVE_GALLIUM_R300=yes |
Ilia Mirkin | 2b4eaab | 2017-02-01 21:29:12 -0500 | [diff] [blame] | 2672 | PKG_CHECK_MODULES([RADEON], [libdrm >= $LIBDRM_RADEON_REQUIRED libdrm_radeon >= $LIBDRM_RADEON_REQUIRED]) |
Tobias Droste | 44a672e | 2016-11-19 02:39:01 +0100 | [diff] [blame] | 2673 | require_libdrm "r300" |
Andreas Boll | 1f2a890 | 2017-01-24 16:44:12 +0100 | [diff] [blame] | 2674 | r300_require_llvm "r300" |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 2675 | ;; |
| 2676 | xr600) |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 2677 | HAVE_GALLIUM_R600=yes |
Ilia Mirkin | 2b4eaab | 2017-02-01 21:29:12 -0500 | [diff] [blame] | 2678 | PKG_CHECK_MODULES([RADEON], [libdrm >= $LIBDRM_RADEON_REQUIRED libdrm_radeon >= $LIBDRM_RADEON_REQUIRED]) |
Tobias Droste | 44a672e | 2016-11-19 02:39:01 +0100 | [diff] [blame] | 2679 | require_libdrm "r600" |
Marc Dietrich | 64b2152 | 2017-02-27 16:35:13 +0100 | [diff] [blame] | 2680 | if test "x$enable_llvm" = xyes; then |
Emil Velikov | bdd6147 | 2017-02-07 20:13:08 +0000 | [diff] [blame] | 2681 | radeon_llvm_check $LLVM_REQUIRED_R600 "r600" |
Tobias Droste | 9a3bccc | 2016-11-19 02:38:56 +0100 | [diff] [blame] | 2682 | |
| 2683 | llvm_add_component "asmparser" "r600" |
| 2684 | llvm_add_component "bitreader" "r600" |
Tom Stellard | 0898047 | 2013-01-25 16:43:11 +0100 | [diff] [blame] | 2685 | fi |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 2686 | ;; |
Tom Stellard | a75c616 | 2012-01-06 17:38:37 -0500 | [diff] [blame] | 2687 | xradeonsi) |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 2688 | HAVE_GALLIUM_RADEONSI=yes |
Ilia Mirkin | 2b4eaab | 2017-02-01 21:29:12 -0500 | [diff] [blame] | 2689 | PKG_CHECK_MODULES([RADEON], [libdrm >= $LIBDRM_RADEON_REQUIRED libdrm_radeon >= $LIBDRM_RADEON_REQUIRED]) |
| 2690 | PKG_CHECK_MODULES([AMDGPU], [libdrm >= $LIBDRM_AMDGPU_REQUIRED libdrm_amdgpu >= $LIBDRM_AMDGPU_REQUIRED]) |
Emil Velikov | 9898c60 | 2016-09-12 18:47:54 +0100 | [diff] [blame] | 2691 | require_libdrm "radeonsi" |
Emil Velikov | bdd6147 | 2017-02-07 20:13:08 +0000 | [diff] [blame] | 2692 | radeon_llvm_check $LLVM_REQUIRED_RADEONSI "radeonsi" |
Leo Liu | 5398d00 | 2017-02-23 13:37:58 -0500 | [diff] [blame] | 2693 | if test "x$enable_egl" = xyes; then |
| 2694 | require_basic_egl "radeonsi" |
| 2695 | fi |
Tom Stellard | a75c616 | 2012-01-06 17:38:37 -0500 | [diff] [blame] | 2696 | ;; |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 2697 | xnouveau) |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 2698 | HAVE_GALLIUM_NOUVEAU=yes |
Ilia Mirkin | 2b4eaab | 2017-02-01 21:29:12 -0500 | [diff] [blame] | 2699 | PKG_CHECK_MODULES([NOUVEAU], [libdrm >= $LIBDRM_NOUVEAU_REQUIRED libdrm_nouveau >= $LIBDRM_NOUVEAU_REQUIRED]) |
Emil Velikov | 9898c60 | 2016-09-12 18:47:54 +0100 | [diff] [blame] | 2700 | require_libdrm "nouveau" |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 2701 | ;; |
Rob Clark | 6173cc1 | 2012-10-27 11:07:34 -0500 | [diff] [blame] | 2702 | xfreedreno) |
| 2703 | HAVE_GALLIUM_FREEDRENO=yes |
Ilia Mirkin | 2b4eaab | 2017-02-01 21:29:12 -0500 | [diff] [blame] | 2704 | PKG_CHECK_MODULES([FREEDRENO], [libdrm >= $LIBDRM_FREEDRENO_REQUIRED libdrm_freedreno >= $LIBDRM_FREEDRENO_REQUIRED]) |
Emil Velikov | 9898c60 | 2016-09-12 18:47:54 +0100 | [diff] [blame] | 2705 | require_libdrm "freedreno" |
Rob Clark | 6173cc1 | 2012-10-27 11:07:34 -0500 | [diff] [blame] | 2706 | ;; |
The etnaviv authors | c9e8b49 | 2016-12-23 20:58:23 +0100 | [diff] [blame] | 2707 | xetnaviv) |
| 2708 | HAVE_GALLIUM_ETNAVIV=yes |
Ilia Mirkin | 2b4eaab | 2017-02-01 21:29:12 -0500 | [diff] [blame] | 2709 | PKG_CHECK_MODULES([ETNAVIV], [libdrm >= $LIBDRM_ETNAVIV_REQUIRED libdrm_etnaviv >= $LIBDRM_ETNAVIV_REQUIRED]) |
The etnaviv authors | c9e8b49 | 2016-12-23 20:58:23 +0100 | [diff] [blame] | 2710 | require_libdrm "etnaviv" |
| 2711 | ;; |
Christian Gmeiner | e8626e3 | 2016-12-23 21:10:29 +0100 | [diff] [blame] | 2712 | ximx) |
| 2713 | HAVE_GALLIUM_IMX=yes |
| 2714 | ;; |
Thierry Reding | 1755f60 | 2014-05-28 00:36:48 +0200 | [diff] [blame] | 2715 | xtegra) |
| 2716 | HAVE_GALLIUM_TEGRA=yes |
| 2717 | require_libdrm "tegra" |
| 2718 | ;; |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 2719 | xswrast) |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 2720 | HAVE_GALLIUM_SOFTPIPE=yes |
Emil Velikov | b3b4156 | 2017-02-07 15:53:14 +0000 | [diff] [blame] | 2721 | if test "x$enable_llvm" = xyes; then |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 2722 | HAVE_GALLIUM_LLVMPIPE=yes |
Giovanni Campagna | 3b176c4 | 2014-07-23 19:37:31 +0100 | [diff] [blame] | 2723 | fi |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 2724 | ;; |
Tim Rowley | 7bb193d | 2016-02-24 20:56:38 -0600 | [diff] [blame] | 2725 | xswr) |
Emil Velikov | a66ffcd | 2017-02-07 16:24:44 +0000 | [diff] [blame] | 2726 | llvm_require_version $LLVM_REQUIRED_SWR "swr" |
Tim Rowley | 7bb193d | 2016-02-24 20:56:38 -0600 | [diff] [blame] | 2727 | |
Gert Wollny | 8f18528 | 2017-10-18 17:05:26 +0200 | [diff] [blame] | 2728 | if test "x$HAVE_CXX11" != "xyes"; then |
| 2729 | AC_MSG_ERROR([swr requires c++11 support]) |
| 2730 | fi |
Tim Rowley | 7bb193d | 2016-02-24 20:56:38 -0600 | [diff] [blame] | 2731 | |
Chuck Atkins | c1bf669 | 2016-06-28 15:50:47 -0400 | [diff] [blame] | 2732 | swr_require_cxx_feature_flags "AVX" "defined(__AVX__)" \ |
Chuck Atkins | f0da70a | 2017-07-31 15:53:13 -0400 | [diff] [blame] | 2733 | ",-target-cpu=sandybridge,-mavx,-march=core-avx,-tp=sandybridge" \ |
Chuck Atkins | c1bf669 | 2016-06-28 15:50:47 -0400 | [diff] [blame] | 2734 | SWR_AVX_CXXFLAGS |
Tim Rowley | 5a64549 | 2016-06-16 14:56:39 -0500 | [diff] [blame] | 2735 | AC_SUBST([SWR_AVX_CXXFLAGS]) |
Chuck Atkins | c1bf669 | 2016-06-28 15:50:47 -0400 | [diff] [blame] | 2736 | |
Tim Rowley | f42186b | 2017-07-07 13:38:22 -0500 | [diff] [blame] | 2737 | swr_archs=`IFS=', '; echo $with_swr_archs` |
| 2738 | for arch in $swr_archs; do |
| 2739 | case "x$arch" in |
| 2740 | xavx) |
| 2741 | HAVE_SWR_AVX=yes |
| 2742 | ;; |
| 2743 | xavx2) |
| 2744 | swr_require_cxx_feature_flags "AVX2" "defined(__AVX2__)" \ |
Chuck Atkins | f0da70a | 2017-07-31 15:53:13 -0400 | [diff] [blame] | 2745 | ",-target-cpu=haswell,-mavx2 -mfma -mbmi2 -mf16c,-march=core-avx2,-tp=haswell" \ |
Tim Rowley | f42186b | 2017-07-07 13:38:22 -0500 | [diff] [blame] | 2746 | SWR_AVX2_CXXFLAGS |
| 2747 | AC_SUBST([SWR_AVX2_CXXFLAGS]) |
| 2748 | HAVE_SWR_AVX2=yes |
| 2749 | ;; |
Tim Rowley | 1cb5a60 | 2017-07-07 13:58:09 -0500 | [diff] [blame] | 2750 | xknl) |
| 2751 | swr_require_cxx_feature_flags "KNL" "defined(__AVX512F__) && defined(__AVX512ER__)" \ |
Chuck Atkins | f0da70a | 2017-07-31 15:53:13 -0400 | [diff] [blame] | 2752 | ",-target-cpu=mic-knl,-march=knl,-xMIC-AVX512" \ |
Tim Rowley | 1cb5a60 | 2017-07-07 13:58:09 -0500 | [diff] [blame] | 2753 | SWR_KNL_CXXFLAGS |
| 2754 | AC_SUBST([SWR_KNL_CXXFLAGS]) |
| 2755 | HAVE_SWR_KNL=yes |
| 2756 | ;; |
| 2757 | xskx) |
| 2758 | swr_require_cxx_feature_flags "SKX" "defined(__AVX512F__) && defined(__AVX512BW__)" \ |
Chuck Atkins | f0da70a | 2017-07-31 15:53:13 -0400 | [diff] [blame] | 2759 | ",-target-cpu=x86-skylake,-march=skylake-avx512,-xCORE-AVX512" \ |
Tim Rowley | 1cb5a60 | 2017-07-07 13:58:09 -0500 | [diff] [blame] | 2760 | SWR_SKX_CXXFLAGS |
| 2761 | AC_SUBST([SWR_SKX_CXXFLAGS]) |
| 2762 | HAVE_SWR_SKX=yes |
| 2763 | ;; |
Tim Rowley | f42186b | 2017-07-07 13:38:22 -0500 | [diff] [blame] | 2764 | *) |
| 2765 | AC_MSG_ERROR([unknown SWR build architecture '$arch']) |
| 2766 | ;; |
| 2767 | esac |
| 2768 | done |
| 2769 | |
| 2770 | if test "x$HAVE_SWR_AVX" != xyes -a \ |
Tim Rowley | 1cb5a60 | 2017-07-07 13:58:09 -0500 | [diff] [blame] | 2771 | "x$HAVE_SWR_AVX2" != xyes -a \ |
| 2772 | "x$HAVE_SWR_KNL" != xyes -a \ |
Tim Rowley | 4d9b0dc | 2017-08-10 12:58:57 -0500 | [diff] [blame] | 2773 | "x$HAVE_SWR_SKX" != xyes; then |
Tim Rowley | f42186b | 2017-07-07 13:38:22 -0500 | [diff] [blame] | 2774 | AC_MSG_ERROR([swr enabled but no swr architectures selected]) |
| 2775 | fi |
Tim Rowley | 5a64549 | 2016-06-16 14:56:39 -0500 | [diff] [blame] | 2776 | |
Chuck Atkins | 2ed8b6f | 2018-01-18 14:57:57 -0500 | [diff] [blame] | 2777 | # test if more than one swr arch configured |
| 2778 | if test `echo $swr_archs | wc -w` -eq 1; then |
| 2779 | HAVE_SWR_BUILTIN=yes |
| 2780 | fi |
| 2781 | |
Tim Rowley | 7bb193d | 2016-02-24 20:56:38 -0600 | [diff] [blame] | 2782 | HAVE_GALLIUM_SWR=yes |
| 2783 | ;; |
Eric Anholt | 1850d0a | 2014-06-19 08:19:38 +0100 | [diff] [blame] | 2784 | xvc4) |
| 2785 | HAVE_GALLIUM_VC4=yes |
Stefan Schake | 4fc0ebd | 2018-04-25 00:00:57 +0200 | [diff] [blame] | 2786 | PKG_CHECK_MODULES([VC4], [libdrm >= $LIBDRM_VC4_REQUIRED]) |
Eric Anholt | 1850d0a | 2014-06-19 08:19:38 +0100 | [diff] [blame] | 2787 | |
Eric Anholt | f5b26b4 | 2015-09-16 15:51:00 -0400 | [diff] [blame] | 2788 | PKG_CHECK_MODULES([SIMPENROSE], [simpenrose], |
Eric Anholt | a39eac8 | 2015-11-21 13:07:42 -0800 | [diff] [blame] | 2789 | [USE_VC4_SIMULATOR=yes; |
| 2790 | DEFINES="$DEFINES -DUSE_VC4_SIMULATOR"], |
| 2791 | [USE_VC4_SIMULATOR=no]) |
Eric Anholt | 1850d0a | 2014-06-19 08:19:38 +0100 | [diff] [blame] | 2792 | ;; |
Eric Anholt | c4c488a | 2017-08-25 15:34:22 -0700 | [diff] [blame] | 2793 | xv3d) |
| 2794 | HAVE_GALLIUM_V3D=yes |
Eric Anholt | ae10659 | 2017-08-18 12:55:43 -0700 | [diff] [blame] | 2795 | |
Eric Anholt | c4c488a | 2017-08-25 15:34:22 -0700 | [diff] [blame] | 2796 | PKG_CHECK_MODULES([V3D_SIMULATOR], [v3dv3], |
| 2797 | [USE_V3D_SIMULATOR=yes; |
| 2798 | DEFINES="$DEFINES -DUSE_V3D_SIMULATOR"], |
Eric Anholt | 795488d | 2018-05-01 12:20:11 -0700 | [diff] [blame] | 2799 | [USE_V3D_SIMULATOR=no]) |
Eric Anholt | ae10659 | 2017-08-18 12:55:43 -0700 | [diff] [blame] | 2800 | ;; |
Eric Anholt | 7029ec0 | 2017-05-08 15:57:21 -0700 | [diff] [blame] | 2801 | xpl111) |
| 2802 | HAVE_GALLIUM_PL111=yes |
| 2803 | ;; |
Dave Airlie | a8987b8 | 2015-01-22 15:11:47 +1000 | [diff] [blame] | 2804 | xvirgl) |
| 2805 | HAVE_GALLIUM_VIRGL=yes |
Emil Velikov | 9898c60 | 2016-09-12 18:47:54 +0100 | [diff] [blame] | 2806 | require_libdrm "virgl" |
Emil Velikov | 4516bfb | 2017-04-16 01:46:59 +0100 | [diff] [blame] | 2807 | if test "x$enable_egl" = xyes; then |
| 2808 | require_basic_egl "virgl" |
| 2809 | fi |
Dave Airlie | a8987b8 | 2015-01-22 15:11:47 +1000 | [diff] [blame] | 2810 | ;; |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 2811 | *) |
| 2812 | AC_MSG_ERROR([Unknown Gallium driver: $driver]) |
| 2813 | ;; |
| 2814 | esac |
| 2815 | done |
Chia-I Wu | a1306f4 | 2010-01-22 15:51:51 +0800 | [diff] [blame] | 2816 | fi |
Tom Stellard | 69d639b | 2013-01-18 15:08:28 +0000 | [diff] [blame] | 2817 | |
Emil Velikov | 5233eaf | 2017-05-18 21:27:01 +0100 | [diff] [blame] | 2818 | # XXX: Keep in sync with LLVM_REQUIRED_SWR |
Juan A. Suarez Romero | d24839b | 2018-06-18 15:45:51 +0200 | [diff] [blame] | 2819 | AM_CONDITIONAL(SWR_INVALID_LLVM_VERSION, test "x$LLVM_VERSION" != x5.0.0 -a \ |
| 2820 | "x$LLVM_VERSION" != x5.0.1 -a \ |
| 2821 | "x$LLVM_VERSION" != x5.0.2) |
Emil Velikov | 5233eaf | 2017-05-18 21:27:01 +0100 | [diff] [blame] | 2822 | |
Emil Velikov | b3b4156 | 2017-02-07 15:53:14 +0000 | [diff] [blame] | 2823 | if test "x$enable_llvm" = "xyes" -a "$with_gallium_drivers"; then |
Emil Velikov | a66ffcd | 2017-02-07 16:24:44 +0000 | [diff] [blame] | 2824 | llvm_require_version $LLVM_REQUIRED_GALLIUM "gallium" |
Tobias Droste | 45c8a4e | 2016-11-19 02:39:09 +0100 | [diff] [blame] | 2825 | llvm_add_default_components "gallium" |
| 2826 | fi |
| 2827 | |
Tim Rowley | f42186b | 2017-07-07 13:38:22 -0500 | [diff] [blame] | 2828 | AM_CONDITIONAL(HAVE_SWR_AVX, test "x$HAVE_SWR_AVX" = xyes) |
| 2829 | AM_CONDITIONAL(HAVE_SWR_AVX2, test "x$HAVE_SWR_AVX2" = xyes) |
Tim Rowley | 1cb5a60 | 2017-07-07 13:58:09 -0500 | [diff] [blame] | 2830 | AM_CONDITIONAL(HAVE_SWR_KNL, test "x$HAVE_SWR_KNL" = xyes) |
| 2831 | AM_CONDITIONAL(HAVE_SWR_SKX, test "x$HAVE_SWR_SKX" = xyes) |
Chuck Atkins | 2ed8b6f | 2018-01-18 14:57:57 -0500 | [diff] [blame] | 2832 | AM_CONDITIONAL(HAVE_SWR_BUILTIN, test "x$HAVE_SWR_BUILTIN" = xyes) |
Tim Rowley | f42186b | 2017-07-07 13:38:22 -0500 | [diff] [blame] | 2833 | |
Christian Gmeiner | e8626e3 | 2016-12-23 21:10:29 +0100 | [diff] [blame] | 2834 | dnl We need to validate some needed dependencies for renderonly drivers. |
| 2835 | |
Emil Velikov | 5e9f4a5 | 2017-01-18 13:54:00 +0000 | [diff] [blame] | 2836 | if test "x$HAVE_GALLIUM_ETNAVIV" != xyes -a "x$HAVE_GALLIUM_IMX" = xyes ; then |
Emil Velikov | 6ffddba | 2017-02-07 13:10:34 +0000 | [diff] [blame] | 2837 | AC_MSG_ERROR([Building with imx requires etnaviv]) |
Christian Gmeiner | e8626e3 | 2016-12-23 21:10:29 +0100 | [diff] [blame] | 2838 | fi |
| 2839 | |
Eric Anholt | 7029ec0 | 2017-05-08 15:57:21 -0700 | [diff] [blame] | 2840 | if test "x$HAVE_GALLIUM_VC4" != xyes -a "x$HAVE_GALLIUM_PL111" = xyes ; then |
| 2841 | AC_MSG_ERROR([Building with pl111 requires vc4]) |
| 2842 | fi |
| 2843 | |
Thierry Reding | 1755f60 | 2014-05-28 00:36:48 +0200 | [diff] [blame] | 2844 | if test "x$HAVE_GALLIUM_NOUVEAU" != xyes -a "x$HAVE_GALLIUM_TEGRA" = xyes; then |
| 2845 | AC_MSG_ERROR([Building with tegra requires nouveau]) |
| 2846 | fi |
Emil Velikov | 98fdff7 | 2017-10-05 11:19:04 +0100 | [diff] [blame] | 2847 | |
| 2848 | detect_old_buggy_llvm() { |
| 2849 | dnl llvm-config may not give the right answer when llvm is a built as a |
| 2850 | dnl single shared library, so we must work the library name out for |
| 2851 | dnl ourselves. |
| 2852 | dnl (See https://llvm.org/bugs/show_bug.cgi?id=6823) |
| 2853 | dnl We can't use $LLVM_VERSION because it has 'svn' stripped out, |
| 2854 | LLVM_SO_NAME=LLVM-`$LLVM_CONFIG --version` |
| 2855 | AS_IF([test -f "$LLVM_LIBDIR/lib$LLVM_SO_NAME.$IMP_LIB_EXT"], [llvm_have_one_so=yes]) |
| 2856 | |
| 2857 | if test "x$llvm_have_one_so" = xyes; then |
| 2858 | dnl LLVM was built using auto*, so there is only one shared object. |
| 2859 | LLVM_LIBS="-l$LLVM_SO_NAME" |
| 2860 | else |
| 2861 | dnl If LLVM was built with CMake, there will be one shared object per |
| 2862 | dnl component. |
| 2863 | AS_IF([test ! -f "$LLVM_LIBDIR/libLLVMTarget.$IMP_LIB_EXT"], |
| 2864 | [AC_MSG_ERROR([Could not find llvm shared libraries: |
| 2865 | Please make sure you have built llvm with the --enable-shared option |
| 2866 | and that your llvm libraries are installed in $LLVM_LIBDIR |
| 2867 | If you have installed your llvm libraries to a different directory you |
| 2868 | can use the --with-llvm-prefix= configure flag to specify this directory. |
| 2869 | NOTE: Mesa is attempting to use llvm shared libraries by default. |
| 2870 | If you do not want to build with llvm shared libraries and instead want to |
| 2871 | use llvm static libraries then add --disable-llvm-shared-libs to your configure |
| 2872 | invocation and rebuild.])]) |
| 2873 | |
| 2874 | dnl We don't need to update LLVM_LIBS in this case because the LLVM |
| 2875 | dnl install uses a shared object for each component and we have |
| 2876 | dnl already added all of these objects to LLVM_LIBS. |
| 2877 | fi |
| 2878 | } |
| 2879 | |
Tobias Droste | 143c566 | 2017-02-07 19:53:32 +0000 | [diff] [blame] | 2880 | dnl |
| 2881 | dnl Set defines and buildtime variables only when using LLVM. |
| 2882 | dnl |
Emil Velikov | b3b4156 | 2017-02-07 15:53:14 +0000 | [diff] [blame] | 2883 | if test "x$enable_llvm" = xyes; then |
Tobias Droste | 143c566 | 2017-02-07 19:53:32 +0000 | [diff] [blame] | 2884 | DEFINES="${DEFINES} -DHAVE_LLVM=0x0$LLVM_VERSION_INT -DMESA_LLVM_VERSION_PATCH=$LLVM_VERSION_PATCH" |
| 2885 | |
Emil Velikov | 4d8bb9c | 2017-01-18 13:54:02 +0000 | [diff] [blame] | 2886 | LLVM_LDFLAGS=`$LLVM_CONFIG --ldflags` |
| 2887 | LLVM_CFLAGS=$LLVM_CPPFLAGS # CPPFLAGS seem to be sufficient |
| 2888 | LLVM_CXXFLAGS=`strip_unwanted_llvm_flags "$LLVM_CONFIG --cxxflags"` |
| 2889 | |
Tobias Droste | 143c566 | 2017-02-07 19:53:32 +0000 | [diff] [blame] | 2890 | dnl Set LLVM_LIBS - This is done after the driver configuration so |
| 2891 | dnl that drivers can add additional components to LLVM_COMPONENTS. |
| 2892 | dnl Previously, gallium drivers were updating LLVM_LIBS directly |
| 2893 | dnl by calling llvm-config --libs ${DRIVER_LLVM_COMPONENTS}, but |
| 2894 | dnl this was causing the same libraries to be appear multiple times |
| 2895 | dnl in LLVM_LIBS. |
Tom Stellard | cf69a59 | 2013-01-18 16:26:12 +0000 | [diff] [blame] | 2896 | |
Emil Velikov | 13a53c4 | 2017-10-05 11:19:05 +0100 | [diff] [blame] | 2897 | if test $LLVM_VERSION_MAJOR -ge 4 -o $LLVM_VERSION_MAJOR -eq 3 -a $LLVM_VERSION_MINOR -ge 9; then |
| 2898 | if test "x$enable_llvm_shared_libs" = xyes; then |
| 2899 | LLVM_LIBS="`$LLVM_CONFIG --link-shared --libs ${LLVM_COMPONENTS}`" |
| 2900 | else |
| 2901 | dnl Invoking llvm-config with both -libs and --system-libs produces the |
| 2902 | dnl two separate lines - each for the set of libraries. |
| 2903 | dnl Call the program twice, effectively folding them into a single line. |
| 2904 | LLVM_LIBS="`$LLVM_CONFIG --link-static --libs ${LLVM_COMPONENTS}`" |
| 2905 | dnl We need to link to llvm system libs when using static libs |
| 2906 | LLVM_LIBS="$LLVM_LIBS `$LLVM_CONFIG --link-static --system-libs`" |
Tom Stellard | 7a850c5 | 2013-01-25 12:46:55 -0500 | [diff] [blame] | 2907 | fi |
Emil Velikov | 065b6ca | 2014-03-04 20:02:35 +0000 | [diff] [blame] | 2908 | else |
Emil Velikov | 13a53c4 | 2017-10-05 11:19:05 +0100 | [diff] [blame] | 2909 | LLVM_LIBS="`$LLVM_CONFIG --libs ${LLVM_COMPONENTS}`" |
| 2910 | if test "x$enable_llvm_shared_libs" = xyes; then |
| 2911 | detect_old_buggy_llvm |
| 2912 | else |
| 2913 | AC_MSG_WARN([Building mesa with statically linked LLVM may cause compilation issues]) |
| 2914 | dnl We need to link to llvm system libs when using static libs |
| 2915 | dnl However, only llvm 3.5+ provides --system-libs |
| 2916 | if test $LLVM_VERSION_MAJOR -ge 4 -o $LLVM_VERSION_MAJOR -eq 3 -a $LLVM_VERSION_MINOR -ge 5; then |
| 2917 | LLVM_LIBS="$LLVM_LIBS `$LLVM_CONFIG --system-libs`" |
| 2918 | fi |
Jan Vesely | af9551e | 2014-10-23 17:17:07 -0400 | [diff] [blame] | 2919 | fi |
Tom Stellard | cf69a59 | 2013-01-18 16:26:12 +0000 | [diff] [blame] | 2920 | fi |
Chuck Atkins | 6ac5e85 | 2018-01-23 08:52:46 -0500 | [diff] [blame] | 2921 | |
| 2922 | dnl The gallium-xlib GLX and gallium OSMesa targets directly embed the |
| 2923 | dnl swr/llvmpipe driver into the final binary. Adding LLVM_LIBS results in |
| 2924 | dnl the LLVM library propagated in the Libs.private of the respective .pc |
| 2925 | dnl file which ensures complete dependency information when statically |
| 2926 | dnl linking. |
| 2927 | if test "x$enable_glx" == xgallium-xlib; then |
| 2928 | GL_PC_LIB_PRIV="$GL_PC_LIB_PRIV $LLVM_LIBS" |
| 2929 | fi |
| 2930 | if test "x$enable_gallium_osmesa" = xyes; then |
| 2931 | OSMESA_PC_LIB_PRIV="$OSMESA_PC_LIB_PRIV $LLVM_LIBS" |
| 2932 | fi |
Tom Stellard | 69d639b | 2013-01-18 15:08:28 +0000 | [diff] [blame] | 2933 | fi |
| 2934 | |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 2935 | AM_CONDITIONAL(HAVE_GALLIUM_SVGA, test "x$HAVE_GALLIUM_SVGA" = xyes) |
| 2936 | AM_CONDITIONAL(HAVE_GALLIUM_I915, test "x$HAVE_GALLIUM_I915" = xyes) |
Eric Anholt | 7029ec0 | 2017-05-08 15:57:21 -0700 | [diff] [blame] | 2937 | AM_CONDITIONAL(HAVE_GALLIUM_PL111, test "x$HAVE_GALLIUM_PL111" = xyes) |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 2938 | AM_CONDITIONAL(HAVE_GALLIUM_R300, test "x$HAVE_GALLIUM_R300" = xyes) |
| 2939 | AM_CONDITIONAL(HAVE_GALLIUM_R600, test "x$HAVE_GALLIUM_R600" = xyes) |
| 2940 | AM_CONDITIONAL(HAVE_GALLIUM_RADEONSI, test "x$HAVE_GALLIUM_RADEONSI" = xyes) |
| 2941 | AM_CONDITIONAL(HAVE_GALLIUM_NOUVEAU, test "x$HAVE_GALLIUM_NOUVEAU" = xyes) |
Rob Clark | 6173cc1 | 2012-10-27 11:07:34 -0500 | [diff] [blame] | 2942 | AM_CONDITIONAL(HAVE_GALLIUM_FREEDRENO, test "x$HAVE_GALLIUM_FREEDRENO" = xyes) |
The etnaviv authors | c9e8b49 | 2016-12-23 20:58:23 +0100 | [diff] [blame] | 2943 | AM_CONDITIONAL(HAVE_GALLIUM_ETNAVIV, test "x$HAVE_GALLIUM_ETNAVIV" = xyes) |
Christian Gmeiner | e8626e3 | 2016-12-23 21:10:29 +0100 | [diff] [blame] | 2944 | AM_CONDITIONAL(HAVE_GALLIUM_IMX, test "x$HAVE_GALLIUM_IMX" = xyes) |
Thierry Reding | 1755f60 | 2014-05-28 00:36:48 +0200 | [diff] [blame] | 2945 | AM_CONDITIONAL(HAVE_GALLIUM_TEGRA, test "x$HAVE_GALLIUM_TEGRA" = xyes) |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 2946 | AM_CONDITIONAL(HAVE_GALLIUM_SOFTPIPE, test "x$HAVE_GALLIUM_SOFTPIPE" = xyes) |
| 2947 | AM_CONDITIONAL(HAVE_GALLIUM_LLVMPIPE, test "x$HAVE_GALLIUM_LLVMPIPE" = xyes) |
Tim Rowley | 7bb193d | 2016-02-24 20:56:38 -0600 | [diff] [blame] | 2948 | AM_CONDITIONAL(HAVE_GALLIUM_SWR, test "x$HAVE_GALLIUM_SWR" = xyes) |
Tim Rowley | ee72fec | 2016-04-15 12:38:25 -0500 | [diff] [blame] | 2949 | AM_CONDITIONAL(HAVE_GALLIUM_SWRAST, test "x$HAVE_GALLIUM_SOFTPIPE" = xyes -o \ |
| 2950 | "x$HAVE_GALLIUM_LLVMPIPE" = xyes -o \ |
| 2951 | "x$HAVE_GALLIUM_SWR" = xyes) |
Eric Anholt | c4c488a | 2017-08-25 15:34:22 -0700 | [diff] [blame] | 2952 | AM_CONDITIONAL(HAVE_GALLIUM_V3D, test "x$HAVE_GALLIUM_V3D" = xyes) |
Eric Anholt | 1850d0a | 2014-06-19 08:19:38 +0100 | [diff] [blame] | 2953 | AM_CONDITIONAL(HAVE_GALLIUM_VC4, test "x$HAVE_GALLIUM_VC4" = xyes) |
Dave Airlie | a8987b8 | 2015-01-22 15:11:47 +1000 | [diff] [blame] | 2954 | AM_CONDITIONAL(HAVE_GALLIUM_VIRGL, test "x$HAVE_GALLIUM_VIRGL" = xyes) |
Chia-I Wu | a1306f4 | 2010-01-22 15:51:51 +0800 | [diff] [blame] | 2955 | |
Emil Velikov | 44ec468 | 2014-09-08 23:52:46 +0100 | [diff] [blame] | 2956 | AM_CONDITIONAL(HAVE_GALLIUM_STATIC_TARGETS, test "x$enable_shared_pipe_drivers" = xno) |
Emil Velikov | 949beb0 | 2014-05-16 15:09:26 +0100 | [diff] [blame] | 2957 | |
Emil Velikov | 950e06a | 2015-10-17 21:14:09 +0100 | [diff] [blame] | 2958 | if test "x$enable_dri" = xyes; then |
| 2959 | GALLIUM_PIPE_LOADER_DEFINES="$GALLIUM_PIPE_LOADER_DEFINES -DHAVE_PIPE_LOADER_DRI" |
Francisco Jerez | e136453 | 2012-04-25 22:16:00 +0200 | [diff] [blame] | 2960 | fi |
| 2961 | |
Emil Velikov | 950e06a | 2015-10-17 21:14:09 +0100 | [diff] [blame] | 2962 | if test "x$have_drisw_kms" = xyes; then |
| 2963 | GALLIUM_PIPE_LOADER_DEFINES="$GALLIUM_PIPE_LOADER_DEFINES -DHAVE_PIPE_LOADER_KMS" |
| 2964 | fi |
| 2965 | AC_SUBST([GALLIUM_PIPE_LOADER_DEFINES]) |
| 2966 | |
Matt Turner | 07f2dee | 2013-03-05 10:25:55 -0800 | [diff] [blame] | 2967 | AM_CONDITIONAL(HAVE_I915_DRI, test x$HAVE_I915_DRI = xyes) |
| 2968 | AM_CONDITIONAL(HAVE_I965_DRI, test x$HAVE_I965_DRI = xyes) |
| 2969 | AM_CONDITIONAL(HAVE_NOUVEAU_DRI, test x$HAVE_NOUVEAU_DRI = xyes) |
| 2970 | AM_CONDITIONAL(HAVE_R200_DRI, test x$HAVE_R200_DRI = xyes) |
| 2971 | AM_CONDITIONAL(HAVE_RADEON_DRI, test x$HAVE_RADEON_DRI = xyes) |
| 2972 | AM_CONDITIONAL(HAVE_SWRAST_DRI, test x$HAVE_SWRAST_DRI = xyes) |
Matt Turner | 07f2dee | 2013-03-05 10:25:55 -0800 | [diff] [blame] | 2973 | |
Dave Airlie | f4e499e | 2016-10-07 09:16:09 +1000 | [diff] [blame] | 2974 | AM_CONDITIONAL(HAVE_RADEON_VULKAN, test "x$HAVE_RADEON_VULKAN" = xyes) |
Jason Ekstrand | ca16373 | 2016-03-29 12:00:24 -0700 | [diff] [blame] | 2975 | AM_CONDITIONAL(HAVE_INTEL_VULKAN, test "x$HAVE_INTEL_VULKAN" = xyes) |
| 2976 | |
Jan Vesely | d96a210 | 2017-06-02 12:37:07 -0400 | [diff] [blame] | 2977 | AM_CONDITIONAL(HAVE_AMD_DRIVERS, test "x$HAVE_GALLIUM_RADEONSI" = xyes -o \ |
Dave Airlie | f4e499e | 2016-10-07 09:16:09 +1000 | [diff] [blame] | 2978 | "x$HAVE_RADEON_VULKAN" = xyes) |
| 2979 | |
Eric Anholt | ae10659 | 2017-08-18 12:55:43 -0700 | [diff] [blame] | 2980 | AM_CONDITIONAL(HAVE_BROADCOM_DRIVERS, test "x$HAVE_GALLIUM_VC4" = xyes -o \ |
Eric Anholt | c4c488a | 2017-08-25 15:34:22 -0700 | [diff] [blame] | 2981 | "x$HAVE_GALLIUM_V3D" = xyes) |
Eric Anholt | ae10659 | 2017-08-18 12:55:43 -0700 | [diff] [blame] | 2982 | |
Jason Ekstrand | ef5dca2 | 2016-04-15 15:32:18 -0700 | [diff] [blame] | 2983 | AM_CONDITIONAL(HAVE_INTEL_DRIVERS, test "x$HAVE_INTEL_VULKAN" = xyes -o \ |
| 2984 | "x$HAVE_I965_DRI" = xyes) |
Jason Ekstrand | ca16373 | 2016-03-29 12:00:24 -0700 | [diff] [blame] | 2985 | |
Emil Velikov | 0d0313c | 2014-09-05 14:06:21 +0100 | [diff] [blame] | 2986 | AM_CONDITIONAL(NEED_RADEON_DRM_WINSYS, test "x$HAVE_GALLIUM_R300" = xyes -o \ |
Matt Turner | b3f1f66 | 2013-01-20 15:32:08 -0800 | [diff] [blame] | 2987 | "x$HAVE_GALLIUM_R600" = xyes -o \ |
| 2988 | "x$HAVE_GALLIUM_RADEONSI" = xyes) |
Chuck Atkins | a92910a | 2016-04-18 10:09:17 -0400 | [diff] [blame] | 2989 | AM_CONDITIONAL(NEED_WINSYS_XLIB, test "x$enable_glx" = xgallium-xlib) |
Tom Stellard | d85e512 | 2012-04-20 14:46:45 -0400 | [diff] [blame] | 2990 | AM_CONDITIONAL(HAVE_GALLIUM_COMPUTE, test x$enable_opencl = xyes) |
Emil Velikov | b3b4156 | 2017-02-07 15:53:14 +0000 | [diff] [blame] | 2991 | AM_CONDITIONAL(HAVE_GALLIUM_LLVM, test "x$enable_llvm" = xyes) |
Eric Anholt | c4c488a | 2017-08-25 15:34:22 -0700 | [diff] [blame] | 2992 | AM_CONDITIONAL(USE_V3D_SIMULATOR, test x$USE_V3D_SIMULATOR = xyes) |
Eric Anholt | 1850d0a | 2014-06-19 08:19:38 +0100 | [diff] [blame] | 2993 | AM_CONDITIONAL(USE_VC4_SIMULATOR, test x$USE_VC4_SIMULATOR = xyes) |
Tom Stellard | 80d290d | 2012-08-24 11:48:32 -0700 | [diff] [blame] | 2994 | |
Emil Velikov | 26d380d | 2014-01-19 03:09:03 +0000 | [diff] [blame] | 2995 | AM_CONDITIONAL(HAVE_LIBDRM, test "x$have_libdrm" = xyes) |
Matt Turner | 13a7010 | 2013-01-19 00:35:43 -0800 | [diff] [blame] | 2996 | AM_CONDITIONAL(HAVE_OSMESA, test "x$enable_osmesa" = xyes) |
Matt Turner | 2f142d5 | 2013-08-20 14:16:17 -0700 | [diff] [blame] | 2997 | AM_CONDITIONAL(HAVE_GALLIUM_OSMESA, test "x$enable_gallium_osmesa" = xyes) |
Chuck Atkins | a89faa2 | 2016-10-04 11:05:30 -0400 | [diff] [blame] | 2998 | AM_CONDITIONAL(HAVE_COMMON_OSMESA, test "x$enable_osmesa" = xyes -o \ |
| 2999 | "x$enable_gallium_osmesa" = xyes) |
Eric Anholt | f9d1562 | 2012-05-24 13:59:21 -0700 | [diff] [blame] | 3000 | |
Matt Turner | d8abd67 | 2013-11-05 13:53:45 -0800 | [diff] [blame] | 3001 | AM_CONDITIONAL(HAVE_X86_ASM, test "x$asm_arch" = xx86 -o "x$asm_arch" = xx86_64) |
Matt Turner | 957c757 | 2013-11-05 11:20:12 -0800 | [diff] [blame] | 3002 | AM_CONDITIONAL(HAVE_X86_64_ASM, test "x$asm_arch" = xx86_64) |
| 3003 | AM_CONDITIONAL(HAVE_SPARC_ASM, test "x$asm_arch" = xsparc) |
Ben Crocker | c26be2b | 2017-06-02 19:37:55 -0400 | [diff] [blame] | 3004 | AM_CONDITIONAL(HAVE_PPC64LE_ASM, test "x$asm_arch" = xppc64le) |
Eric Anholt | ba8533b | 2017-07-31 15:15:14 -0700 | [diff] [blame] | 3005 | AM_CONDITIONAL(HAVE_AARCH64_ASM, test "x$asm_arch" = xaarch64) |
| 3006 | AM_CONDITIONAL(HAVE_ARM_ASM, test "x$asm_arch" = xarm) |
Eric Anholt | f9d1562 | 2012-05-24 13:59:21 -0700 | [diff] [blame] | 3007 | |
Joakim Sindholt | fdd9657 | 2011-08-04 15:14:06 +0200 | [diff] [blame] | 3008 | AC_SUBST([NINE_MAJOR], 1) |
| 3009 | AC_SUBST([NINE_MINOR], 0) |
Dylan Baker | d8acf79 | 2017-11-06 16:38:06 -0800 | [diff] [blame] | 3010 | AC_SUBST([NINE_PATCH], 0) |
| 3011 | AC_SUBST([NINE_VERSION], "$NINE_MAJOR.$NINE_MINOR.$NINE_PATCH") |
Joakim Sindholt | fdd9657 | 2011-08-04 15:14:06 +0200 | [diff] [blame] | 3012 | |
Matt Turner | 184b2f0 | 2012-09-05 17:06:16 -0700 | [diff] [blame] | 3013 | AC_SUBST([VDPAU_MAJOR], 1) |
| 3014 | AC_SUBST([VDPAU_MINOR], 0) |
| 3015 | |
Matt Turner | 86c023f | 2017-03-06 10:42:30 -0800 | [diff] [blame] | 3016 | if test "x$enable_va" = xyes; then |
| 3017 | VA_MAJOR=`$PKG_CONFIG --modversion libva | $SED -n 's/\([[^\.]]*\)\..*$/\1/p'` |
| 3018 | VA_MINOR=`$PKG_CONFIG --modversion libva | $SED -n 's/.*\.\(.*\)\..*$/\1/p'` |
| 3019 | fi |
Christian König | 3867933 | 2014-07-02 16:35:28 -0400 | [diff] [blame] | 3020 | AC_SUBST([VA_MAJOR], $VA_MAJOR) |
| 3021 | AC_SUBST([VA_MINOR], $VA_MINOR) |
| 3022 | |
Dave Airlie | 3f7ef24 | 2016-10-14 07:12:33 +0100 | [diff] [blame] | 3023 | AM_CONDITIONAL(HAVE_VULKAN_COMMON, test "x$VULKAN_DRIVERS" != "x") |
| 3024 | |
Matt Turner | 0b132df | 2012-09-07 20:47:04 -0700 | [diff] [blame] | 3025 | AC_SUBST([XVMC_MAJOR], 1) |
| 3026 | AC_SUBST([XVMC_MINOR], 0) |
| 3027 | |
Dylan Baker | 65fc16c | 2017-10-30 16:52:29 -0700 | [diff] [blame] | 3028 | AC_SUBST([XA_MAJOR], 2) |
Thomas Hellstrom | 3d0b497 | 2018-03-08 08:56:47 +0100 | [diff] [blame] | 3029 | AC_SUBST([XA_MINOR], 4) |
Dylan Baker | d8acf79 | 2017-11-06 16:38:06 -0800 | [diff] [blame] | 3030 | AC_SUBST([XA_PATCH], 0) |
| 3031 | AC_SUBST([XA_VERSION], "$XA_MAJOR.$XA_MINOR.$XA_PATCH") |
Matt Turner | d53901c | 2012-09-07 15:24:24 -0700 | [diff] [blame] | 3032 | |
Jason Ekstrand | 2d5bd66 | 2016-04-14 13:02:48 -0700 | [diff] [blame] | 3033 | AC_ARG_ENABLE(valgrind, |
| 3034 | [AS_HELP_STRING([--enable-valgrind], |
| 3035 | [Build mesa with valgrind support (default: auto)])], |
| 3036 | [VALGRIND=$enableval], [VALGRIND=auto]) |
| 3037 | if test "x$VALGRIND" != xno; then |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 3038 | PKG_CHECK_MODULES(VALGRIND, [valgrind], [have_valgrind=yes], [have_valgrind=no]) |
Kristian Høgsberg | 769785c | 2015-05-08 22:32:37 -0700 | [diff] [blame] | 3039 | fi |
Jason Ekstrand | 2d5bd66 | 2016-04-14 13:02:48 -0700 | [diff] [blame] | 3040 | AC_MSG_CHECKING([whether to enable Valgrind support]) |
| 3041 | if test "x$VALGRIND" = xauto; then |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 3042 | VALGRIND="$have_valgrind" |
Jason Ekstrand | 2d5bd66 | 2016-04-14 13:02:48 -0700 | [diff] [blame] | 3043 | fi |
| 3044 | |
| 3045 | if test "x$VALGRIND" = "xyes"; then |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 3046 | if ! test "x$have_valgrind" = xyes; then |
| 3047 | AC_MSG_ERROR([Valgrind support required but not present]) |
| 3048 | fi |
| 3049 | AC_DEFINE([HAVE_VALGRIND], 1, [Use valgrind intrinsics to suppress false warnings]) |
Jason Ekstrand | 2d5bd66 | 2016-04-14 13:02:48 -0700 | [diff] [blame] | 3050 | fi |
| 3051 | |
| 3052 | AC_MSG_RESULT([$VALGRIND]) |
Kristian Høgsberg | 769785c | 2015-05-08 22:32:37 -0700 | [diff] [blame] | 3053 | |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 3054 | dnl Restore LDFLAGS and CPPFLAGS |
| 3055 | LDFLAGS="$_SAVE_LDFLAGS" |
| 3056 | CPPFLAGS="$_SAVE_CPPFLAGS" |
| 3057 | |
Johannes Obermayr | 6016dab | 2013-09-12 00:32:40 +0200 | [diff] [blame] | 3058 | dnl Suppress clang's warnings about unused CFLAGS and CXXFLAGS |
| 3059 | if test "x$acv_mesa_CLANG" = xyes; then |
| 3060 | CFLAGS="$CFLAGS -Qunused-arguments" |
| 3061 | CXXFLAGS="$CXXFLAGS -Qunused-arguments" |
| 3062 | fi |
| 3063 | |
Marcin Baczyński | ff2efdf | 2011-07-13 21:26:49 +0200 | [diff] [blame] | 3064 | dnl Add user CFLAGS and CXXFLAGS |
| 3065 | CFLAGS="$CFLAGS $USER_CFLAGS" |
| 3066 | CXXFLAGS="$CXXFLAGS $USER_CXXFLAGS" |
| 3067 | |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 3068 | dnl Substitute the config |
Matt Turner | c874740 | 2012-09-05 20:29:20 -0700 | [diff] [blame] | 3069 | AC_CONFIG_FILES([Makefile |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 3070 | src/Makefile |
| 3071 | src/amd/Makefile |
| 3072 | src/amd/vulkan/Makefile |
| 3073 | src/broadcom/Makefile |
| 3074 | src/compiler/Makefile |
| 3075 | src/egl/Makefile |
| 3076 | src/egl/main/egl.pc |
| 3077 | src/egl/wayland/wayland-drm/Makefile |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 3078 | src/gallium/Makefile |
| 3079 | src/gallium/auxiliary/Makefile |
| 3080 | src/gallium/auxiliary/pipe-loader/Makefile |
| 3081 | src/gallium/drivers/freedreno/Makefile |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 3082 | src/gallium/drivers/i915/Makefile |
| 3083 | src/gallium/drivers/llvmpipe/Makefile |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 3084 | src/gallium/drivers/nouveau/Makefile |
| 3085 | src/gallium/drivers/pl111/Makefile |
| 3086 | src/gallium/drivers/r300/Makefile |
| 3087 | src/gallium/drivers/r600/Makefile |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 3088 | src/gallium/drivers/radeonsi/Makefile |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 3089 | src/gallium/drivers/softpipe/Makefile |
| 3090 | src/gallium/drivers/svga/Makefile |
| 3091 | src/gallium/drivers/swr/Makefile |
Thierry Reding | 1755f60 | 2014-05-28 00:36:48 +0200 | [diff] [blame] | 3092 | src/gallium/drivers/tegra/Makefile |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 3093 | src/gallium/drivers/etnaviv/Makefile |
| 3094 | src/gallium/drivers/imx/Makefile |
Eric Anholt | 8c47ebb | 2018-05-01 12:24:48 -0700 | [diff] [blame] | 3095 | src/gallium/drivers/v3d/Makefile |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 3096 | src/gallium/drivers/vc4/Makefile |
| 3097 | src/gallium/drivers/virgl/Makefile |
| 3098 | src/gallium/state_trackers/clover/Makefile |
| 3099 | src/gallium/state_trackers/dri/Makefile |
| 3100 | src/gallium/state_trackers/glx/xlib/Makefile |
| 3101 | src/gallium/state_trackers/nine/Makefile |
Gurkirpal Singh | bb5e27f | 2018-01-20 05:12:06 +0530 | [diff] [blame] | 3102 | src/gallium/state_trackers/omx/Makefile |
| 3103 | src/gallium/state_trackers/omx/bellagio/Makefile |
Gurkirpal Singh | e2afa15 | 2018-01-20 05:37:53 +0530 | [diff] [blame] | 3104 | src/gallium/state_trackers/omx/tizonia/Makefile |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 3105 | src/gallium/state_trackers/osmesa/Makefile |
| 3106 | src/gallium/state_trackers/va/Makefile |
| 3107 | src/gallium/state_trackers/vdpau/Makefile |
| 3108 | src/gallium/state_trackers/xa/Makefile |
Dylan Baker | 65fc16c | 2017-10-30 16:52:29 -0700 | [diff] [blame] | 3109 | src/gallium/state_trackers/xa/xa_tracker.h |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 3110 | src/gallium/state_trackers/xvmc/Makefile |
| 3111 | src/gallium/targets/d3dadapter9/Makefile |
| 3112 | src/gallium/targets/d3dadapter9/d3d.pc |
| 3113 | src/gallium/targets/dri/Makefile |
| 3114 | src/gallium/targets/libgl-xlib/Makefile |
Gurkirpal Singh | bb5e27f | 2018-01-20 05:12:06 +0530 | [diff] [blame] | 3115 | src/gallium/targets/omx/Makefile |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 3116 | src/gallium/targets/opencl/Makefile |
| 3117 | src/gallium/targets/opencl/mesa.icd |
| 3118 | src/gallium/targets/osmesa/Makefile |
| 3119 | src/gallium/targets/osmesa/osmesa.pc |
| 3120 | src/gallium/targets/pipe-loader/Makefile |
| 3121 | src/gallium/targets/va/Makefile |
| 3122 | src/gallium/targets/vdpau/Makefile |
| 3123 | src/gallium/targets/xa/Makefile |
| 3124 | src/gallium/targets/xa/xatracker.pc |
| 3125 | src/gallium/targets/xvmc/Makefile |
| 3126 | src/gallium/tests/trivial/Makefile |
| 3127 | src/gallium/tests/unit/Makefile |
| 3128 | src/gallium/winsys/etnaviv/drm/Makefile |
| 3129 | src/gallium/winsys/imx/drm/Makefile |
| 3130 | src/gallium/winsys/freedreno/drm/Makefile |
| 3131 | src/gallium/winsys/i915/drm/Makefile |
| 3132 | src/gallium/winsys/nouveau/drm/Makefile |
| 3133 | src/gallium/winsys/pl111/drm/Makefile |
| 3134 | src/gallium/winsys/radeon/drm/Makefile |
| 3135 | src/gallium/winsys/amdgpu/drm/Makefile |
| 3136 | src/gallium/winsys/svga/drm/Makefile |
| 3137 | src/gallium/winsys/sw/dri/Makefile |
| 3138 | src/gallium/winsys/sw/kms-dri/Makefile |
| 3139 | src/gallium/winsys/sw/null/Makefile |
| 3140 | src/gallium/winsys/sw/wrapper/Makefile |
| 3141 | src/gallium/winsys/sw/xlib/Makefile |
Thierry Reding | 1755f60 | 2014-05-28 00:36:48 +0200 | [diff] [blame] | 3142 | src/gallium/winsys/tegra/drm/Makefile |
Eric Anholt | 8c47ebb | 2018-05-01 12:24:48 -0700 | [diff] [blame] | 3143 | src/gallium/winsys/v3d/drm/Makefile |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 3144 | src/gallium/winsys/vc4/drm/Makefile |
| 3145 | src/gallium/winsys/virgl/drm/Makefile |
| 3146 | src/gallium/winsys/virgl/vtest/Makefile |
| 3147 | src/gbm/Makefile |
| 3148 | src/gbm/main/gbm.pc |
| 3149 | src/glx/Makefile |
| 3150 | src/glx/apple/Makefile |
| 3151 | src/glx/tests/Makefile |
| 3152 | src/glx/windows/Makefile |
| 3153 | src/glx/windows/windowsdriproto.pc |
| 3154 | src/gtest/Makefile |
| 3155 | src/intel/Makefile |
| 3156 | src/loader/Makefile |
| 3157 | src/mapi/Makefile |
| 3158 | src/mapi/es1api/glesv1_cm.pc |
| 3159 | src/mapi/es2api/glesv2.pc |
| 3160 | src/mapi/glapi/gen/Makefile |
| 3161 | src/mesa/Makefile |
| 3162 | src/mesa/gl.pc |
| 3163 | src/mesa/drivers/dri/dri.pc |
| 3164 | src/mesa/drivers/dri/common/Makefile |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 3165 | src/mesa/drivers/dri/i915/Makefile |
| 3166 | src/mesa/drivers/dri/i965/Makefile |
| 3167 | src/mesa/drivers/dri/Makefile |
| 3168 | src/mesa/drivers/dri/nouveau/Makefile |
| 3169 | src/mesa/drivers/dri/r200/Makefile |
| 3170 | src/mesa/drivers/dri/radeon/Makefile |
| 3171 | src/mesa/drivers/dri/swrast/Makefile |
| 3172 | src/mesa/drivers/osmesa/Makefile |
| 3173 | src/mesa/drivers/osmesa/osmesa.pc |
| 3174 | src/mesa/drivers/x11/Makefile |
| 3175 | src/mesa/main/tests/Makefile |
Gert Wollny | 7be6d8f | 2017-06-30 08:37:36 +0200 | [diff] [blame] | 3176 | src/mesa/state_tracker/tests/Makefile |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 3177 | src/util/Makefile |
| 3178 | src/util/tests/hash_table/Makefile |
Caio Marcelo de Oliveira Filho | 8af0a45 | 2018-07-06 11:26:13 -0700 | [diff] [blame] | 3179 | src/util/tests/set/Makefile |
Thomas Helland | 584a2a2 | 2017-05-19 22:07:17 +0200 | [diff] [blame] | 3180 | src/util/tests/string_buffer/Makefile |
Scott D Phillips | 943fecc | 2018-05-04 17:11:13 -0700 | [diff] [blame] | 3181 | src/util/tests/vma/Makefile |
Nicolai Hähnle | 601093f | 2017-06-30 11:57:06 +0200 | [diff] [blame] | 3182 | src/util/xmlpool/Makefile |
Eric Engestrom | 8616a9b | 2017-07-19 10:12:17 +0100 | [diff] [blame] | 3183 | src/vulkan/Makefile]) |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 3184 | |
Dan Nicholson | e14ebbc | 2008-05-06 11:28:43 -0700 | [diff] [blame] | 3185 | AC_OUTPUT |
Dan Nicholson | aab38cf | 2007-12-11 08:21:51 -0800 | [diff] [blame] | 3186 | |
Jason Ekstrand | bed7429 | 2016-04-22 16:04:05 -0700 | [diff] [blame] | 3187 | # Fix up dependencies in *.Plo files, where we changed the extension of a |
| 3188 | # source file |
| 3189 | $SED -i -e 's/brw_blorp.cpp/brw_blorp.c/' src/mesa/drivers/dri/i965/.deps/brw_blorp.Plo |
| 3190 | |
Matt Turner | 904d416 | 2017-08-09 14:24:18 -0400 | [diff] [blame] | 3191 | rm -f src/compiler/spirv/spirv_info.lo |
| 3192 | echo "# dummy" > src/compiler/spirv/.deps/spirv_info.Plo |
Jason Ekstrand | bed7429 | 2016-04-22 16:04:05 -0700 | [diff] [blame] | 3193 | |
Matt Turner | 3e6326d | 2018-03-28 11:07:36 -0700 | [diff] [blame] | 3194 | rm -f src/compiler/nir/.deps/nir_intrinsics.Plo |
| 3195 | echo "# dummy" > src/compiler/nir/.deps/nir_intrinsics.Plo |
| 3196 | |
Dan Nicholson | 9cad8e3 | 2007-11-30 08:49:57 -0800 | [diff] [blame] | 3197 | dnl |
| 3198 | dnl Output some configuration info for the user |
| 3199 | dnl |
| 3200 | echo "" |
| 3201 | echo " prefix: $prefix" |
| 3202 | echo " exec_prefix: $exec_prefix" |
| 3203 | echo " libdir: $libdir" |
Dan Nicholson | 11ac5b2 | 2008-07-03 09:17:44 -0700 | [diff] [blame] | 3204 | echo " includedir: $includedir" |
Dan Nicholson | 9cad8e3 | 2007-11-30 08:49:57 -0800 | [diff] [blame] | 3205 | |
Chia-I Wu | 815faa4 | 2010-10-29 12:34:44 +0800 | [diff] [blame] | 3206 | dnl API info |
| 3207 | echo "" |
| 3208 | echo " OpenGL: $enable_opengl (ES1: $enable_gles1 ES2: $enable_gles2)" |
Chia-I Wu | 815faa4 | 2010-10-29 12:34:44 +0800 | [diff] [blame] | 3209 | |
Dan Nicholson | 9cad8e3 | 2007-11-30 08:49:57 -0800 | [diff] [blame] | 3210 | dnl Driver info |
| 3211 | echo "" |
Matt Turner | 2f142d5 | 2013-08-20 14:16:17 -0700 | [diff] [blame] | 3212 | case "x$enable_osmesa$enable_gallium_osmesa" in |
| 3213 | xnoyes) |
| 3214 | echo " OSMesa: lib$OSMESA_LIB (Gallium)" |
| 3215 | ;; |
| 3216 | xyesno) |
Chia-I Wu | 815faa4 | 2010-10-29 12:34:44 +0800 | [diff] [blame] | 3217 | echo " OSMesa: lib$OSMESA_LIB" |
Matt Turner | 2f142d5 | 2013-08-20 14:16:17 -0700 | [diff] [blame] | 3218 | ;; |
| 3219 | xnono) |
Chia-I Wu | 815faa4 | 2010-10-29 12:34:44 +0800 | [diff] [blame] | 3220 | echo " OSMesa: no" |
Matt Turner | 2f142d5 | 2013-08-20 14:16:17 -0700 | [diff] [blame] | 3221 | ;; |
| 3222 | esac |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 3223 | |
Jon TURNEY | 45f9aae | 2014-05-12 10:17:06 +0100 | [diff] [blame] | 3224 | echo "" |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 3225 | if test "x$enable_dri" != xno; then |
Jon TURNEY | 45f9aae | 2014-05-12 10:17:06 +0100 | [diff] [blame] | 3226 | echo " DRI platform: $dri_platform" |
Emil Velikov | 8015ffe | 2014-02-11 14:47:37 +0000 | [diff] [blame] | 3227 | if test -z "$DRI_DIRS"; then |
Chia-I Wu | 815faa4 | 2010-10-29 12:34:44 +0800 | [diff] [blame] | 3228 | echo " DRI drivers: no" |
| 3229 | else |
Emil Velikov | ee55500 | 2014-02-04 17:26:38 +0000 | [diff] [blame] | 3230 | echo " DRI drivers: $DRI_DIRS" |
Chia-I Wu | 815faa4 | 2010-10-29 12:34:44 +0800 | [diff] [blame] | 3231 | fi |
| 3232 | echo " DRI driver dir: $DRI_DRIVER_INSTALL_DIR" |
Dan Nicholson | 544ab20 | 2007-12-30 08:41:53 -0800 | [diff] [blame] | 3233 | fi |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 3234 | |
Chuck Atkins | a92910a | 2016-04-18 10:09:17 -0400 | [diff] [blame] | 3235 | case "x$enable_glx" in |
| 3236 | xdri) |
| 3237 | echo " GLX: DRI-based" |
| 3238 | ;; |
| 3239 | xxlib) |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 3240 | echo " GLX: Xlib-based" |
| 3241 | ;; |
Chuck Atkins | a92910a | 2016-04-18 10:09:17 -0400 | [diff] [blame] | 3242 | xgallium-xlib) |
| 3243 | echo " GLX: Xlib-based (Gallium)" |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 3244 | ;; |
| 3245 | *) |
| 3246 | echo " GLX: $enable_glx" |
| 3247 | ;; |
| 3248 | esac |
| 3249 | |
Chia-I Wu | 815faa4 | 2010-10-29 12:34:44 +0800 | [diff] [blame] | 3250 | dnl EGL |
| 3251 | echo "" |
| 3252 | echo " EGL: $enable_egl" |
| 3253 | if test "$enable_egl" = yes; then |
Chia-I Wu | 1230050 | 2010-10-31 21:01:54 +0800 | [diff] [blame] | 3254 | |
| 3255 | egl_drivers="" |
Emil Velikov | e8044dd | 2016-12-07 13:24:58 +0000 | [diff] [blame] | 3256 | if test "x$enable_dri" != "xno"; then |
Eric Anholt | 8861202 | 2012-02-05 10:46:13 +0100 | [diff] [blame] | 3257 | egl_drivers="$egl_drivers builtin:egl_dri2" |
| 3258 | fi |
Emil Velikov | e8044dd | 2016-12-07 13:24:58 +0000 | [diff] [blame] | 3259 | if test "x$enable_dri3" != "xno"; then |
Boyan Ding | f35198b | 2015-07-21 23:44:00 +0800 | [diff] [blame] | 3260 | egl_drivers="$egl_drivers builtin:egl_dri3" |
| 3261 | fi |
Chia-I Wu | 1230050 | 2010-10-31 21:01:54 +0800 | [diff] [blame] | 3262 | |
Marek Olšák | c46c551 | 2014-11-01 14:05:16 +0100 | [diff] [blame] | 3263 | echo " EGL drivers: $egl_drivers" |
Florent Thoumie | b5095ab | 2008-07-28 14:44:43 +0100 | [diff] [blame] | 3264 | fi |
Marek Olšák | 0e07570 | 2016-10-18 23:18:28 +0200 | [diff] [blame] | 3265 | if test "x$enable_gbm" = xyes; then |
| 3266 | echo " GBM: yes" |
| 3267 | else |
| 3268 | echo " GBM: no" |
| 3269 | fi |
Dan Nicholson | 9cad8e3 | 2007-11-30 08:49:57 -0800 | [diff] [blame] | 3270 | |
Emil Velikov | 73682f8 | 2016-11-25 18:34:03 +0000 | [diff] [blame] | 3271 | echo " EGL/Vulkan/VL platforms: $platforms" |
Emil Velikov | 7748c3f | 2017-04-17 13:29:41 +0100 | [diff] [blame] | 3272 | |
Jason Ekstrand | ca16373 | 2016-03-29 12:00:24 -0700 | [diff] [blame] | 3273 | # Vulkan |
| 3274 | echo "" |
| 3275 | if test "x$VULKAN_DRIVERS" != x; then |
| 3276 | echo " Vulkan drivers: $VULKAN_DRIVERS" |
| 3277 | echo " Vulkan ICD dir: $VULKAN_ICD_INSTALL_DIR" |
| 3278 | else |
| 3279 | echo " Vulkan drivers: no" |
| 3280 | fi |
| 3281 | |
Jakob Bornecrantz | 7e54d7d | 2009-02-11 02:38:21 +0100 | [diff] [blame] | 3282 | echo "" |
Emil Velikov | b3b4156 | 2017-02-07 15:53:14 +0000 | [diff] [blame] | 3283 | if test "x$enable_llvm" = xyes; then |
Jose Fonseca | 3404196 | 2017-01-18 14:42:47 +0000 | [diff] [blame] | 3284 | echo " llvm: yes" |
Jakob Bornecrantz | fe0fe67 | 2010-04-28 13:38:58 +0100 | [diff] [blame] | 3285 | echo " llvm-config: $LLVM_CONFIG" |
| 3286 | echo " llvm-version: $LLVM_VERSION" |
| 3287 | else |
Jose Fonseca | 3404196 | 2017-01-18 14:42:47 +0000 | [diff] [blame] | 3288 | echo " llvm: no" |
Tobias Droste | 38e8129 | 2016-12-08 03:03:36 +0100 | [diff] [blame] | 3289 | fi |
Jakob Bornecrantz | fe0fe67 | 2010-04-28 13:38:58 +0100 | [diff] [blame] | 3290 | |
| 3291 | echo "" |
Matt Turner | a9676ae | 2013-01-18 23:59:49 -0800 | [diff] [blame] | 3292 | if test -n "$with_gallium_drivers"; then |
Ilia Mirkin | fd5e058 | 2015-10-14 15:49:58 -0400 | [diff] [blame] | 3293 | echo " Gallium drivers: $gallium_drivers" |
| 3294 | echo " Gallium st: $gallium_st" |
Jakob Bornecrantz | 7e54d7d | 2009-02-11 02:38:21 +0100 | [diff] [blame] | 3295 | else |
| 3296 | echo " Gallium: no" |
| 3297 | fi |
| 3298 | |
Steven Toth | 8c60bcb | 2016-09-28 12:58:00 -0600 | [diff] [blame] | 3299 | echo "" |
| 3300 | if test "x$enable_gallium_extra_hud" != xyes; then |
| 3301 | echo " HUD extra stats: no" |
| 3302 | else |
| 3303 | echo " HUD extra stats: yes" |
| 3304 | fi |
| 3305 | |
| 3306 | if test "x$enable_lmsensors" != xyes; then |
| 3307 | echo " HUD lmsensors: no" |
| 3308 | else |
| 3309 | echo " HUD lmsensors: yes" |
| 3310 | fi |
| 3311 | |
Tim Rowley | f42186b | 2017-07-07 13:38:22 -0500 | [diff] [blame] | 3312 | echo "" |
| 3313 | if test "x$HAVE_GALLIUM_SWR" != x; then |
Chuck Atkins | 2ed8b6f | 2018-01-18 14:57:57 -0500 | [diff] [blame] | 3314 | if test "x$HAVE_SWR_BUILTIN" = xyes; then |
| 3315 | echo " SWR archs: $swr_archs (builtin)" |
| 3316 | else |
| 3317 | echo " SWR archs: $swr_archs" |
| 3318 | fi |
Tim Rowley | f42186b | 2017-07-07 13:38:22 -0500 | [diff] [blame] | 3319 | fi |
| 3320 | |
Dan Nicholson | 9cad8e3 | 2007-11-30 08:49:57 -0800 | [diff] [blame] | 3321 | dnl Libraries |
| 3322 | echo "" |
| 3323 | echo " Shared libs: $enable_shared" |
| 3324 | echo " Static libs: $enable_static" |
Matt Turner | 53248e5 | 2012-08-17 11:25:14 -0700 | [diff] [blame] | 3325 | echo " Shared-glapi: $enable_shared_glapi" |
Dan Nicholson | 9cad8e3 | 2007-11-30 08:49:57 -0800 | [diff] [blame] | 3326 | |
Dan Nicholson | 16a07fb | 2007-12-12 09:12:15 -0800 | [diff] [blame] | 3327 | dnl Compiler options |
Eric Engestrom | 9d1dbf2 | 2017-04-25 21:15:55 +0100 | [diff] [blame] | 3328 | # cleanup the CFLAGS/CXXFLAGS/LDFLAGS/DEFINES vars |
Matt Turner | 3ed95dc | 2012-09-05 20:41:08 -0700 | [diff] [blame] | 3329 | cflags=`echo $CFLAGS | \ |
Dan Nicholson | 16a07fb | 2007-12-12 09:12:15 -0800 | [diff] [blame] | 3330 | $SED 's/^ *//;s/ */ /;s/ *$//'` |
Matt Turner | 3ed95dc | 2012-09-05 20:41:08 -0700 | [diff] [blame] | 3331 | cxxflags=`echo $CXXFLAGS | \ |
Dan Nicholson | 16a07fb | 2007-12-12 09:12:15 -0800 | [diff] [blame] | 3332 | $SED 's/^ *//;s/ */ /;s/ *$//'` |
Eric Engestrom | 9d1dbf2 | 2017-04-25 21:15:55 +0100 | [diff] [blame] | 3333 | ldflags=`echo $LDFLAGS | $SED 's/^ *//;s/ */ /;s/ *$//'` |
Eric Anholt | e426949 | 2012-06-11 10:25:05 -0700 | [diff] [blame] | 3334 | defines=`echo $DEFINES | $SED 's/^ *//;s/ */ /;s/ *$//'` |
Dan Nicholson | 16a07fb | 2007-12-12 09:12:15 -0800 | [diff] [blame] | 3335 | echo "" |
| 3336 | echo " CFLAGS: $cflags" |
| 3337 | echo " CXXFLAGS: $cxxflags" |
Gert Wollny | 09ad257 | 2017-10-18 17:05:25 +0200 | [diff] [blame] | 3338 | echo " CXX11_CXXFLAGS: $CXX11_CXXFLAGS" |
Eric Engestrom | 9d1dbf2 | 2017-04-25 21:15:55 +0100 | [diff] [blame] | 3339 | echo " LDFLAGS: $ldflags" |
Dan Nicholson | 16a07fb | 2007-12-12 09:12:15 -0800 | [diff] [blame] | 3340 | echo " Macros: $defines" |
Kenneth Graunke | 3acc826 | 2010-10-25 13:52:58 -0700 | [diff] [blame] | 3341 | echo "" |
Emil Velikov | b3b4156 | 2017-02-07 15:53:14 +0000 | [diff] [blame] | 3342 | if test "x$enable_llvm" = xyes; then |
Marek Olšák | a84a8da | 2012-11-27 22:32:50 +0100 | [diff] [blame] | 3343 | echo " LLVM_CFLAGS: $LLVM_CFLAGS" |
| 3344 | echo " LLVM_CXXFLAGS: $LLVM_CXXFLAGS" |
| 3345 | echo " LLVM_CPPFLAGS: $LLVM_CPPFLAGS" |
Marek Olšák | 61293bf | 2015-04-13 21:44:02 +0200 | [diff] [blame] | 3346 | echo " LLVM_LDFLAGS: $LLVM_LDFLAGS" |
Marek Olšák | a84a8da | 2012-11-27 22:32:50 +0100 | [diff] [blame] | 3347 | echo "" |
| 3348 | fi |
Kenneth Graunke | 3acc826 | 2010-10-25 13:52:58 -0700 | [diff] [blame] | 3349 | echo " PYTHON2: $PYTHON2" |
Dan Nicholson | 16a07fb | 2007-12-12 09:12:15 -0800 | [diff] [blame] | 3350 | |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 3351 | echo "" |
Dan Nicholson | b645942 | 2008-03-24 10:01:50 -0700 | [diff] [blame] | 3352 | echo " Run '${MAKE-make}' to build Mesa" |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 3353 | echo "" |