diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-01-05 01:22:56 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-01-05 01:22:56 +0000 |
commit | 486305ac81d3cd1f5df27b198be097ee2d2e92a7 (patch) | |
tree | 79a8298a48bd0a062447a1019e59c7a364e691ab /benchmarks | |
parent | e575db708bb243e25c96f52f49b8c82b39d69535 (diff) |
Notes
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/nqueens/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/benchmarks/nqueens/Makefile b/benchmarks/nqueens/Makefile index 490d0be55bc3..290297e0429a 100644 --- a/benchmarks/nqueens/Makefile +++ b/benchmarks/nqueens/Makefile @@ -17,11 +17,10 @@ OPTIONS_DEFINE= MPI STATIC OPTIMIZED_CFLAGS MPI_DESC= Build distributed MPI version STATIC_DESC= Link resulting binaries statically -NO_STAGE= yes .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS} -CFLAGS+= -O9 -pipe -s -ffast-math -funroll-loops -fomit-frame-pointer -fexpensive-optimizations +CFLAGS+= -O3 -pipe -s -ffast-math -funroll-loops -fomit-frame-pointer -fexpensive-optimizations .endif .if ${PORT_OPTIONS:MSTATIC} CFLAGS+= -static @@ -50,7 +49,7 @@ PLIST_FILES= ${PROGS:S/^/bin\//} do-install: .for p in ${PROGS} - ${INSTALL_PROGRAM} ${WRKSRC}/${p} ${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${WRKSRC}/${p} ${STAGEDIR}${PREFIX}/bin/ .endfor .include <bsd.port.mk> |