diff options
author | Dave Barach <dave@barachs.net> | 2016-08-03 14:34:38 -0400 |
---|---|---|
committer | Keith Burns <alagalah@gmail.com> | 2016-08-15 13:57:25 +0000 |
commit | b3d93dacfde8ab21bbce171fff2971b2ed7bce6a (patch) | |
tree | 8d3b44e8a8fcbf155979114a929590fc9473b914 /vppinfra/Makefile.am | |
parent | c53191deb39231cf8408cf9eb0adf5c878ddda68 (diff) |
VPP-236 Support 64-bit vector lengths, shared memory segments >4 GB
Change-Id: I02aee33e96e7ae32094b9f82f6a667d30bb52f59
Signed-off-by: Dave Barach <dave@barachs.net>
Diffstat (limited to 'vppinfra/Makefile.am')
-rw-r--r-- | vppinfra/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vppinfra/Makefile.am b/vppinfra/Makefile.am index f9855e34f79..48a347e009f 100644 --- a/vppinfra/Makefile.am +++ b/vppinfra/Makefile.am @@ -12,7 +12,7 @@ # limitations under the License. AUTOMAKE_OPTIONS = foreign subdir-objects -AM_CPPFLAGS = -Wall @VEC64@ # -Werror +AM_CPPFLAGS = -Wall -Werror if WITH_UNIX lib_LTLIBRARIES = libvppinfra.la @@ -20,7 +20,7 @@ endif lib_LIBRARIES = -TESTS = +TESTS = if ENABLE_TESTS TESTS += test_bihash_template \ @@ -267,5 +267,5 @@ libvppinfra_la_SOURCES = \ bin_PROGRAMS = elftool elftool_SOURCES = tools/elftool.c -elftool_CPPFLAGS = -Wall +elftool_CPPFLAGS = $(AM_CPPFLAGS) elftool_LDADD = libvppinfra.la -lpthread -lrt -lm |