Don't add default autoconf flags to build

By default, it adds something like `-O2 -g` to the cflags. That
conflicts with the flags in Makefile.am, which specifies -O3. This
commit removes the default flags so we only get what we actually
specify.
This commit is contained in:
Carsten Hartenfels
2019-11-23 18:03:34 -05:00
parent f0ffef7820
commit f9abf2a7df

View File

@@ -10,6 +10,9 @@ AC_PREREQ([2.69])
AC_INIT([cglm], [0.6.1], [info@recp.me])
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects serial-tests])
# Don't use the default cflags (-O2 -g), we set ours manually in Makefile.am.
: ${CFLAGS=""}
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR([src/])
AC_CONFIG_HEADERS([config.h])