[libclc] 32/58: configure: Remove device specific defines
Andreas Boll
aboll-guest at moszumanska.debian.org
Thu Oct 6 08:16:31 UTC 2016
This is an automated email from the git hooks/post-receive script.
aboll-guest pushed a commit to branch master
in repository libclc.
commit 802a4a1513f22701259588e11ba83cc3c85a62c7
Author: Jan Vesely <jan.vesely at rutgers.edu>
Date: Fri Jun 17 20:30:50 2016 +0000
configure: Remove device specific defines
Signed-off-by: Jan Vesely <jan.vesely at rutgers.edu>
Reviewed-by: Tom Stellard <tom at stellard.net>
git-svn-id: https://llvm.org/svn/llvm-project/libclc/trunk@273044 91177308-0d34-0410-b5e6-96231b3b80d8
---
configure.py | 36 +++++++++++-------------------------
1 file changed, 11 insertions(+), 25 deletions(-)
diff --git a/configure.py b/configure.py
index 1cb3371..b96faee 100755
--- a/configure.py
+++ b/configure.py
@@ -91,26 +91,18 @@ if not cxx_compiler:
available_targets = {
'r600--' : { 'devices' :
- [{'gpu' : 'cedar', 'aliases' : ['palm', 'sumo', 'sumo2', 'redwood', 'juniper'],
- 'defines' : {}},
- {'gpu' : 'cypress', 'aliases' : ['hemlock'],
- 'defines' : {}},
- {'gpu' : 'barts', 'aliases' : ['turks', 'caicos'],
- 'defines' : {}},
- {'gpu' : 'cayman', 'aliases' : ['aruba'],
- 'defines' : {}} ]},
+ [{'gpu' : 'cedar', 'aliases' : ['palm', 'sumo', 'sumo2', 'redwood', 'juniper']},
+ {'gpu' : 'cypress', 'aliases' : ['hemlock'] },
+ {'gpu' : 'barts', 'aliases' : ['turks', 'caicos'] },
+ {'gpu' : 'cayman', 'aliases' : ['aruba']} ]},
'amdgcn--': { 'devices' :
- [{'gpu' : 'tahiti', 'aliases' : ['pitcairn', 'verde', 'oland', 'hainan', 'bonaire', 'kabini', 'kaveri', 'hawaii','mullins','tonga','carrizo','iceland','fiji','stoney'],
- 'defines' : {}} ]},
+ [{'gpu' : 'tahiti', 'aliases' : ['pitcairn', 'verde', 'oland', 'hainan', 'bonaire', 'kabini', 'kaveri', 'hawaii','mullins','tonga','carrizo','iceland','fiji','stoney']} ]},
'amdgcn--amdhsa': { 'devices' :
- [{'gpu' : '', 'aliases' : ['bonaire', 'hawaii', 'kabini', 'kaveri', 'mullins', 'carrizo', 'stoney', 'fiji', 'iceland', 'tonga'],
- 'defines' : {}} ]},
- 'nvptx--' : { 'devices' : [{'gpu' : '', 'aliases' : [], 'defines' : {}} ]},
- 'nvptx64--' : { 'devices' : [{'gpu' : '', 'aliases' : [], 'defines' : {}} ]},
- 'nvptx--nvidiacl' : { 'devices' : [{'gpu' : '', 'aliases' : [],
- 'defines' : {}} ]},
- 'nvptx64--nvidiacl' : { 'devices' : [{'gpu' : '', 'aliases' : [],
- 'defines' : {}} ]},
+ [{'gpu' : '', 'aliases' : ['bonaire', 'hawaii', 'kabini', 'kaveri', 'mullins', 'carrizo', 'stoney', 'fiji', 'iceland', 'tonga']} ]},
+ 'nvptx--' : { 'devices' : [{'gpu' : '', 'aliases' : []} ]},
+ 'nvptx64--' : { 'devices' : [{'gpu' : '', 'aliases' : []} ]},
+ 'nvptx--nvidiacl' : { 'devices' : [{'gpu' : '', 'aliases' : []} ]},
+ 'nvptx64--nvidiacl' : { 'devices' : [{'gpu' : '', 'aliases' : []} ]},
}
default_targets = ['nvptx--nvidiacl', 'nvptx64--nvidiacl', 'r600--', 'amdgcn--', 'amdgcn--amdhsa']
@@ -188,16 +180,10 @@ for target in targets:
for device in available_targets[target]['devices']:
# The rule for building a .bc file for the specified architecture using clang.
- device_def_list = (device['defines']['all'] if 'all' in device['defines'] else []);
- if llvm_string_version in device['defines']:
- device_def_list += (device['defines'][llvm_string_version]);
- device_defines = ' '.join(["-D%s" % define for define in device_def_list])
clang_bc_flags = "-target %s -I`dirname $in` %s " \
"-fno-builtin " \
- "-Dcl_clang_storage_class_specifiers " \
- "%s " \
"-D__CLC_INTERNAL " \
- "-emit-llvm" % (target, clang_cl_includes, device_defines)
+ "-emit-llvm" % (target, clang_cl_includes)
if device['gpu'] != '':
clang_bc_flags += ' -mcpu=' + device['gpu']
clang_bc_rule = "CLANG_CL_BC_" + target + "_" + device['gpu']
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-opencl/libclc.git
More information about the Pkg-opencl-commits
mailing list