-
-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Building with make on Windows #3676
Comments
Can you run with |
@Kubuxu It's a quoting issue, involving (at least) $PATH For me it's
which is $PATH from the first space, to the second. |
It seems to think
|
@djdv It seems that Python might be the first thing on your $PATH, making making the |
Applying this patch fixes the issue: diff --git a/Makefile b/Makefile
index 2ac4d09..9f5e509 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
# General tools
-SHELL=PATH=$(PATH) /bin/sh
+SHELL=PATH='$(PATH)' /bin/sh
PROTOC = protoc --gogo_out=. --proto_path=.:/usr/local/opt/protobuf/include:$(dir $@) $< |
@mateon1 thanks for finding it <3 |
Works on my machine. Thanks for the quick assistance @mateon1! |
Version information:
N/A
Type:
Bug
Priority:
P3
Description:
This pull has broken building on Windows for me.
#3504
I haven't investigated it yet but it's spitting out this
I've been using msys2's version of GNU
make
to build the same way for a while viaReverting to a commit before that one works fine with
make
. I can install manually withgo install
still.The text was updated successfully, but these errors were encountered: