From cc8f1d2ffd4ec5c286b9901c836631a6c64114a7 Mon Sep 17 00:00:00 2001 From: Alexander von Gluck IV Date: Wed, 24 Jun 2015 23:05:55 -0500 Subject: [PATCH] headers/os: Add gcc 5 to BeBuild.h * While we still use gcc 4, the host tools won't build on gcc 5 systems without this. * x86_64 compiles under gcc 5.10 successfully --- headers/build/os/BeBuild.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/build/os/BeBuild.h b/headers/build/os/BeBuild.h index 3130e032de..62a716598b 100644 --- a/headers/build/os/BeBuild.h +++ b/headers/build/os/BeBuild.h @@ -37,7 +37,7 @@ #if __GNUC__ == 2 # define B_HAIKU_ABI B_HAIKU_ABI_GCC_2_HAIKU -#elif __GNUC__ == 3 || __GNUC__ == 4 +#elif __GNUC__ == 3 || __GNUC__ == 4 || __GNUC__ == 5 # define B_HAIKU_ABI B_HAIKU_ABI_GCC_4 #else # error Unsupported gcc version!