diff --git a/toku_include/Makefile.include b/toku_include/Makefile.include index 26eaafced1797a00f501c8ac3e7801f2fa914c7d..61454f9ecf69016e5e23b5f1ff0e1da98f2fc6e8 100644 --- a/toku_include/Makefile.include +++ b/toku_include/Makefile.include @@ -100,6 +100,10 @@ else WERROR = -Werror endif +ifeq ($(GCCVERSION),) +GCCVERSION = $(shell $(CC) --version | head -1 | cut -f3 -d " ") +endif + # -Wno-deprecated is needed on gcc 4.4.{0,1,2,4} to make the #ident complaints go away. # -Wno-strict-aliasing is needed on gcc 4.4.{1,2,4} to make certain gratuitous warnings go away. # -Wno-unused-result is needed on gcc 4.4.1 to make warnings about ignoring the results of certain system calls go away.