diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2003-04-14 01:52:50 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2003-04-14 01:52:50 +0000 |
commit | b86fda0dd0e122dabecf4ee9f0b6b841af60e1a8 (patch) | |
tree | 871e47736edaea1b9221059aad2537634e1d7978 /emulators/bochs | |
parent | Remove invalid keyword line, and Bump PORTREVISION accordingly. (diff) |
Add support for configuring for a AMD64.
Notes
Notes:
svn path=/head/; revision=78925
Diffstat (limited to 'emulators/bochs')
-rw-r--r-- | emulators/bochs/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/emulators/bochs/Makefile b/emulators/bochs/Makefile index adfc8fc21043..6ccc715f37cd 100644 --- a/emulators/bochs/Makefile +++ b/emulators/bochs/Makefile @@ -56,6 +56,10 @@ WITH_BOCHS_CPU_LEVEL= 6 CONFIGURE_ARGS+= --enable-cpu-level=${WITH_BOCHS_CPU_LEVEL} .endif +.if defined(WITH_BOCHS_AMD64) +CONFIGURE_ARGS+= --enable-x86-64 +.endif + .if defined(WITH_BOCHS_DEBUGGER) CONFIGURE_ARGS+= --enable-debugger --enable-disasm .endif @@ -112,6 +116,11 @@ pre-everything:: @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_X86_DEBUGGER=yes\"" @${ECHO_MSG} .endif +.if !defined(WITH_BOCHS_AMD64) + @${ECHO_MSG} "If you want to compile with AMD x86-64 support." + @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_AMD64=yes\"" + @${ECHO_MSG} +.endif .if !defined(WITH_NE2000) @${ECHO_MSG} "If you want to compile with networking (ne2000) support." @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_NE2000=yes\"" |