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 all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

@@ -332,7 +332,7 @@ def build_geckolib(self, jobs=None, verbose=False, release=False):
opts += ["--release"]

env = self.build_env()
env["CARGO_TARGET_DIR"] = path.join(self.context.topdir, "target", "geckolib")
env["CARGO_TARGET_DIR"] = path.join(self.context.topdir, "target", "geckolib").encode("UTF-8")

build_start = time()
with cd(path.join("ports", "geckolib")):
@@ -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.