Skip to content
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

Build geckolib with MozillaBuild on Windows #12377

Merged
merged 2 commits into from Jul 11, 2016
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Prev

Change to use msvc triple for Windows Python

  • Loading branch information
upsuper committed Jul 11, 2016
commit ce2447f921527a26cf3b33c16b0d905bb0a7074c
@@ -41,7 +41,9 @@ def host_triple():
os_type = "apple-darwin"
elif os_type == "android":
os_type = "linux-androideabi"
elif os_type == "windows" or os_type.startswith("mingw64_nt-") or os_type.startswith("cygwin_nt-"):
elif os_type == "windows":
os_type = "pc-windows-msvc"
elif os_type.startswith("mingw64_nt-") or os_type.startswith("cygwin_nt-"):
os_type = "pc-windows-gnu"
elif os_type == "freebsd":
os_type = "unknown-freebsd"
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.