Skip to content

Commit

Permalink
Fix windows path for clang and clang++
Browse files Browse the repository at this point in the history
  • Loading branch information
ViliusSutkus89 committed Jun 16, 2024
1 parent 639050e commit eddc9cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recipes/libiconv/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ def generate(self):
env.define("AR", os.path.join(toolchain, "llvm-ar" + executable_suffix))
env.define("AS", os.path.join(toolchain, "llvm-as" + executable_suffix))
env.define("RANLIB", os.path.join(toolchain, "llvm-ranlib" + executable_suffix))
env.define("CC", os.path.join(toolchain, "{}{}-clang{}".format(target_host_triple, api_level, executable_suffix)))
env.define("CXX", os.path.join(toolchain, "{}{}-clang++{}".format(target_host_triple, api_level, executable_suffix)))
env.define("CC", os.path.join(toolchain, "{}{}-clang".format(target_host_triple, api_level)))
env.define("CXX", os.path.join(toolchain, "{}{}-clang++".format(target_host_triple, api_level)))
env.define("LD", os.path.join(toolchain, "ld" + executable_suffix))
env.define("STRIP", os.path.join(toolchain, "llvm-strip" + executable_suffix))

Expand Down

0 comments on commit eddc9cb

Please sign in to comment.