blob: 38f0ba2711b4947218f917b7de3371a5059426f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# (c) 2007 The Board of Trustees of the University of Illinois.
# Cuda-related definitions common to all benchmarks
########################################
# Variables
########################################
# Programs
CUDACC=nvcc
# Paths
# Flags
CUDACFLAGS=$(INCLUDEFLAGS) -g -Xcompiler "-m32" $(EXTRA_CUDACFLAGS)
CUDALDFLAGS=$(LDFLAGS) -Xcompiler "-m32" \
-L$(GPGPUSIM_ROOT)/lib/ \
-L$(PARBOIL_ROOT)/common/src $(EXTRA_CUDALDFLAGS)
CUDALIBS=-lcudart $(LIBS) -lm -lz -lGL
|