Skip to content

Commit

Permalink
fix Makefile.am
Browse files Browse the repository at this point in the history
  • Loading branch information
KlausT committed Aug 26, 2017
1 parent f8d45c9 commit a336962
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ ccminer_SOURCES = elist.h miner.h compat.h \
x11/s3.cu x11/c11.cu \
bitcoin.cu cuda_bitcoin.cu \
x15/cuda_whirlpoolx.cu x15/whirlpoolx.cu \
neoscrypt/neoscrypt.cu neoscrypt/cuda_neoscrypt.cu
neoscrypt/cuda_neoscrypt_tpruvot.cu
neoscrypt/neoscrypt.cu neoscrypt/cuda_neoscrypt.cu \
neoscrypt/cuda_neoscrypt_tpruvot.cu \
neoscrypt/cuda_vector_tpruvot.cuh neoscrypt/cuda_vector_uint2x4.cuh

# scrypt
Expand Down Expand Up @@ -128,4 +128,7 @@ skein.o: skein.cu
$(NVCC) $(nvcc_FLAGS) --maxrregcount=64 -o $@ -c $<

neoscrypt/cuda_neoscrypt.o: neoscrypt/cuda_neoscrypt.cu
$(NVCC) -gencode=arch=compute_52,code=sm_52 -gencode=arch=compute_50,code=sm_50 -gencode=arch=compute_35,code=sm_35 -gencode=arch=compute_37,code=sm_37 @CUDA_INCLUDES@ -I. @CUDA_CFLAGS@ $(JANSSON_INCLUDES) --ptxas-options="-v" -o $@ -c $<

neoscrypt/cuda_neoscrypt.o: neoscrypt/cuda_neoscrypt_tpruvot.cu
$(NVCC) -gencode=arch=compute_52,code=sm_52 -gencode=arch=compute_50,code=sm_50 -gencode=arch=compute_35,code=sm_35 -gencode=arch=compute_37,code=sm_37 -gencode=arch=compute_30,code=sm_30 @CUDA_INCLUDES@ -I. @CUDA_CFLAGS@ $(JANSSON_INCLUDES) --ptxas-options="-v" -o $@ -c $<

0 comments on commit a336962

Please sign in to comment.