Skip to content

Commit 32e2484

Browse files
committed
Merge bitcoin/bitcoin#33304: depends: strip when installing qt binaries
c9d5f21 depends: strip when installing qt (fanquake) Pull request description: Otherwise we end up with ~1.5GB of binaries (Linux) when `DEBUG=1`. This isn't great generally, but is worse in the CI, where disk may be limited (#33293). ACKs for top commit: TheCharlatan: ACK c9d5f21 hebasto: ACK c9d5f21. Tree-SHA512: bf83e0d8c41c64aaa6d841e24c4f25bbe33034ae54a32f34ca14aca59eaa1a004809d48acf171414ed43b99f7d3d1f4b973aee0b272475bd7cc2ca708718b8da
2 parents 647cdb4 + c9d5f21 commit 32e2484

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

depends/packages/native_qt.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ define $(package)_build_cmds
147147
endef
148148

149149
define $(package)_stage_cmds
150-
cmake --install . --prefix $($(package)_staging_prefix_dir)
150+
cmake --install . --prefix $($(package)_staging_prefix_dir) --strip
151151
endef
152152

153153
define $(package)_postprocess_cmds

depends/packages/qt.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ define $(package)_build_cmds
278278
endef
279279

280280
define $(package)_stage_cmds
281-
cmake --install . --prefix $($(package)_staging_prefix_dir)
281+
cmake --install . --prefix $($(package)_staging_prefix_dir) --strip
282282
endef
283283

284284
define $(package)_postprocess_cmds

0 commit comments

Comments
 (0)