Skip to content

Commit

Permalink
force fallback on qjs
Browse files Browse the repository at this point in the history
  • Loading branch information
hexploitable committed Oct 30, 2024
1 parent c24702c commit 705a5eb
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,10 +602,10 @@ if have_gumjs
]
if enable_bitcode
message('Enabling bitcode for QuickJS')
quickjs_options += ['bitcode=enabled']
quickjs_options += ['bitcode=enabled', 'force_fallback_for=quickjs']
endif

quickjs_dep = dependency('quickjs', required: get_option('quickjs'), default_options: quickjs_options)
quickjs_dep = dependency('quickjs', required: get_option('quickjs'), fallback: ['quickjs', 'quickjs_dep'], default_options: quickjs_options)
cdata.set('HAVE_QUICKJS', quickjs_dep.found())
if quickjs_dep.found()
gumjs_extra_requires += 'quickjs'
Expand Down

0 comments on commit 705a5eb

Please sign in to comment.