mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-07 17:46:58 +08:00
10 lines
514 B
Plaintext
10 lines
514 B
Plaintext
dnl --------------------------------------------------------------------------
|
|
dnl PA_ADD_LDFLAGS(variable, flag [,actual_flag])
|
|
dnl
|
|
dnl Attempt to add the given option to xFLAGS, if it doesn't break
|
|
dnl compilation. If the option to be tested is different than the
|
|
dnl option that should actually be added, add the option to be
|
|
dnl actually added as a second argument.
|
|
dnl --------------------------------------------------------------------------
|
|
AC_DEFUN([PA_ADD_LDFLAGS], [PA_ADD_FLAGS(LDFLAGS, [$1], [$2])])
|