2010-01-18 Robert Millan <rmh.grub@aybabtu.com>

* acinclude.m4: Remove `nop' assembly instruction; it's not
	implemented by all architectures.
This commit is contained in:
Robert Millan 2010-01-18 16:22:03 +00:00
parent 2cb6be4bc2
commit b2cab84877
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-01-18 Robert Millan <rmh.grub@aybabtu.com>
* acinclude.m4: Remove `nop' assembly instruction; it's not
implemented by all architectures.
2010-01-18 Robert Millan <rmh.grub@aybabtu.com>
* loader/i386/efi/linux.c (grub_cmd_linux): Stop pretending we're

View File

@ -18,7 +18,7 @@ AC_DEFUN(grub_PROG_TARGET_CC,
[AC_MSG_CHECKING([whether target compiler is working])
AC_CACHE_VAL(grub_cv_prog_target_cc,
[AC_LINK_IFELSE([AC_LANG_PROGRAM([[
asm (".globl start; start: nop");
asm (".globl start; start:");
int main (void);
]], [[]])],
[grub_cv_prog_target_cc=yes],