Skip to content

Commit

Permalink
Update conanfile.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ericLemanissier authored Jun 9, 2022
1 parent ab15a46 commit 61c3b96
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions recipes/mingw-w64/linux/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,9 @@ def build(self):

with tools.environment_append(env):
with_gmp_mpfc_mpc = [
"--with-gmp=system",
"--with-gmp-prefix={}".format(self.deps_cpp_info["gmp"].rootpath.replace("\\", "/")),
"--with-mpfr=system",
"--with-mpfr-prefix={}".format(self.deps_cpp_info["mpfr"].rootpath.replace("\\", "/")),
"--with-mpc=system",
"--with-mpc-prefix={}".format(self.deps_cpp_info["mpc"].rootpath.replace("\\", "/"))
"--with-gmp={}".format(self.deps_cpp_info["gmp"].rootpath.replace("\\", "/")),
"--with-mpfr={}".format(self.deps_cpp_info["mpfr"].rootpath.replace("\\", "/")),
"--with-mpc={}".format(self.deps_cpp_info["mpc"].rootpath.replace("\\", "/"))
]

self.output.info("Building binutils ...")
Expand Down

0 comments on commit 61c3b96

Please sign in to comment.