mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-08-29 01:03:29 +02:00
Future updates are handled via aclocal --install or autoreconf, no manual edits to aclocal.m4 required.
14 lines
285 B
Plaintext
14 lines
285 B
Plaintext
AC_DEFUN([AX_LD_EXTRALIBS],
|
|
[AC_MSG_CHECKING([for extra libs needed])
|
|
EXTRALIBS=
|
|
case "${host}" in
|
|
*-*-cygwin* )
|
|
if test "$MINGW32" = "yes"; then
|
|
EXTRALIBS="-liberty"
|
|
fi
|
|
;;
|
|
esac
|
|
AC_SUBST(EXTRALIBS)
|
|
AC_MSG_RESULT($EXTRALIBS)
|
|
])# AX_LD_EXTRALIBS
|