mirror of
https://github.com/FRRouting/frr.git
synced 2025-04-30 13:37:17 +02:00
configure: Add -funwind-tables
Certain platforms( ARM comes to mind ) in order to get a proper stack trace on crash you need to compile with this value. Since it only slightly increases the size of the binary for other platforms, I would consider it worthwhile to include this directive. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
parent
2de0ee8316
commit
c594d99ffb
|
@ -195,6 +195,7 @@ fi
|
|||
|
||||
dnl always want these CFLAGS
|
||||
AC_C_FLAG([-fno-omit-frame-pointer])
|
||||
AC_C_FLAG([-funwind-tables])
|
||||
AC_C_FLAG([-Wall])
|
||||
AC_C_FLAG([-Wextra])
|
||||
AC_C_FLAG([-Wmissing-prototypes])
|
||||
|
|
Loading…
Reference in a new issue