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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584
|
dnl ***************************************************************************
dnl
dnl Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
dnl more contributor license agreements. See the NOTICE file distributed
dnl with this work for additional information regarding copyright ownership.
dnl Accellera licenses this file to you under the Apache License, Version 2.0
dnl (the "License"); you may not use this file except in compliance with the
dnl License. You may obtain a copy of the License at
dnl
dnl http://www.apache.org/licenses/LICENSE-2.0
dnl
dnl Unless required by applicable law or agreed to in writing, software
dnl distributed under the License is distributed on an "AS IS" BASIS,
dnl WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
dnl implied. See the License for the specific language governing
dnl permissions and limitations under the License.
dnl
dnl ***************************************************************************
dnl
dnl configure.ac --
dnl Process this file with autoconf to produce a configure script.
dnl
dnl Original Author: Martin Janssen, Synopsys, Inc., 2001-05-21
dnl
dnl ***************************************************************************
dnl
dnl MODIFICATION LOG - modifiers, enter your name, affiliation, date and
dnl changes you are making here.
dnl
dnl Name, Affiliation, Date: Alan Fitch, Doulos, 2012-03-10
dnl Description of Modification: TLM2 files added
dnl
dnl Name, Affiliation, Date: Philipp A. Hartmann, OFFIS, 2013-08-20
dnl Description of Modification: Installation/configuration reimplemented
dnl
dnl ***************************************************************************
dnl
dnl Initialization.
dnl
AC_INIT([SystemC],[3.0.2],[http://forums.accellera.org/forum/9-systemc/],[systemc],[http://accellera.org/],[])
dnl version of the included TLM library
TLM_PACKAGE_VERSION=2.0.6
AC_SUBST(TLM_PACKAGE_VERSION)
AC_CONFIG_SRCDIR([README.md])
AC_CONFIG_AUX_DIR([config])
AC_CONFIG_MACRO_DIR([config])
dnl
dnl Some simple checks.
dnl
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE([1.10 tar-pax -Werror -Wno-portability no-define subdir-objects foreign])
dnl 1.10 needed for .s file support of LIBTOOLFLAGS
dnl enable silent rules, if present
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
dnl define AS_VAR_APPEND, if not present (on older Autoconf versions)
m4_ifndef([AS_VAR_APPEND],[as_fn_append () { eval $[1]=\$$[1]\$[2]; }
AC_DEFUN([AS_VAR_APPEND],[as_fn_append $1 $2])])dnl
dnl
dnl reset default compiler flags
dnl
: ${CFLAGS=""}
: ${CXXFLAGS=""}
dnl check for C++ compiler
AC_PROG_CXX
dnl extract C++ compiler name (used for matching CC and aCC below)
CXX_COMP=`set $CXX; basename $1`
dnl check for clang++
AC_CACHE_CHECK([whether we are using a Clang/LLVM C++ compiler],
[sc_cv_clangxx],
[AC_LANG_PUSH([C++])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[[
#ifndef __clang__
not clang
#endif
]])],dnl
[sc_cv_clangxx=yes],[sc_cv_clangxx=no])
AC_LANG_POP([C++])])
dnl check for C compiler (default to C++ compiler)
: ${CC="${CXX}"}
AC_PROG_CC
dnl check for clang
AC_CACHE_CHECK([whether we are using a Clang/LLVM C compiler],
[sc_cv_clang],
[AC_LANG_PUSH([C])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[[
#ifndef __clang__
not clang
#endif
]])],dnl
[sc_cv_clang=yes],[sc_cv_clang=no])
AC_LANG_POP([C])])
dnl AM_PROG_AR available since Automake 1.11.2, generic check otherwise
m4_ifdef([AM_PROG_AR],[AM_PROG_AR],[AC_CHECK_TOOL([AR],[ar],[ar])])
dnl Update default archiver flags to avoid warnings on some platforms,
dnl see https://www.mail-archive.com/bug-automake@gnu.org/msg04226.html
: ${ARFLAGS=cr}
: ${AR_FLAGS=${ARFLAGS}}dnl used by many libtool versions
AM_PROG_AS
AC_PROG_INSTALL
AC_PROG_LN_S
dnl
dnl Set the compiler flags and target architecture.
dnl
EXTRA_CXXFLAGS="-Wall"
EXTRA_CFLAGS="-xc"
EXTRA_ASFLAGS=""
EXTRA_LDFLAGS=""
DEBUG_CXXFLAGS="-g"
OPT_CXXFLAGS="-O3"
EXPLICIT_LPTHREAD="-lpthread"
LDFLAG_RPATH="-Wl,-rpath="
dnl Run assembler with pre-processor on GCC-compatible compilers
AS_VAR_IF([GXX],[yes],[EXTRA_ASFLAGS="-xassembler-with-cpp"])
dnl
dnl Prepare architecture alias (to be refined later)
dnl
AS_CASE([$target],
[*-apple-*], [TARGET_ARCH=macos],
[*linux*], [TARGET_ARCH=linux],
[*bsd*|*dragonfly*],[TARGET_ARCH=bsd],
[*mingw*], [TARGET_ARCH=mingw],
[*cygwin*], [TARGET_ARCH=cygwin],
dnl default
[AC_MSG_ERROR("sorry...architecture not supported")])
dnl
dnl Refine architecture settings
dnl
AS_CASE([${TARGET_ARCH}],
[linux|bsd|mingw|cygwin],dnl
[# check CPU architecture
AS_CASE([${target_cpu}], dnl
[x86_64|amd64], dnl
[TARGET_ARCH="${TARGET_ARCH}64"
QT_ARCH="x86_64"
CPU_ARCH="-m64"],
[x*86|i*86], dnl
[QT_ARCH="iX86"
CPU_ARCH="-m32"],
[aarch64], dnl
[TARGET_ARCH="linuxaarch64"
QT_ARCH="aarch64"
CPU_ARCH=""],
[AC_MSG_ERROR("sorry...architecture not supported")])
# check compiler
AS_VAR_IF([GXX],[yes],dnl
[EXTRA_CXXFLAGS="${EXTRA_CXXFLAGS} ${CPU_ARCH}"
EXTRA_ASFLAGS="${EXTRA_ASFLAGS} ${CPU_ARCH}"],
[AC_MSG_ERROR("sorry...compiler not supported")])
# use WinFiber on MinGW platforms
AS_CASE([${TARGET_ARCH}],
[mingw*],[QT_ARCH="none"])
],
[macos],dnl
[LDFLAG_RPATH="-Wl,-rpath -Wl,"
# check CPU architecture
AS_CASE([${target_cpu}], dnl
[x86_64|amd64], dnl
[TARGET_ARCH="${TARGET_ARCH}x64"
CPU_ARCH="x86_64"
QT_ARCH="x86_64"],
[aarch64|arm64], dnl
[TARGET_ARCH="${TARGET_ARCH}arm64"
CPU_ARCH="arm64"
QT_ARCH="aarch64"],
[x*86|i*86], dnl
[CPU_ARCH="i386"
QT_ARCH="iX86"],
[AC_MSG_ERROR("sorry...architecture not supported")])
# check compiler
AS_VAR_IF([GXX],[yes],dnl
[EXTRA_CXXFLAGS="${EXTRA_CXXFLAGS} -arch ${CPU_ARCH}"
EXTRA_ASFLAGS="${EXTRA_ASFLAGS} -arch ${CPU_ARCH}"],
[AC_MSG_ERROR("sorry...compiler not supported")])
]
) dnl AS_CASE([$TARGET_ARCH])
dnl include EXTRA_CXXFLAGS in EXTRA_(C|AS)FLAGS by default
EXTRA_CFLAGS="${EXTRA_CXXFLAGS} ${EXTRA_CFLAGS}"
dnl suppress clang's warnings about unused command-line arguments
dnl (currently enforced for assembler and linker only)
AS_IF([test "$sc_cv_clangxx" = yes],dnl CXX is used for linking
[EXTRA_LDFLAGS="${EXTRA_LDFLAGS} -Wc,-Qunused-arguments"])
AS_IF([test "$sc_cv_clang" = yes -a "$CCAS" = "$CC"], dnl CC used as assembler
[EXTRA_ASFLAGS="${EXTRA_ASFLAGS} -Qunused-arguments"])
dnl
dnl check for pthreads compiler flags.
dnl
AX_PTHREAD
dnl
dnl Libtool setup
dnl
dnl - libtools should be put *after* all CC options have been set
dnl - explicitly use C++ for libtool initialization
AC_LANG([C++])
dnl - need to pass EXTRA_CXXFLAGS to Libtool via CXXFLAGS to correctly
dnl detect C++ library dependencies, esp. for cross-compilation
CXXFLAGS_USER="${CXXFLAGS}"
CXXFLAGS="${EXTRA_CXXFLAGS} ${CXXFLAGS}"
dnl
LT_INIT
dnl - restore user-given CXXFLAGS
CXXFLAGS="${CXXFLAGS_USER}"
dnl
dnl Setup installation directories
dnl
AC_MSG_CHECKING([for SystemC install layout])
AC_ARG_WITH([unix-layout],
[AS_HELP_STRING([--with-unix-layout],
[use Unix directory layout for installation
@<:@default=no@:>@])],
[AS_CASE(["x$withval"],
[xyes], [sysc_install_layout=Unix],
[xno|x],[sysc_install_layout=classic],
[AC_MSG_ERROR([Unknown install layout requested.])])],
[sysc_install_layout=classic]
) # AC_ARG_WITH gnu-layout
abs_srcdir=`cd "$srcdir" && pwd`
abs_builddir=`pwd`
if test "x$prefix" = "xNONE" ; then
dnl Set the default prefix and make sure the prefix is absolute.
prefix="$abs_srcdir"
dnl Ignore install layout, when installing to $srcdir
sysc_install_layout=ignored
fi
AC_MSG_RESULT($sysc_install_layout)
dnl
dnl Setup "classic" installation layout, if not overridden
dnl
rootdocdir='${docdir}'
if test $sysc_install_layout = Unix ; then
dnl Automake/GNU/Unix defaults are kept,
dnl but default library architecture suffix cleared
LIB_ARCH_SUFFIX=''
else dnl classic/ignored (if not explicitly given)
sysc_install_layout=classic
if test x$datarootdir = x'${prefix}/share' ; then
datarootdir='${prefix}'
fi
if test x$datadir = x'${datarootdir}' ; then
datadir='${prefix}'
fi
if test x$docdir = x'${datarootdir}/doc/${PACKAGE_TARNAME}' ; then
dnl main documentation
docdir='${prefix}/docs'
dnl "core" documentation (from root directory)
rootdocdir='${prefix}'
fi
dnl default library arch suffix is target arch
LIB_ARCH_SUFFIX='-${TARGET_ARCH}'
fi
AC_SUBST([rootdocdir])
AC_SUBST([examplesdir], ['${rootdocdir}/examples'] )
AC_SUBST([libarchdir], ['${libdir}${LIB_ARCH_SUFFIX}'] )
AM_CONDITIONAL([SEPARATE_INSTALL_TREE],dnl
[ test "x${prefix}" != "x${abs_srcdir}" ])
dnl Check for out-of-tree build
AM_CONDITIONAL([SEPARATE_BUILD_TREE],dnl
[ test "x${abs_srcdir}" != "x${abs_builddir}" ])
#AM_COND_IF([SEPARATE_BUILD_TREE],[
if test -z "${SEPARATE_BUILD_TREE_TRUE}" ; then
if test "x${prefix}" = "x${abs_builddir}" ; then
AC_MSG_ERROR([Installation to build directory not supported.])
fi
fi
#])
dnl
dnl handle library arch suffix
dnl
AC_MSG_CHECKING([for SystemC library arch suffix])
AC_ARG_WITH([arch-suffix],
[AS_HELP_STRING([--with-arch-suffix],
[add suffix to library installation directory
@<:@default=-<target-arch>@:>@])],
[AS_CASE(["x$withval"],dnl
[xyes],[with_arch_suffix=yes
LIB_ARCH_SUFFIX='-${TARGET_ARCH}'],
[xno|x],[with_arch_suffix=no
LIB_ARCH_SUFFIX=""],
[LIB_ARCH_SUFFIX="${withval}"])],
[with_arch_suffix=default]
) # AC_ARG_WITH arch-suffix
AC_MSG_RESULT($with_arch_suffix (TARGET_ARCH=${TARGET_ARCH}))
dnl
dnl add debugging symbols to library
dnl
AC_MSG_CHECKING([whether to add debug symbols to the SystemC library])
AC_ARG_ENABLE([debug],
AS_HELP_STRING([--enable-debug],[include debugging symbols]),
[AS_CASE(["${enableval}"],dnl
[yes|no],[],
[AC_MSG_ERROR([bad value ${enableval} for --enable-debug])])],
[enable_debug=no])
AM_CONDITIONAL([WANT_DEBUG], [test x$enable_debug = xyes])
AC_MSG_RESULT($enable_debug)
dnl
dnl switch off compiler optimization
dnl
AC_MSG_CHECKING([whether to enable compiler optimization])
AC_ARG_ENABLE([optimize],
AS_HELP_STRING([--disable-optimize],[disable compiler optimization]),
[AS_CASE(["${enableval}"],dnl
[yes|no],[],
[AC_MSG_ERROR([bad value ${enableval} for --enable-optimize])])],
[enable_optimize=yes])
AM_CONDITIONAL([WANT_OPTIMIZE], [test x$enable_optimize = xyes])
AC_MSG_RESULT($enable_optimize)
dnl
dnl use std::thread for SystemC processes
dnl
AC_MSG_CHECKING([whether to use C++ std::thread for SystemC processes])
AC_ARG_ENABLE([std-threads],
AS_HELP_STRING([--enable-std-threads],
[use C++ std::thread for SystemC processes]),
[AS_CASE(["${enableval}"],dnl
[yes],[enable_pthreads=no],dnl
[no],[],dnl
[AC_MSG_ERROR([bad value ${enableval} for --enable-pthreads])])],
[enable_std_threads=no])
dnl
dnl use pthreads for SystemC processes
dnl
AC_MSG_CHECKING([whether to use POSIX threads for SystemC processes])
AC_ARG_ENABLE([pthreads],
AS_HELP_STRING([--enable-pthreads],
[use POSIX threads for SystemC processes]),
[AS_CASE(["${enableval}"],dnl
[yes],dnl
[AS_IF([test x"$ax_pthread_ok" = xyes],[QT_ARCH=pthreads],
[enable_pthreads=no
AC_MSG_WARN([no pthread support found, ignore --enable-pthreads])],
[enable_std_threads=no]
)],
[no],[],
[AC_MSG_ERROR([bad value ${enableval} for --enable-pthreads])])],
[enable_pthreads=no])
AS_IF([test x"$enable_pthreads" = xyes],[dnl
AS_CASE(["${TARGET_ARCH}"],dnl
dnl pthread not supported in win32/win64
[mingw*|msvc*],dnl
[AC_MSG_ERROR([pthread processes not supported on target architecture ${target}])dnl
])dnl
])
AS_IF([test x"$QT_ARCH" = xpthreads -a x"$enable_pthreads" = xno],[dnl
AS_IF([test x"$ax_pthread_ok" = xyes],dnl
[enable_pthreads=yes],
[AC_MSG_ERROR([pthread processes required on target architecture ${target}])])dnl
])
AM_CONDITIONAL([WANT_STD_THREADS_THREADS],dnl
[test x"$enable_std_threads" = xyes])
AM_CONDITIONAL([WANT_PTHREADS_THREADS],dnl
[test x"$enable_pthreads" = xyes])
AM_CONDITIONAL([WANT_QT_THREADS],dnl
[test x"$enable_std_threads" = xno -a x"$enable_pthreads" = xno -a x"$QT_ARCH" != xnone ])
AM_CONDITIONAL([USES_PTHREADS_LIB],dnl
[test x"$enable_pthreads" = xyes])
AC_MSG_RESULT($enable_pthreads)
dnl
dnl enable VCD scopes
dnl
AC_MSG_CHECKING([whether to enable VCD scopes by default])
AC_ARG_ENABLE([vcd-scopes],
[AS_HELP_STRING([--enable-vcd-scopes],
[enable vcd scopes
@<:@yes(=default)|no@:>@])],
[AS_CASE(["${enableval}"],dnl
[yes|default], [enable_vcd_scopes=yes],
[no],[enable_vcd_scopes=no],
[AC_MSG_ERROR([bad value ${enableval} for --enable-vcd-scopes])])],
[enable_vcd_scopes=yes])
AM_CONDITIONAL([DISABLE_VCD_SCOPES],dnl
[test x"$enable_vcd_scopes" = xno])
AC_MSG_RESULT($enable_vcd_scopes)
dnl
dnl Set conditionals for various quick thread architectures:
dnl
AM_CONDITIONAL([QT_ARCH_X86], [ test "${QT_ARCH}" = "iX86" ])
AM_CONDITIONAL([QT_ARCH_AARCH64], [ test "${QT_ARCH}" = "aarch64" ])
AM_CONDITIONAL([QT_ARCH_X86_64], [ test "${QT_ARCH}" = "x86_64" ])
dnl
dnl pkg-config setup
dnl
PKGCONFIG_DEFINES=
PKGCONFIG_CFLAGS=
PKGCONFIG_LDPRIV=
dnl add pthread (private) dependency
#AM_COND_IF([USES_PTHREADS_LIB],[
if test -z "${USES_PTHREADS_LIB_TRUE}" ; then
PKGCONFIG_CFLAGS="${PTHREAD_CFLAGS}"
PKGCONFIG_LDPRIV="${PTHREAD_LIBS} ${EXPLICIT_LPTHREAD}"
fi
#])
dnl
dnl check for additional (header+lib) compiler flags
dnl
# AC_CHECK_DEFINE([DEBUG_SYSTEMC],
# [PKGCONFIG_DEFINES="${PKGCONFIG_DEFINES} -DDEBUG_SYSTEMC"])
dnl
dnl Substitution variables.
dnl
AC_SUBST(PKGCONFIG_DEFINES)
AC_SUBST(PKGCONFIG_CFLAGS)
AC_SUBST(PKGCONFIG_LDPRIV)
AC_SUBST(EXTRA_CXXFLAGS)
AC_SUBST(EXTRA_CFLAGS)
AC_SUBST(EXTRA_ASFLAGS)
AC_SUBST(EXTRA_LDFLAGS)
AC_SUBST(EXPLICIT_LPTHREAD)
AC_SUBST(LDFLAG_RPATH)
AC_SUBST(DEBUG_CXXFLAGS)
AC_SUBST(OPT_CXXFLAGS)
AC_SUBST(TARGET_ARCH)
AC_SUBST(LIB_ARCH_SUFFIX)
AC_SUBST(QT_ARCH)
dnl
dnl Create the Makefiles.
dnl
AC_CONFIG_FILES([
Makefile
src/Makefile
src/systemc.pc
src/tlm.pc
src/sysc/Makefile
src/sysc/packages/qt/Makefile
src/tlm_core/Makefile
src/tlm_utils/Makefile
examples/Makefile
examples/sysc/Makefile
examples/tlm/Makefile
examples/tlm/common/Makefile
docs/Makefile
docs/sysc/doxygen/Doxyfile
docs/tlm/doxygen/Doxyfile
])
AC_OUTPUT
dnl
dnl print configuration summary
dnl
AS_IF([test -z "${WANT_QT_THREADS_TRUE}"],[sysc_coroutine="QuickThreads"],
[test -z "${WANT_PTHREADS_THREADS_TRUE}"],[sysc_coroutine="Pthreads"],
[sysc_coroutine="WinFiber"])
sysc_compiler="${CXX}"
AS_VAR_IF([CC],["${CXX}"],dnl
[AS_VAR_APPEND([sysc_compiler],[" (C/C++)"])],dnl
[AS_VAR_APPEND([sysc_compiler],[" (C++) / ${CC} (C)"])])
AS_VAR_IF([CCAS],["${CC}"],[],dnl
[AS_VAR_APPEND([sysc_compiler],[" / ${CCAS} (Assembler)"])])
dnl prepare printing of command-line flags
sysc_flags=""
AS_IF([test -n "${CFLAGS}"],dnl
[AS_VAR_APPEND([sysc_flags],dnl
[" C compiler flags (CFLAGS) : ${CFLAGS}${as_nl}"])])
AS_IF([test -n "${CXXFLAGS}"],dnl
[AS_VAR_APPEND([sysc_flags],dnl
[" C++ compiler flags (CXXFLAGS) : ${CXXFLAGS}${as_nl}"])])
AS_IF([test -n "${CCASFLAGS}"],dnl
[AS_VAR_APPEND([sysc_flags],dnl
[" Assembler flags (CCASFLAGS) : ${CCASFLAGS}${as_nl}"])])
AS_IF([test -n "${LDFLAGS}"],dnl
[AS_VAR_APPEND([sysc_flags],dnl
[" Linker flags (LDFLAGS) : ${LDFLAGS}${as_nl}"])])
AS_IF([test -n "${sysc_flags}"],dnl
[sysc_flags="${as_nl} User-provided command-line flags :${as_nl}${sysc_flags}"])
dnl prepare printing of additional settings
AS_IF([test -n "${PKGCONFIG_DEFINES}"],[dnl
sysc_additional="${as_nl} Detected additional settings:"
AS_IF([test -n "${PKGCONFIG_DEFINES}"],dnl
[AS_VAR_APPEND([sysc_additional],dnl
["${as_nl} ${PKGCONFIG_DEFINES}"])])
AS_VAR_APPEND([sysc_additional],["${as_nl}"])dnl
]) dnl additional settings
SYSTEMC_HOME=$prefix
prefix='<SYSTEMC_HOME>' dnl replace for printing
dnl ... resolve aliases
eval "sysc_includedir=\"${includedir}\""
eval "sysc_includedir=\"${sysc_includedir}\""
eval "sysc_libdir=\"${libdir}${LIB_ARCH_SUFFIX}\""
eval "sysc_libdir=\"${sysc_libdir}\""
eval "sysc_docdir=\"${docdir}\""
eval "sysc_docdir=\"${sysc_docdir}\""
eval "sysc_examplesdir=\"${examplesdir}\""
eval "sysc_examplesdir=\"${sysc_examplesdir}\""
eval "sysc_examplesdir=\"${sysc_examplesdir}\""
eval "sysc_examplesdir=\"${sysc_examplesdir}\""
eval "sysc_prefix=\"${SYSTEMC_HOME}\""
dnl ... restore prefix
prefix=$SYSTEMC_HOME
cat <<EOF | tee -a config.log
---------------------------------------------------------------------
Configuration summary of $PACKAGE_STRING for $target
---------------------------------------------------------------------
Directory setup (based on $sysc_install_layout layout):
Installation prefix (aka SYSTEMC_HOME):
${sysc_prefix}
Header files : ${sysc_includedir}
Libraries : ${sysc_libdir}
Documentation : ${sysc_docdir}
Examples : ${sysc_examplesdir}
Architecture : ${TARGET_ARCH}
Compiler : ${sysc_compiler}
${sysc_flags}
Build settings:
Enable compiler optimizations : $enable_optimize
Include debugging symbols : $enable_debug
Coroutine package for processes: $sysc_coroutine
Enable VCD scopes by default : $enable_vcd_scopes
${sysc_additional}
---------------------------------------------------------------------
EOF
AS_IF([${sysc_non_1666+:} false],[dnl
cat <<EOF | tee -a config.log
WARNING: The selected SystemC library configuration is non-conforming
to IEEE Std. 1666-2022. See INSTALL.
---------------------------------------------------------------------
EOF])
dnl Taf!
|