diff options
author | miwi <miwi@FreeBSD.org> | 2008-01-11 08:58:16 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-01-11 08:58:16 +0800 |
commit | 95f212386461f5a7da5687fc64f96bd3058e3abd (patch) | |
tree | 6a6b95c9512d26b9482f3d8d3ac082dbb0f192aa /sysutils | |
parent | 8ab3adcb0c056ab6c0f8a6d69958a35a34d61aa8 (diff) | |
download | freebsd-ports-gnome-95f212386461f5a7da5687fc64f96bd3058e3abd.tar.gz freebsd-ports-gnome-95f212386461f5a7da5687fc64f96bd3058e3abd.tar.zst freebsd-ports-gnome-95f212386461f5a7da5687fc64f96bd3058e3abd.zip |
- Fix build with AMD64
PR: 119348
Submitted by: Geoffrey Giesemann <geoffwa@idkfa.ath.cx>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/cpuburn/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/cpuburn/Makefile b/sysutils/cpuburn/Makefile index 97772dee8c02..e87ad6436a29 100644 --- a/sysutils/cpuburn/Makefile +++ b/sysutils/cpuburn/Makefile @@ -16,7 +16,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= CPU/memory stress testing utilities WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -ONLY_FOR_ARCHS= i386 +ONLY_FOR_ARCHS= i386 amd64 PORTDOCS= README Design CPUS= BX K6 K7 MMX P5 P6 @@ -24,7 +24,7 @@ PLIST_FILES= ${CPUS:C+^+bin/burn+g} do-build: .for CPU in ${CPUS} - ${CC} -s -nostdlib -o ${WRKSRC}/burn${CPU} ${WRKSRC}/burn${CPU}.S + ${CC} -m32 -s -nostdlib -o ${WRKSRC}/burn${CPU} ${WRKSRC}/burn${CPU}.S .endfor do-install: |