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>2018-01-31 01:27:35 +0300
committerBryce Adelstein Lelbach aka wash <brycelelbach@gmail.com>2018-01-31 01:27:35 +0300
commit46b0939a2cb1bfef5101cc8eeac276039e137790 (patch)
tree56ef023f41c51e55b129a0b6a7abc74903f7160a /Makefile
parentab6ecc1c5b1a1755e81d024f47576c2d1568f368 (diff)
Makefiles: Remove filtering of -Wno-unused-local-typedefs as it's not needed.
Core: Suppress uninitialized variable warning. bug 2017697 git-commit 89b9cad5d8131e9e8e2e3c57c1fae9b157c1c204 git-author Bryce Adelstein Lelbach aka wash <brycelelbach@gmail.com> VDVS: http://ausdvs.nvidia.com/Build_Results?virtualId=1000090489&which_page=current_build Jobs: 2017697-2006 [git-p4: depot-paths = "//sw/gpgpu/thrust/": change = 23501463]
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile29
1 files changed, 13 insertions, 16 deletions
diff --git a/Makefile b/Makefile
index 4d1b2ae3..7da375ba 100644
--- a/Makefile
+++ b/Makefile
@@ -125,28 +125,25 @@ else
endif
# Print host compiler version.
-$(info #################################################################################)
VERSION_FLAG :=
ifeq ($(OS),$(filter $(OS),Linux Darwin))
- ifdef USEPGCXX # PGI
- VERSION_FLAG := -V
- else
- ifdef USEXLC # XLC
- VERSION_FLAG := -qversion
- else # GCC, ICC or Clang AKA the sane ones.
- VERSION_FLAG := --version
- endif
- endif
+ ifdef USEPGCXX # PGI
+ VERSION_FLAG := -V
+ else
+ ifdef USEXLC # XLC
+ VERSION_FLAG := -qversion
+ else # GCC, ICC or Clang AKA the sane ones.
+ VERSION_FLAG := --version
+ endif
+ endif
else ifeq ($(OS),win32) # MSVC
- # cl.exe run without any options will print its version info and exit.
- VERSION_FLAG :=
+ # cl.exe run without any options will print its version info and exit.
+ VERSION_FLAG :=
endif
-$(info CCBIN : $(CCBIN))
-$(info CCBIN VERSION : $(shell $(CCBIN) $(VERSION_FLAG)))
-
-$(info #################################################################################)
+$(info #### CCBIN : $(CCBIN))
+$(info #### CCBIN VERSION : $(shell $(CCBIN) $(VERSION_FLAG)))
ifeq ($(OS), win32)
CREATE_DVS_PACKAGE = $(ZIP) -r built/CUDA-thrust-package.zip bin thrust/internal/test thrust/*.trs $(DVS_COMMON_TEST_PACKAGE_FILES)