You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
2.0 KiB
58 lines
2.0 KiB
# allow to use Host cuda functions in C/C++ |
|
DEF_INCLUDES = @CUDA_INCLUDES@ |
|
|
|
if WANT_JANSSON |
|
JANSSON_INCLUDES= -I$(top_srcdir)/compat/jansson |
|
else |
|
JANSSON_INCLUDES= |
|
endif |
|
|
|
EXTRA_DIST = autogen.sh README.md README.txt LICENSE.txt \ |
|
ccminer.sln ccminer.vcxproj ccminer.vcxproj.filters \ |
|
compat/gettimeofday.c compat/getopt/getopt_long.c |
|
|
|
SUBDIRS = compat |
|
|
|
bin_PROGRAMS = ccminer |
|
|
|
ccminer_SOURCES = elist.h miner.h compat.h \ |
|
compat/inttypes.h compat/stdbool.h compat/unistd.h \ |
|
compat/sys/time.h compat/getopt/getopt.h \ |
|
crc32.c cuda_checkhash.cu \ |
|
ccminer.cpp pools.cpp util.cpp bench.cpp bignum.cpp \ |
|
api.cpp hashlog.cpp nvml.cpp stats.cpp sysinfos.cpp cuda.cpp \ |
|
nvsettings.cpp sph/sha2.c \ |
|
sph/streebog.c gost/gost.cu gost/cuda_gosthash.cu |
|
|
|
|
|
#if HAVE_NVML |
|
nvml_defs = -DUSE_WRAPNVML |
|
nvml_libs = -ldl |
|
#endif |
|
|
|
if HAVE_WINDOWS |
|
ccminer_SOURCES += compat/winansi.c |
|
endif |
|
|
|
ccminer_LDFLAGS = $(PTHREAD_FLAGS) @CUDA_LDFLAGS@ |
|
ccminer_LDADD = @LIBCURL@ @JANSSON_LIBS@ @PTHREAD_LIBS@ @WS2_LIBS@ @CUDA_LIBS@ @OPENMP_CFLAGS@ @LIBS@ $(nvml_libs) |
|
ccminer_CPPFLAGS = @LIBCURL_CPPFLAGS@ @OPENMP_CFLAGS@ $(CPPFLAGS) $(PTHREAD_FLAGS) -fno-strict-aliasing $(JANSSON_INCLUDES) $(DEF_INCLUDES) $(nvml_defs) |
|
|
|
nvcc_ARCH := |
|
|
|
#nvcc_ARCH += -gencode=arch=compute_75,code=\"sm_75,compute_75\" # CUDA 10 req. |
|
#nvcc_ARCH += -gencode=arch=compute_70,code=\"sm_70,compute_70\" # CUDA 9.1 |
|
#nvcc_ARCH += -gencode=arch=compute_61,code=\"sm_61,compute_61\" # CUDA 8 |
|
#nvcc_ARCH += -gencode=arch=compute_52,code=\"sm_52,compute_52\" |
|
nvcc_ARCH += -gencode=arch=compute_50,code=\"sm_50,compute_50\" |
|
#nvcc_ARCH += -gencode=arch=compute_35,code=\"sm_35,compute_35\" |
|
#nvcc_ARCH += -gencode=arch=compute_30,code=\"sm_30,compute_30\" |
|
#nvcc_ARCH += -gencode=arch=compute_20,code=\"sm_21,compute_20\" |
|
|
|
nvcc_FLAGS = $(nvcc_ARCH) @CUDA_INCLUDES@ -I. @CUDA_CFLAGS@ |
|
nvcc_FLAGS += $(JANSSON_INCLUDES) --ptxas-options="-v" |
|
|
|
# we're now targeting all major compute architectures within one binary. |
|
.cu.o: |
|
$(NVCC) $(nvcc_FLAGS) --maxrregcount=128 -o $@ -c $< |
|
|
|
|