diff options
author | Marcel Köppen <marcel.koeppen@uos.de> | 2024-05-13 13:27:21 +0200 |
---|---|---|
committer | Marcel Köppen <marcel.koeppen@uos.de> | 2024-05-13 13:27:21 +0200 |
commit | 40184d163659790d25f3e4be93df8fdbc834c68c (patch) | |
tree | ff1408b26828b6ccfceb0086a55ba39a606f3812 /Microbenchmarks | |
parent | 0dde00801056d7959cfa2d1d1292770183dfe524 (diff) |
Make the linker happy by switching HOST_SOURCES and HOST_FLAGS
Diffstat (limited to 'Microbenchmarks')
-rw-r--r-- | Microbenchmarks/STREAM/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Microbenchmarks/STREAM/Makefile b/Microbenchmarks/STREAM/Makefile index f5237bb..6e18756 100644 --- a/Microbenchmarks/STREAM/Makefile +++ b/Microbenchmarks/STREAM/Makefile @@ -34,8 +34,8 @@ bin: bin/dpu_code: ${DPU_SOURCES} bin ${QUIET}dpu-upmem-dpurte-clang ${DPU_FLAGS} ${DPU_SOURCES} -o $@ - ${QUIET}${CC} ${HOST_FLAGS} ${HOST_SOURCES} -o $@ bin/host_code: ${HOST_SOURCES} bin + ${QUIET}${CC} ${HOST_SOURCES} ${HOST_FLAGS} -o $@ clean: ${QUIET}${RM} -f bin/dpu_code bin/host_code |