blob: c80f1cf99fad8e9627e656a857a7530bea497fa5 [file] [log] [blame]
Alexander Chemeris040b3052013-06-16 14:29:54 +04001dnl
2dnl Copyright 2008, 2009, 2010 Free Software Foundation, Inc.
3dnl
4dnl This software is distributed under the terms of the GNU Public License.
5dnl See the COPYING file in the main directory for details.
6dnl
7dnl This program is free software: you can redistribute it and/or modify
8dnl it under the terms of the GNU General Public License as published by
9dnl the Free Software Foundation, either version 3 of the License, or
10dnl (at your option) any later version.
11dnl
12dnl This program is distributed in the hope that it will be useful,
13dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
14dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15dnl GNU General Public License for more details.
16dnl
17dnl You should have received a copy of the GNU General Public License
18dnl along with this program. If not, see <http://www.gnu.org/licenses/>.
19dnl
20
Harald Weltedb9c1b52017-10-28 17:49:36 +020021AC_INIT([osmo-trx],
Martin Hauke20259cb2018-04-08 19:53:37 +020022 m4_esyscmd([./git-version-gen .tarball-version]),
Harald Weltedb9c1b52017-10-28 17:49:36 +020023 [openbsc@lists.osmocom.org])
Alexander Chemeris040b3052013-06-16 14:29:54 +040024AC_PREREQ(2.57)
25AC_CONFIG_SRCDIR([Transceiver52M/Makefile.am])
Pau Espin Pedrol82f83ce2018-01-09 15:09:31 +010026AC_CONFIG_AUX_DIR([.])
Thomas Tsou3eaae802013-08-20 19:31:14 -040027AC_CONFIG_MACRO_DIR([config])
Alexander Chemeris040b3052013-06-16 14:29:54 +040028AM_CONFIG_HEADER(config.h)
Pau Espin Pedrol2ac788b2018-01-09 17:44:49 +010029AC_CONFIG_TESTDIR(tests)
Alexander Chemeris040b3052013-06-16 14:29:54 +040030
31AC_CANONICAL_BUILD
32AC_CANONICAL_HOST
33AC_CANONICAL_TARGET
34
Tom Tsou2cc2ddd2015-04-06 18:02:56 -070035AM_INIT_AUTOMAKE([subdir-objects])
Alexander Chemeris040b3052013-06-16 14:29:54 +040036
37dnl Linux kernel KBuild style compile messages
38m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
39
Max099a44a2017-08-28 12:10:55 +020040dnl include release helper
41RELMAKE='-include osmo-release.mk'
42AC_SUBST([RELMAKE])
43
Alexander Chemeris040b3052013-06-16 14:29:54 +040044AM_PROG_AS
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010045AC_PROG_CC
Alexander Chemeris040b3052013-06-16 14:29:54 +040046AC_PROG_CXX
Tom Tsou8ca237b2017-06-09 11:15:58 -070047AX_CXX_COMPILE_STDCXX_11
Alexander Chemeris040b3052013-06-16 14:29:54 +040048AC_PROG_LN_S
49AC_PROG_MAKE_SET
50AC_PROG_INSTALL
51AC_PATH_PROG([RM_PROG], [rm])
52
Pau Espin Pedrolc92dad32018-02-20 13:22:58 +010053dnl check for pkg-config (explained in detail in libosmocore/configure.ac)
54AC_PATH_PROG(PKG_CONFIG_INSTALLED, pkg-config, no)
55if test "x$PKG_CONFIG_INSTALLED" = "xno"; then
56 AC_MSG_WARN([You need to install pkg-config])
57fi
58PKG_PROG_PKG_CONFIG([0.20])
59
Alexander Chemeris040b3052013-06-16 14:29:54 +040060AC_LIBTOOL_WIN32_DLL
61AC_ENABLE_SHARED dnl do build shared libraries
62AC_DISABLE_STATIC dnl don't build static libraries
63AC_PROG_LIBTOOL
64
65dnl Checks for header files.
66AC_HEADER_STDC
67dnl This is required for GnuRadio includes to understand endianess correctly:
68AC_CHECK_HEADERS([byteswap.h])
69
70dnl Checks for typedefs, structures, and compiler characteristics.
71AC_C_CONST
72AC_C_INLINE
73AC_TYPE_SIZE_T
74AC_HEADER_TIME
75AC_C_BIGENDIAN
76
Pau Espin Pedrol8b843e52018-02-20 14:44:39 +010077PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 0.10.0)
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010078PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 0.3.0)
79PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 0.10.0)
Pau Espin Pedrol8b843e52018-02-20 14:44:39 +010080
Alexander Chemeris040b3052013-06-16 14:29:54 +040081AC_ARG_WITH(usrp1, [
82 AS_HELP_STRING([--with-usrp1],
83 [enable USRP1 gnuradio based transceiver])
84])
85
Alexander Chemeris040b3052013-06-16 14:29:54 +040086AC_ARG_WITH(singledb, [
87 AS_HELP_STRING([--with-singledb],
88 [enable single daughterboard use on USRP1])
89])
90
Thomas Tsou7e4e5362013-10-30 21:18:55 -040091AC_ARG_WITH(neon, [
92 AS_HELP_STRING([--with-neon],
93 [enable ARM NEON support])
94])
95
96AC_ARG_WITH(neon-vfpv4, [
97 AS_HELP_STRING([--with-neon-vfpv4],
98 [enable ARM NEON FMA support])
99])
100
Tom Tsou66133312015-05-18 16:26:33 -0700101AC_ARG_WITH(sse, [
102 AS_HELP_STRING([--with-sse],
103 [enable x86 SSE support (default)])
104])
105
Thomas Tsou7e4e5362013-10-30 21:18:55 -0400106AS_IF([test "x$with_neon" = "xyes"], [
107 AC_DEFINE(HAVE_NEON, 1, Support ARM NEON)
108])
109
110AS_IF([test "x$with_neon_vfpv4" = "xyes"], [
111 AC_DEFINE(HAVE_NEON, 1, Support ARM NEON)
112 AC_DEFINE(HAVE_NEON_FMA, 1, Support ARM NEON with FMA)
113])
114
Alexander Chemeris040b3052013-06-16 14:29:54 +0400115AS_IF([test "x$with_usrp1" = "xyes"], [
Thomas Tsouc0641242013-10-11 14:55:31 -0400116 PKG_CHECK_MODULES(USRP, usrp >= 3.3)
Alexander Chemeris040b3052013-06-16 14:29:54 +0400117])
118
Thomas Tsoufffd9872013-11-04 10:20:21 -0800119AS_IF([test "x$with_usrp1" != "xyes"],[
Tom Tsou72bf7622017-03-07 14:16:46 -0800120 PKG_CHECK_MODULES(UHD, uhd >= 003.011,
121 [AC_DEFINE(USE_UHD_3_11, 1, UHD version 3.11.0 or higher)],
122 [PKG_CHECK_MODULES(UHD, uhd >= 003.009,
123 [AC_DEFINE(USE_UHD_3_9, 1, UHD version 3.9.0 or higher)],
124 [PKG_CHECK_MODULES(UHD, uhd >= 003.005)]
125 )]
Tom Tsou80cb0802017-01-19 13:44:02 -0800126 )
127 AC_DEFINE(USE_UHD, 1, All UHD versions)
Alexander Chemeris040b3052013-06-16 14:29:54 +0400128])
129
Alexander Chemeris040b3052013-06-16 14:29:54 +0400130AS_IF([test "x$with_singledb" = "xyes"], [
131 AC_DEFINE(SINGLEDB, 1, Define to 1 for single daughterboard)
132])
133
Thomas Tsoufffd9872013-11-04 10:20:21 -0800134# Find and define supported SIMD extensions
Tom Tsou66133312015-05-18 16:26:33 -0700135AS_IF([test "x$with_sse" != "xno"], [
Philipp Maiere8ae9fc2017-03-20 12:08:42 +0100136 AX_SSE
137], [
138 AM_CONDITIONAL(HAVE_SSE3, false)
139 AM_CONDITIONAL(HAVE_SSE4_1, false)
Tom Tsou66133312015-05-18 16:26:33 -0700140])
Thomas Tsoufffd9872013-11-04 10:20:21 -0800141
Vadim Yanitskiyee573572017-05-20 01:34:34 +0300142dnl Check if the compiler supports specified GCC's built-in function
143AC_DEFUN([CHECK_BUILTIN_SUPPORT], [
144 AC_CACHE_CHECK(
145 [whether ${CC} has $1 built-in],
146 [osmo_cv_cc_has_builtin], [
147 AC_LINK_IFELSE([
148 AC_LANG_PROGRAM([], [
149 __builtin_cpu_supports("sse");
150 ])
151 ],
152 [AS_VAR_SET([osmo_cv_cc_has_builtin], [yes])],
153 [AS_VAR_SET([osmo_cv_cc_has_builtin], [no])])
154 ]
155 )
156
157 AS_IF([test yes = AS_VAR_GET([osmo_cv_cc_has_builtin])], [
158 AC_DEFINE_UNQUOTED(AS_TR_CPP(HAVE_$1), 1,
159 [Define to 1 if compiler has the '$1' built-in function])
160 ], [
161 AC_MSG_WARN($2)
162 ])
163])
164
165dnl Check if the compiler supports runtime SIMD detection
166CHECK_BUILTIN_SUPPORT([__builtin_cpu_supports],
167 [Runtime SIMD detection will be disabled])
168
Alexander Chemeris040b3052013-06-16 14:29:54 +0400169AM_CONDITIONAL(USRP1, [test "x$with_usrp1" = "xyes"])
Thomas Tsou7e4e5362013-10-30 21:18:55 -0400170AM_CONDITIONAL(ARCH_ARM, [test "x$with_neon" = "xyes" || test "x$with_neon_vfpv4" = "xyes"])
171AM_CONDITIONAL(ARCH_ARM_A15, [test "x$with_neon_vfpv4" = "xyes"])
Alexander Chemeris040b3052013-06-16 14:29:54 +0400172
Alexander Chemeris040b3052013-06-16 14:29:54 +0400173PKG_CHECK_MODULES(LIBUSB, libusb-1.0)
Alexander Huemer6fafd332018-01-12 15:04:02 +0100174PKG_CHECK_MODULES(FFTWF, fftw3f)
Alexander Chemeris040b3052013-06-16 14:29:54 +0400175
Neels Hofmeyr24575a62016-07-05 13:00:18 +0200176AC_CHECK_HEADER([boost/config.hpp],[],
177 [AC_MSG_ERROR([boost/config.hpp not found, install e.g. libboost-dev])])
178
Alexander Chemeris040b3052013-06-16 14:29:54 +0400179dnl Output files
180AC_CONFIG_FILES([\
181 Makefile \
182 CommonLibs/Makefile \
183 GSM/Makefile \
184 Transceiver52M/Makefile \
Pau Espin Pedrol8fbbd652018-03-07 20:21:06 +0100185 Transceiver52M/common/Makefile \
Thomas Tsou7e4e5362013-10-30 21:18:55 -0400186 Transceiver52M/arm/Makefile \
Thomas Tsou17bbb9b2013-10-30 21:24:40 -0400187 Transceiver52M/x86/Makefile \
Pau Espin Pedrol2ac788b2018-01-09 17:44:49 +0100188 tests/Makefile \
189 tests/CommonLibs/Makefile \
Pau Espin Pedrolc2ba4272018-01-10 13:06:22 +0100190 tests/Transceiver52M/Makefile \
Thomas Tsou7e4e5362013-10-30 21:18:55 -0400191])
Alexander Chemeris040b3052013-06-16 14:29:54 +0400192
193AC_OUTPUT