Skip to content
Snippets Groups Projects
Commit b3346ecb authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Use the same invocation of nasm as the Makefile uses.

Rev: src/modules/Image/configure.in:1.30
parent ed1f3ff2
No related branches found
No related tags found
No related merge requests found
# $Id: configure.in,v 1.29 2004/10/21 15:55:22 grubba Exp $ # $Id: configure.in,v 1.30 2004/10/21 15:57:09 grubba Exp $
AC_INIT(image.c) AC_INIT(image.c)
AC_CONFIG_HEADER(image_machine.h) AC_CONFIG_HEADER(image_machine.h)
...@@ -22,7 +22,7 @@ AC_MSG_CHECKING( [if nasm can be used] ) ...@@ -22,7 +22,7 @@ AC_MSG_CHECKING( [if nasm can be used] )
if test "x$with_machine_code" = "xno" ; then if test "x$with_machine_code" = "xno" ; then
AC_MSG_RESULT(no) AC_MSG_RESULT(no)
else else
if nasm -f elf -o assembly.o $srcdir/assembly.s ; then if nasm -f elf -g -o assembly.o $srcdir/assembly.s ; then
if test "`uname -m`" = "ia64"; then if test "`uname -m`" = "ia64"; then
# nasm/ia64 can compile ia32 code... # nasm/ia64 can compile ia32 code...
AC_MSG_RESULT([yes, but we are on an IA64 machine]) AC_MSG_RESULT([yes, but we are on an IA64 machine])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment