From 1ac927d131d088e07320942d29f65208c34f08c8 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Tue, 8 Mar 2016 00:20:08 -0800 Subject: head.inc: error out on NASM 2.11.06 NASM 2.11.06 is known to miscompile Syslinux, so error out on that NASM version. Kind of embarrassing for me... Signed-off-by: H. Peter Anvin --- core/head.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/head.inc b/core/head.inc index 71eb5744..b97db352 100644 --- a/core/head.inc +++ b/core/head.inc @@ -22,6 +22,8 @@ %if __NASM_MAJOR__ < 2 || (__NASM_MAJOR__ == 2 && __NASM_MINOR__ < 3) %error "NASM 2.03 or later required to compile correctly" +%elif __NASM_VERSION_ID__ == 0x020b0600 + %fatal "NASM 2.11.06 is known to miscompile Syslinux" %endif %include "macros.inc" -- cgit v1.2.1