Skip to content

Commit

Permalink
Merge pull request #587 from Faless/fix/osx_names
Browse files Browse the repository at this point in the history
  • Loading branch information
akien-mga authored Sep 27, 2021
2 parents 402e33a + 1db7630 commit 654836a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -465,9 +465,12 @@ add_sources(sources, 'src/gen', 'cpp')
arch_suffix = env['bits']
if env['platform'] == 'android':
arch_suffix = env['android_arch']
if env['platform'] == 'ios':
elif env['platform'] == 'ios':
arch_suffix = env['ios_arch']
if env['platform'] == 'javascript':
elif env['platform'] == 'osx':
if env['macos_arch'] != 'x86_64':
arch_suffix = env['macos_arch']
elif env['platform'] == 'javascript':
arch_suffix = 'wasm'

library = env.StaticLibrary(
Expand Down

0 comments on commit 654836a

Please sign in to comment.