-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.m4
44 lines (35 loc) · 1.24 KB
/
configure.m4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
dnl -*- Autoconf -*-
AC_DEFUN([SST_macsimComponent_CONFIG],[
AC_ARG_WITH([qsim],
[AS_HELP_STRING([--with-qsim@<:@=DIR@:>@],
[Use QSim installed at optionally-specified prefix DIR])])
macsim_happy="yes"
CPPFLAGS_saved="$CPPFLAGS"
LDFLAGS_saved="$LDFLAGS"
LIBS_saved="$LIBS"
AS_IF([test ! -z "$with_qsim" -a "$with_qsim" != "yes"],
[QSIM_CPPFLAGS="-I$with_qsim/include -DUSING_QSIM"
CPPFLAGS="$QSIM_CPPFLAGS $CPPFLAGS"
QSIM_LDFLAGS="-L$with_qsim/lib"
LDFLAGS="$QSIM_LDFLAGS $LDFLAGS"
QSIM_LIBDIR="$with_qsim/lib"],
[QSIM_CPPFLAGS=
QSIM_LDFLAGS=
QSIM_LIBDIR=])
AC_LANG_PUSH(C++)
AC_CHECK_HEADERS([qsim.h], [], [sst_check_qsim_happy="no"])
AC_CHECK_LIB([qsim], [qsim_present],
[QSIM_LIBS="-lqsim -lcapstone"], [sst_check_qsim_happy="no"])
AC_LANG_POP(C++)
CPPFLAGS="$CPPFLAGS_saved"
LDFLAGS="$LDFLAGS_saved"
LIBS="$LIBS_saved"
AC_SUBST([QSIM_CPPFLAGS])
AC_SUBST([QSIM_LDFLAGS])
AC_SUBST([QSIM_LIBS])
AC_SUBST([QSIM_LIBDIR])
AS_IF([test "$sst_check_qsim_happy" = "yes"],
[AC_DEFINE([HAVE_QSIM], [1], [Set to 1 if QSim was found])])
AC_DEFINE_UNQUOTED([QSIM_LIBDIR], ["$QSIM_LIBDIR"], [Path to QSim library])
AS_IF([test "$macsim_happy" = "yes"], [$1], [$2])
])