File tree 2 files changed +5
-4782
lines changed
2 files changed +5
-4782
lines changed Original file line number Diff line number Diff line change 18
18
message ("Getting dependencies for ABI compatability check..." )
19
19
# Get the latest version of abi-dumper and abi-compliance-checker
20
20
include (FetchContent)
21
- FetchContent_MakeAvailable (abi-dumper
21
+ FetchContent_Declare (abi-dumper
22
22
GIT_REPOSITORY https://github.com/lvc/abi-dumper.git
23
23
GIT_TAG 1.4
24
24
)
@@ -27,7 +27,7 @@ if(NOT abi-dumper_POPULATED)
27
27
FetchContent_Populate(abi-dumper)
28
28
endif ()
29
29
30
- FetchContent_MakeAvailable (abi-compliance-checker
30
+ FetchContent_Declare (abi-compliance-checker
31
31
GIT_REPOSITORY https://github.com/lvc/abi-compliance-checker.git
32
32
GIT_TAG f60ce442c33f1d5cda1cec7cfddee24af1777572
33
33
)
@@ -36,6 +36,8 @@ if(NOT abi-compliance-checker_POPULATED)
36
36
FetchContent_Populate(abi-compliance-checker)
37
37
endif ()
38
38
39
+ # The local script is patched to exclude register assignments to parameters
40
+ #set(abi-dumper-script ${abi-dumper_SOURCE_DIR}/abi-dumper.pl)
39
41
set (abi-dumper-script ${CMAKE_CURRENT_SOURCE_DIR} /abi-dumper.pl)
40
42
set (abi-compliance-script ${abi-compliance-checker_SOURCE_DIR}/abi-compliance-checker.pl)
41
43
You can’t perform that action at this time.
0 commit comments