Build system: implement REUSE with SPDX identifiers
[lttng-ust.git] / m4 / ax_append_compile_flags.m4
1 # SPDX-License-Identifier: FSFAP
2 #
3 # ============================================================================
4 # https://www.gnu.org/software/autoconf-archive/ax_append_compile_flags.html
5 # ============================================================================
6 #
7 # SYNOPSIS
8 #
9 # AX_APPEND_COMPILE_FLAGS([FLAG1 FLAG2 ...], [FLAGS-VARIABLE], [EXTRA-FLAGS], [INPUT])
10 #
11 # DESCRIPTION
12 #
13 # For every FLAG1, FLAG2 it is checked whether the compiler works with the
14 # flag. If it does, the flag is added FLAGS-VARIABLE
15 #
16 # If FLAGS-VARIABLE is not specified, the current language's flags (e.g.
17 # CFLAGS) is used. During the check the flag is always added to the
18 # current language's flags.
19 #
20 # If EXTRA-FLAGS is defined, it is added to the current language's default
21 # flags (e.g. CFLAGS) when the check is done. The check is thus made with
22 # the flags: "CFLAGS EXTRA-FLAGS FLAG". This can for example be used to
23 # force the compiler to issue an error when a bad flag is given.
24 #
25 # INPUT gives an alternative input source to AC_COMPILE_IFELSE.
26 #
27 # NOTE: This macro depends on the AX_APPEND_FLAG and
28 # AX_CHECK_COMPILE_FLAG. Please keep this macro in sync with
29 # AX_APPEND_LINK_FLAGS.
30 #
31 # LICENSE
32 #
33 # Copyright (c) 2011 Maarten Bosmans <mkbosmans@gmail.com>
34 #
35 # Copying and distribution of this file, with or without modification, are
36 # permitted in any medium without royalty provided the copyright notice
37 # and this notice are preserved. This file is offered as-is, without any
38 # warranty.
39
40 #serial 7
41
42 AC_DEFUN([AX_APPEND_COMPILE_FLAGS],
43 [AX_REQUIRE_DEFINED([AX_CHECK_COMPILE_FLAG])
44 AX_REQUIRE_DEFINED([AX_APPEND_FLAG])
45 for flag in $1; do
46 AX_CHECK_COMPILE_FLAG([$flag], [AX_APPEND_FLAG([$flag], [$2])], [], [$3], [$4])
47 done
48 ])dnl AX_APPEND_COMPILE_FLAGS
This page took 0.029988 seconds and 4 git commands to generate.