-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add building with depends to the Makefile #4607
Add building with depends to the Makefile #4607
Conversation
Depends can now be compiled with `make depends target=$triple`, where $triple is one of the supported build targets. Adapt the Makefile for this change, remove not needed windows deps from depends setup description.
@@ -41,6 +41,10 @@ endif | |||
|
|||
all: release-all | |||
|
|||
depends: | |||
cd contrib/depends && $(MAKE) HOST=$(target) && cd ../.. && mkdir -p build/$(target)/release |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
HOST=$(target) ? That seems like a possible mixup.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's correct :)
Target is specified on the command line make depends target=...
, HOST is the... target that will run the binaries..
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, thanks for confirming.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed
e623f2b Add building with depends to the Makefile (TheCharlatan)
Depends can now be compiled with
make depends target=$triple
, where$triple is one of the supported build targets.
Adapt the Makefile for this change, remove not needed windows deps from
depends setup description.