Skip to content

Commit

Permalink
i#2154 android64: Fix a build warning in cmake config (#7126)
Browse files Browse the repository at this point in the history
Fixes a build warning due to mis-matching arguments in cmake if() and
endif().

Issue: #2154
  • Loading branch information
abhinav92003 authored Dec 12, 2024
1 parent aa4d950 commit 0afb19d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make/DynamoRIOConfig.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,7 @@ function (configure_DynamoRIO_client target)
# -dT is preferred, available on ld 2.18+: we could check for it
set(LD_SCRIPT_OPTION "-T")
set(PREFERRED_BASE_FLAGS "-Xlinker ${LD_SCRIPT_OPTION} -Xlinker \"${LD_SCRIPT}\"")
endif (LINKER_IS_GNU_GOLD)
endif (LINKER_IS_GNU_GOLD OR LINKER_IS_LLVM_LLD)
else (APPLE)
set(PREFERRED_BASE_FLAGS "/base:${PREFERRED_BASE} /dynamicbase:no")
endif (APPLE)
Expand Down

0 comments on commit 0afb19d

Please sign in to comment.