diff options
| author | Tor Aamodt <[email protected]> | 2010-07-18 12:23:55 -0800 |
|---|---|---|
| committer | Tor Aamodt <[email protected]> | 2010-07-18 12:23:55 -0800 |
| commit | 00425f48461fa05aa17aef3e6e3a68ccae48a5e2 (patch) | |
| tree | b7f275f592179f388c358d39232c0a09874e4228 /src/cuda-sim/Makefile | |
| parent | e8d009c324a6ed40f2c894dbac43ab9e7ee58b33 (diff) | |
finished moving cuda printf stuff to seperate file (step 2)
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 6882]
Diffstat (limited to 'src/cuda-sim/Makefile')
| -rw-r--r-- | src/cuda-sim/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cuda-sim/Makefile b/src/cuda-sim/Makefile index c03cb0e..9d43f58 100644 --- a/src/cuda-sim/Makefile +++ b/src/cuda-sim/Makefile @@ -91,7 +91,7 @@ ifeq ($(GNUC_CPP0X),1) endif endif -OBJS := instructions.o cuda-sim.o ptx_ir.o ptx_sim.o memory.o ptx-stats.o ptx.tab.o lex.ptx_.o ptxinfo.tab.o lex.ptxinfo_.o +OBJS := cuda_device_printf.o instructions.o cuda-sim.o ptx_ir.o ptx_sim.o memory.o ptx-stats.o ptx.tab.o lex.ptx_.o ptxinfo.tab.o lex.ptxinfo_.o CUDART_VERSION:=$(shell nvcc --version | awk '/release/ {print $$5;}' | sed 's/,//' | sed 's/\./ /' | awk '{printf("%02u%02u", 10*int($$1), 10*$$2);}') @@ -164,6 +164,7 @@ depend: makedepend *.cc *.c 2> /dev/null instructions.o: instructions.h ptx.tab.c +cuda_device_printf.o: ptx.tab.c ptx_ir.o: ptx.tab.c ptx_parser_decode.def # DO NOT DELETE |
