forked from OSchip/llvm-project
81 lines
1.8 KiB
CMake
81 lines
1.8 KiB
CMake
set(files
|
|
altivec.h
|
|
ammintrin.h
|
|
avxintrin.h
|
|
avx2intrin.h
|
|
bmiintrin.h
|
|
bmi2intrin.h
|
|
emmintrin.h
|
|
f16cintrin.h
|
|
float.h
|
|
fma4intrin.h
|
|
fmaintrin.h
|
|
ia32intrin.h
|
|
immintrin.h
|
|
iso646.h
|
|
Intrin.h
|
|
limits.h
|
|
lzcntintrin.h
|
|
mm3dnow.h
|
|
mmintrin.h
|
|
mm_malloc.h
|
|
nmmintrin.h
|
|
pmmintrin.h
|
|
popcntintrin.h
|
|
prfchwintrin.h
|
|
rdseedintrin.h
|
|
rtmintrin.h
|
|
shaintrin.h
|
|
smmintrin.h
|
|
stdalign.h
|
|
stdarg.h
|
|
stdbool.h
|
|
stddef.h
|
|
stdint.h
|
|
stdnoreturn.h
|
|
tbmintrin.h
|
|
tgmath.h
|
|
tmmintrin.h
|
|
varargs.h
|
|
wmmintrin.h
|
|
__wmmintrin_aes.h
|
|
__wmmintrin_pclmul.h
|
|
x86intrin.h
|
|
xmmintrin.h
|
|
xopintrin.h
|
|
cpuid.h
|
|
unwind.h
|
|
module.modulemap
|
|
)
|
|
|
|
set(output_dir ${LLVM_LIBRARY_OUTPUT_INTDIR}/clang/${CLANG_VERSION}/include)
|
|
|
|
# Generate arm_neon.h
|
|
clang_tablegen(arm_neon.h -gen-arm-neon
|
|
SOURCE ${CLANG_SOURCE_DIR}/include/clang/Basic/arm_neon.td)
|
|
|
|
set(out_files)
|
|
foreach( f ${files} )
|
|
set( src ${CMAKE_CURRENT_SOURCE_DIR}/${f} )
|
|
set( dst ${output_dir}/${f} )
|
|
add_custom_command(OUTPUT ${dst}
|
|
DEPENDS ${src}
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${src} ${dst}
|
|
COMMENT "Copying clang's ${f}...")
|
|
list(APPEND out_files ${dst})
|
|
endforeach( f )
|
|
|
|
add_custom_command(OUTPUT ${output_dir}/arm_neon.h
|
|
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/arm_neon.h
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_BINARY_DIR}/arm_neon.h ${output_dir}/arm_neon.h
|
|
COMMENT "Copying clang's arm_neon.h...")
|
|
list(APPEND out_files ${output_dir}/arm_neon.h)
|
|
|
|
add_custom_target(clang-headers ALL DEPENDS ${out_files})
|
|
set_target_properties(clang-headers PROPERTIES FOLDER "Misc")
|
|
|
|
install(
|
|
FILES ${files} ${CMAKE_CURRENT_BINARY_DIR}/arm_neon.h
|
|
PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ
|
|
DESTINATION lib${LLVM_LIBDIR_SUFFIX}/clang/${CLANG_VERSION}/include)
|