1 # asm-underscore.m4 serial 5
2 dnl Copyright (C) 2010-2020 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
7 dnl From Bruno Haible. Based on as-underscore.m4 in GNU clisp.
10 # Tests for the prefix of C symbols at the assembly language level and the
11 # linker level. This prefix is either an underscore or empty. Defines the
12 # C macro USER_LABEL_PREFIX to this prefix, and sets ASM_SYMBOL_PREFIX to
13 # a stringified variant of this prefix.
15 AC_DEFUN([gl_ASM_SYMBOL_PREFIX],
17 AC_REQUIRE([AC_PROG_EGREP])
18 dnl We don't use GCC's __USER_LABEL_PREFIX__ here, because
19 dnl 1. It works only for GCC.
20 dnl 2. It is incorrectly defined on some platforms, in some GCC versions.
21 AC_REQUIRE([gl_C_ASM])
23 [whether C symbols are prefixed with underscore at the linker level],
24 [gl_cv_prog_as_underscore],
25 [cat > conftest.c <<EOF
27 extern "C" int foo (void);
29 int foo(void) { return 0; }
31 # Look for the assembly language name in the .s file.
32 AC_TRY_COMMAND(${CC-cc} $CFLAGS $CPPFLAGS $gl_c_asm_opt conftest.c) >/dev/null 2>&1
33 if LC_ALL=C $EGREP '(^|[[^a-zA-Z0-9_]])_foo([[^a-zA-Z0-9_]]|$)' conftest.$gl_asmext >/dev/null; then
34 gl_cv_prog_as_underscore=yes
36 gl_cv_prog_as_underscore=no
40 if test $gl_cv_prog_as_underscore = yes; then
45 AC_DEFINE_UNQUOTED([USER_LABEL_PREFIX], [$USER_LABEL_PREFIX],
46 [Define to the prefix of C symbols at the assembler and linker level,
47 either an underscore or empty.])
48 ASM_SYMBOL_PREFIX='"'${USER_LABEL_PREFIX}'"'
49 AC_SUBST([ASM_SYMBOL_PREFIX])
53 # Determines how to produce an assembly language file from C source code.
55 # gl_asmext - the extension of assembly language output,
56 # gl_c_asm_opt - the C compiler option that produces assembly language output.
60 AC_EGREP_CPP([MicrosoftCompiler],
66 [dnl Microsoft's 'cl' and 'clang-cl' produce an .asm file, whereas 'clang'
67 dnl produces a .s file. Need to distinguish 'clang' and 'clang-cl'.
69 echo 'int dummy;' > conftest.c
70 AC_TRY_COMMAND(${CC-cc} $CFLAGS $CPPFLAGS -c conftest.c) >/dev/null 2>&1
71 if test -f conftest.o; then