Skip to content
Snippets Groups Projects
Commit 94a96244 authored by Jo-Philipp Wich's avatar Jo-Philipp Wich
Browse files

host-build.mk: define a variable HOST_STATIC_LINKING which is set to "-static"...

host-build.mk: define a variable HOST_STATIC_LINKING which is set to "-static" on non-Darwin systems

SVN-Revision: 33138
parent b942309f
No related branches found
No related tags found
No related merge requests found
...@@ -65,6 +65,10 @@ HOST_CONFIGURE_ARGS = \ ...@@ -65,6 +65,10 @@ HOST_CONFIGURE_ARGS = \
HOST_CONFIGURE_CMD = ./configure HOST_CONFIGURE_CMD = ./configure
ifneq ($(HOST_OS),Darwin)
HOST_STATIC_LINKING = -static
endif
define Host/Configure/Default define Host/Configure/Default
(cd $(HOST_BUILD_DIR)/$(3); \ (cd $(HOST_BUILD_DIR)/$(3); \
if [ -x configure ]; then \ if [ -x configure ]; then \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment