Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/NVIDIA/thrust.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryce Adelstein Lelbach aka wash <brycelelbach@gmail.com>2019-10-11 23:28:02 +0300
committerBryce Adelstein Lelbach aka wash <brycelelbach@gmail.com>2019-10-11 23:28:02 +0300
commitde845f906ec047882348eed97c628424d72e9761 (patch)
treed2f44156e3a045417ca0454090364092f8dec49e /Makefile
parent621df211f31086387e992be2460461da629c6788 (diff)
Makefile: Don't force any C++ dialect, instead use the host compiler's default.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 12f9d964..6bee8ef6 100644
--- a/Makefile
+++ b/Makefile
@@ -30,8 +30,8 @@
# Makefile for building Thrust unit test driver
-# Force C++11 mode. NVCC will ignore it if the host compiler doesn't support it.
-#export CXX_STD = c++11
+# Don't force any C++ mode, use the host compiler's default.
+export CXX_STD =
export VERBOSE = 1