Skip to content

Commit

Permalink
enable bitcode for quickjs subproject
Browse files Browse the repository at this point in the history
  • Loading branch information
hexploitable committed Oct 30, 2024
1 parent 705a5eb commit a9a1c13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ if have_gumjs
]
if enable_bitcode
message('Enabling bitcode for QuickJS')
quickjs_options += ['bitcode=enabled', 'force_fallback_for=quickjs']
quickjs_options += ['bitcode=true', 'force_fallback_for=quickjs']
endif

quickjs_dep = dependency('quickjs', required: get_option('quickjs'), fallback: ['quickjs', 'quickjs_dep'], default_options: quickjs_options)
Expand All @@ -622,7 +622,7 @@ if have_gumjs
]
if enable_bitcode
message('Enabling bitcode for V8')
v8_opts += ['bitcode=enabled']
v8_opts += ['bitcode=true']
endif

v8_dep = dependency('v8-10.0',
Expand Down

0 comments on commit a9a1c13

Please sign in to comment.