Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
oxidase committed Jul 2, 2024
1 parent e975e46 commit 6d0529b
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions python/poetry_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,7 @@ def install(args):
asflags = cpu_flags + cc.get("ASFLAGS", [])
cflags = cpu_flags + cc.get("CFLAGS", [])
cxxflags = cpu_flags + cc.get("CXXFLAGS", [])
ldflags = (
[f"-Wl,{flag.replace(' ', ',')}" for flag in cpu_flags]
+ ["-Wl,-rpath,{}".format(cc.get("dynamic_runtime_solib_dir", ""))]
+ cc.get("LDFLAGS", [])
)
ldflags = ["-Wl,-rpath,{}".format(cc.get("dynamic_runtime_solib_dir", ""))] + cc.get("LDFLAGS", [])
flags = dict(
ASMFLAGS=join(asflags),
ASFLAGS=join(asflags),
Expand Down

0 comments on commit 6d0529b

Please sign in to comment.