File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -285,6 +285,7 @@ $(host_prefix)/share/toolchain.cmake : toolchain.cmake.in $(host_prefix)/.stamp_
285
285
-e 's|@no_upnp@|$(NO_UPNP)|' \
286
286
-e 's|@no_natpmp@|$(NO_NATPMP)|' \
287
287
-e 's|@no_usdt@|$(NO_USDT)|' \
288
+ -e 's|@no_harden@|$(NO_HARDEN)|' \
288
289
$< > $@
289
290
touch $@
290
291
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2023-present The Bitcoin Core developers
2
+ # Distributed under the MIT software license, see the accompanying
3
+ # file COPYING or https://opensource.org/license/mit/.
4
+
1
5
# This file is expected to be highly volatile and may still change substantially.
2
6
3
7
set (CMAKE_SYSTEM_NAME @host_system @)
@@ -138,3 +142,7 @@ endif()
138
142
if (NOT WITH_USDT AND "@no_usdt@" STREQUAL "1" )
139
143
set (WITH_USDT OFF CACHE STRING "" )
140
144
endif ()
145
+
146
+ if (NOT HARDENING AND "@no_harden@" STREQUAL "1" )
147
+ set (HARDENING OFF CACHE STRING "" )
148
+ endif ()
You can’t perform that action at this time.
0 commit comments