gprofng: adjust GPROFNG_VARIANT
[binutils-gdb.git] / gprofng / libcollector / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2 dnl
3 dnl Copyright (C) 2021 Free Software Foundation, Inc.
4 dnl
5 dnl This file is free software; you can redistribute it and/or modify
6 dnl it under the terms of the GNU General Public License as published by
7 dnl the Free Software Foundation; either version 3 of the License, or
8 dnl (at your option) any later version.
9 dnl
10 dnl This program is distributed in the hope that it will be useful,
11 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
12 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 dnl GNU General Public License for more details.
14 dnl
15 dnl You should have received a copy of the GNU General Public License
16 dnl along with this program; see the file COPYING3. If not see
17 dnl <http://www.gnu.org/licenses/>.
18
19 m4_include([../../bfd/version.m4])
20 AC_INIT([gprofng], BFD_VERSION)
21 AC_CONFIG_MACRO_DIRS([../../config ../..])
22 AC_CONFIG_AUX_DIR(../..)
23 AC_CANONICAL_TARGET
24 AM_INIT_AUTOMAKE
25 AM_MAINTAINER_MODE
26
27 AC_CONFIG_SRCDIR(libcol_util.c)
28
29 AC_USE_SYSTEM_EXTENSIONS
30 AC_PROG_CC
31 AC_PROG_CXX
32 AC_PROG_INSTALL
33 AC_PROG_RANLIB
34 AM_PROG_AR
35
36 LT_INIT
37 AC_ENABLE_SHARED
38 AC_DISABLE_STATIC
39
40 if test "$enable_shared" != "yes"; then
41 AC_MSG_WARN([Cannot set --enable-shared for gprofng/libcollector. Profiling will be unavailable.])
42 fi
43
44 GPROFNG_VARIANT=unknown
45 x=`echo | $CC $CFLAGS -dM -E - | grep -w __x86_64`
46 if test -n "$x"; then
47 GPROFNG_VARIANT=amd64-Linux
48 else
49 x=`echo | $CC $CFLAGS -dM -E - | grep -w __i386__`
50 if test -n "$x"; then
51 GPROFNG_VARIANT=intel-Linux
52 else
53 x=`echo | $CC $CFLAGS -dM -E - | grep -w __aarch64__`
54 if test -n "$x"; then
55 GPROFNG_VARIANT=aarch64-Linux
56 fi
57 fi
58 fi
59 AC_SUBST(GPROFNG_VARIANT)
60
61 ACX_PROG_CC_WARNING_OPTS([-Wno-nonnull-compare], [GPROFNG_NO_NONNULL_COMPARE_CFLAGS])
62 AC_SUBST(GPROFNG_NO_NONNULL_COMPARE_CFLAGS)
63
64 AC_CONFIG_FILES([Makefile])
65 AC_CONFIG_HEADERS([lib-config.h:../common/config.h.in])
66 AC_OUTPUT
67