diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-05-01 19:42:29 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-05-01 19:42:29 +0200 |
commit | 7e0774107ef80938fdc9ab6e5d4808bcfdaf8ce9 (patch) | |
tree | 8c6a4fa7e60e853bc76f25d3960ad9bdb7089d8d | |
parent | 75a78c0eb4ed2d4bb9b461c4dae8aa71804b238b (diff) |
Use gnu89 inline style
* Makefile.am (AM_CFLAGS): Add -fgnu89-inline option.
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 2c39451..37dee76 100644 --- a/Makefile.am +++ b/Makefile.am @@ -63,6 +63,10 @@ AM_CFLAGS += \ AM_CFLAGS += \ -fno-strict-aliasing +# We need the GNU-style inline +AM_CFLAGS += \ + -fgnu89-inline + # The smashing stack protector might be enabled by default, but might emit # unsuitable code. if disable_smashing_stack_protector |