Home | History | Annotate | Download | only in common
      1 # Copyright  2017 Intel Corporation
      2 
      3 # Permission is hereby granted, free of charge, to any person obtaining a copy
      4 # of this software and associated documentation files (the "Software"), to deal
      5 # in the Software without restriction, including without limitation the rights
      6 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
      7 # copies of the Software, and to permit persons to whom the Software is
      8 # furnished to do so, subject to the following conditions:
      9 
     10 # The above copyright notice and this permission notice shall be included in
     11 # all copies or substantial portions of the Software.
     12 
     13 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     14 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     15 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
     16 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
     17 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
     18 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
     19 # SOFTWARE.
     20 
     21 sid_tables_h = custom_target(
     22   'sid_tables_h',
     23   input : ['sid_tables.py', 'sid.h', 'gfx9d.h'],
     24   output : 'sid_tables.h',
     25   command : [prog_python2, '@INPUT@'],
     26   capture : true,
     27 )
     28 
     29 amd_common_files = files(
     30   'ac_binary.c',
     31   'ac_binary.h',
     32   'ac_exp_param.h',
     33   'ac_llvm_build.c',
     34   'ac_llvm_build.h',
     35   'ac_llvm_helper.cpp',
     36   'ac_llvm_util.c',
     37   'ac_llvm_util.h',
     38   'ac_shader_abi.h',
     39   'ac_shader_info.c',
     40   'ac_shader_info.h',
     41   'ac_shader_util.c',
     42   'ac_shader_util.h',
     43   'ac_nir_to_llvm.c',
     44   'ac_nir_to_llvm.h',
     45   'ac_gpu_info.c',
     46   'ac_gpu_info.h',
     47   'ac_surface.c',
     48   'ac_surface.h',
     49   'ac_debug.c',
     50   'ac_debug.h',
     51 )
     52 
     53 libamd_common = static_library(
     54   'amd_common',
     55   [amd_common_files, sid_tables_h],
     56   include_directories : [
     57     inc_common, inc_compiler, inc_mesa, inc_mapi, inc_amd,
     58   ],
     59   dependencies : [
     60     dep_llvm, dep_thread, dep_elf, dep_libdrm_amdgpu, dep_valgrind,
     61     idep_nir_headers,
     62   ],
     63   c_args : [c_vis_args],
     64   cpp_args : [cpp_vis_args],
     65 )
     66