--- old/hotspot/src/share/vm/memory/allocation.hpp 2015-12-16 14:33:39.633355952 +0100 +++ new/hotspot/src/share/vm/memory/allocation.hpp 2015-12-16 14:33:39.513355950 +0100 @@ -35,6 +35,11 @@ #include "opto/c2_globals.hpp" #endif +#if defined _WINDOWS && _MSC_VER >= 1900 + // 'noexcept' used with no exception handling mode specified; termination on exception is not guaranteed. Specify /EHsc +#pragma warning( disable : 4577 ) +#endif + #include #define ARENA_ALIGN_M1 (((size_t)(ARENA_AMALLOC_ALIGNMENT)) - 1)