diff options
author | Lukas Larsson <[email protected]> | 2017-09-11 14:45:04 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2017-09-11 14:45:04 +0200 |
commit | c15bb1698267ae64aac08b3b48040c44174700e5 (patch) | |
tree | cba3ff4bdbde104d912200014384f2599aa9f094 /erts/aclocal.m4 | |
parent | 87b57377864d3161a79c65e32844d7539d1a9264 (diff) | |
parent | a9812e6307fe335d077f96d3a6342cbd4894ed0b (diff) | |
download | otp-c15bb1698267ae64aac08b3b48040c44174700e5.tar.gz otp-c15bb1698267ae64aac08b3b48040c44174700e5.tar.bz2 otp-c15bb1698267ae64aac08b3b48040c44174700e5.zip |
Merge branch 'lukas/erts/pgo/OTP-14604'
* lukas/erts/pgo/OTP-14604:
Add support for building a pgo beam_emu
Diffstat (limited to 'erts/aclocal.m4')
-rw-r--r-- | erts/aclocal.m4 | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/erts/aclocal.m4 b/erts/aclocal.m4 index 80bf236188..887babc13f 100644 --- a/erts/aclocal.m4 +++ b/erts/aclocal.m4 @@ -2726,6 +2726,21 @@ AC_DEFUN([LM_TRY_ENABLE_CFLAG], [ fi ]) +AC_DEFUN([LM_CHECK_ENABLE_CFLAG], [ + AC_MSG_CHECKING([whether $CC accepts $1...]) + saved_CFLAGS=$CFLAGS; + CFLAGS="$1 $CFLAGS"; + AC_TRY_COMPILE([],[return 0;],can_enable_flag=true,can_enable_flag=false) + CFLAGS=$saved_CFLAGS; + if test "X$can_enable_flag" = "Xtrue"; then + AS_VAR_SET($2, true) + AC_MSG_RESULT([yes]) + else + AS_VAR_SET($2, false) + AC_MSG_RESULT([no]) + fi +]) + dnl ERL_TRY_LINK_JAVA(CLASSES, FUNCTION-BODY dnl [ACTION_IF_FOUND [, ACTION-IF-NOT-FOUND]]) dnl Freely inspired by AC_TRY_LINK. (Maybe better to create a |