File tree Expand file tree Collapse file tree 1 file changed +0
-17
lines changed Expand file tree Collapse file tree 1 file changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -20,23 +20,6 @@ macro(add_test_input_binary name input output)
20
20
list (APPEND TEST_INPUT_BINARIES "${name} " )
21
21
endmacro ()
22
22
23
- # Creates target ${name} and output ${output} by linking two object files.
24
- # ${target1} and ${target2} should refer to the targets created in the above
25
- # add_test_input_binary() macro, and ${input1} and ${input2} should refer
26
- # to the associated object files built by the same macro.
27
- macro (add_test_shared_binary name target1 input1 target2 input2 output )
28
- add_custom_command (
29
- OUTPUT "${output} "
30
- COMMAND "$<TARGET_FILE:clang>" --target=amdgcn-amd-amdhsa
31
- "${input1} " "${input2} " -o "${output} "
32
- VERBATIM
33
- DEPENDS clang lld ${target1} ${target2} )
34
- add_custom_target ("${name} "
35
- DEPENDS "${output} "
36
- SOURCES "${input1} " "${input2} " )
37
- list (APPEND TEST_INPUT_BINARIES "${name} " )
38
- endmacro ()
39
-
40
23
# Creates target ${name} which depends on a clang command to compile ${input} to
41
24
# ${output}, with any additional arguments from ${ARGN}, and add it to the
42
25
# TEST_INPUT_BITCODES target list.
You can’t perform that action at this time.
0 commit comments