Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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 <hpa@zytor.com>
  • Loading branch information
H. Peter Anvin committed Mar 8, 2016
1 parent 138e850 commit 1ac927d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/head.inc
Expand Up @@ -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"
Expand Down

0 comments on commit 1ac927d

Please sign in to comment.