Skip to content

Commit

Permalink
linux: Use the generic ARM helpers on ARMhf
Browse files Browse the repository at this point in the history
  • Loading branch information
oleavr committed Apr 13, 2023
1 parent 24dd27b commit 96041c9
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/meson.build
Expand Up @@ -213,13 +213,18 @@ if host_os_family == 'linux'
'linux/frida-helper-backend-types.c',
'linux/frida-helper-types.vala',
]
if host_abi == 'armhf'
host_lowlevel_abi = 'arm'
else
host_lowlevel_abi = host_abi
endif
bootstrapper_bin = custom_target('frida-bootstrapper-bin',
input: ['linux/helpers/bootstrapper-' + host_abi + '.bin'],
input: ['linux/helpers/bootstrapper-' + host_lowlevel_abi + '.bin'],
output: ['bootstrapper.bin'],
command: ['cp', '@INPUT0@', '@OUTPUT0@'],
)
loader_bin = custom_target('frida-loader-bin',
input: ['linux/helpers/loader-' + host_abi + '.bin'],
input: ['linux/helpers/loader-' + host_lowlevel_abi + '.bin'],
output: ['loader.bin'],
command: ['cp', '@INPUT0@', '@OUTPUT0@'],
)
Expand Down

0 comments on commit 96041c9

Please sign in to comment.