From 7d51b32062d91ccf46434568a75c5e91805c4750 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Wed, 7 May 2014 21:17:50 -0700 Subject: [PATCH 1/1] Do not export inlines from the shared library by default. Reduces the number of exports somewhat, and helps code generation a tiny bit. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index da11477..bf9a316 100644 --- a/Makefile.in +++ b/Makefile.in @@ -22,7 +22,7 @@ with_coverage = @with_coverage@ CC=@CC@ CXX=@CXX@ -CXXFLAGS=-Wall @CXXFLAGS@ -I$(GTEST_DIR)/include @SDL2_CFLAGS@ @SDL_CFLAGS@ @Eigen3_CFLAGS@ @epoxy_CFLAGS@ @FFTW3_CFLAGS@ +CXXFLAGS=-Wall @CXXFLAGS@ -fvisibility-inlines-hidden -I$(GTEST_DIR)/include @SDL2_CFLAGS@ @SDL_CFLAGS@ @Eigen3_CFLAGS@ @epoxy_CFLAGS@ @FFTW3_CFLAGS@ ifeq ($(with_SDL2),yes) CXXFLAGS += -DHAVE_SDL2 endif -- 2.39.2