Skip to content

Commit

Permalink
swift: Implement get_std_shared_lib_link_args()
Browse files Browse the repository at this point in the history
  • Loading branch information
oleavr committed Apr 9, 2024
1 parent 6584539 commit cbbb6fe
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mesonbuild/compilers/swift.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ def get_warn_args(self, level: str) -> T.List[str]:
def get_std_exe_link_args(self) -> T.List[str]:
return ['-emit-executable']

def get_std_shared_lib_link_args(self) -> T.List[str]:
return ['-emit-library']

def get_module_args(self, modname: str) -> T.List[str]:
return ['-module-name', modname]

Expand Down

0 comments on commit cbbb6fe

Please sign in to comment.