Skip to content

Commit

Permalink
Merge pull request #436 from flet-dev/ios-support
Browse files Browse the repository at this point in the history
iOS support
  • Loading branch information
davidhewitt authored Jul 1, 2024
2 parents fd47f21 + 8a9c8c7 commit de6583c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setuptools_rust/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ def build_extension(
*ext.rustc_flags,
]

# OSX requires special linker arguments
if rustc_cfgs.get("target_os") == "macos":
# Apple platforms require special linker arguments
if rustc_cfgs.get("target_os") in {"macos", "ios", "tvos", "watchos"}:
ext_basename = os.path.basename(self.get_dylib_ext_path(ext, ext.name))
rustc_args.extend(
[
Expand Down

0 comments on commit de6583c

Please sign in to comment.