Skip to content

Commit

Permalink
compilers: Fix Swift optimize-for-size arg mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
oleavr committed Apr 21, 2024
1 parent 8c3aaa9 commit 696b75c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mesonbuild/compilers/swift.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
'1': ['-O'],
'2': ['-O'],
'3': ['-O'],
's': ['-O'],
's': ['-Osize'],
}

class SwiftCompiler(Compiler):
Expand Down

0 comments on commit 696b75c

Please sign in to comment.