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
This commit is contained in:
Alexander von Gluck IV 2015-06-24 23:05:55 -05:00
parent dc1113e067
commit cc8f1d2ffd

View File

@ -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!