Commit e7afa099 authored by Georg Koppen's avatar Georg Koppen
Browse files

Bug 16351: Upgrade our toolchain (Binutils/GCC)

Upgrading to GCC 5.1.0 is hitting an NSS version detection bug (see:
https://bugzilla.mozilla.org/show_bug.cgi?id=1167200. This patch is the
backport of Jacek's not yet landed one.
parent 5bf9427c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -109,7 +109,7 @@
 * these work for GNU C++ (modulo a slight glitch in the C++ grammar
 * in the distribution version of 2.5.5).
 */
#if !defined(__GNUC__) || __GNUC__ < 2 || __GNUC_MINOR__ < 5
#if !defined(__GNUC__) || __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
#define	__attribute__(x)	/* delete __attribute__ if non-gcc or gcc1 */
#if defined(__GNUC__) && !defined(__STRICT_ANSI__)
#define	__dead		__volatile