Skip to content

Commit

Permalink
Fix Linux ldid bin path (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
L1ghtmann authored and 0cyn committed Jan 13, 2024
1 parent e8003bc commit c9a8051
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dragongen/toolchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ def locate_linux_toolchain(cls, use_objcs: bool):
tc.clang = tc_dir + 'clang'
tc.clangpp = tc_dir + 'clang++'
tc.ld = tc_dir + 'clang++'
tc.codesign = 'ldid'
tc.codesign = tc_dir + 'ldid'
tc.dsym = tc_dir + 'dsymutil'
tc.plutil = 'plutil'
tc.plutil = 'plutil' # TODO: fixme
tc.lipo = tc_dir + 'lipo'
tc.tapi = tc_dir + 'tapi'

Expand Down

0 comments on commit c9a8051

Please sign in to comment.