Skip to content

Commit

Permalink
Upgrade icecc-create-env to upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
markbenvenuto committed Feb 12, 2020
1 parent ff2f1ed commit f7ad282
Show file tree
Hide file tree
Showing 2 changed files with 338 additions and 163 deletions.
4 changes: 2 additions & 2 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ def set_up_icecc(self):
outputs=version_file,
implicit=[cc, self.compiler_timestamp_file],
variables=dict(
cmd='{icecc_create_env} --clang {clang} {compiler_wrapper} {out}'.format(
cmd='{icecc_create_env} --clang {clang} {compiler_wrapper} --out {out}'.format(
icecc_create_env=icecc_create_env,
clang=os.path.realpath(cc),
compiler_wrapper='/bin/true', # we require a new enough iceccd.
Expand All @@ -442,7 +442,7 @@ def set_up_icecc(self):
outputs=version_file,
implicit=[cc, cxx, self.compiler_timestamp_file],
variables=dict(
cmd='{icecc_create_env} --gcc {gcc} {gxx} {out}'.format(
cmd='{icecc_create_env} --gcc {gcc} {gxx} --out {out}'.format(
icecc_create_env=icecc_create_env,
gcc=os.path.realpath(cc),
gxx=os.path.realpath(cxx),
Expand Down
Loading

0 comments on commit f7ad282

Please sign in to comment.