-
-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
meson: Fix export of DbgHelp, SymSrv, and vapidir
- Install DbgHelp and SymSrv, and move them in the repo to match their installed paths. In this way consumers can use the particular prefix variable and be able to refer to them whether they're installed or uninstalled. - For vapidir we also need to expose two different values for uninstalled vs installed.
- Loading branch information
Showing
9 changed files
with
35 additions
and
10 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
dbghelp_prefix = get_option('prefix') / get_option('libdir') / 'frida' | ||
uninstalled_dbghelp_prefix = meson.current_source_dir() | ||
|
||
if host_os_family == 'windows' and host_arch in ['x86', 'x86_64'] | ||
dbghelp_dll = files('dbghelp-@[email protected]'.format((host_arch == 'x86_64') ? '64' : '32')) | ||
dbghelp_dll = files(host_cpu_mode / 'dbghelp.dll') | ||
install_data(dbghelp_dll, install_dir: dbghelp_prefix / host_cpu_mode) | ||
endif |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
symsrv_prefix = get_option('prefix') / get_option('libdir') / 'frida' | ||
uninstalled_symsrv_prefix = meson.current_source_dir() | ||
|
||
if host_os_family == 'windows' and host_arch in ['x86', 'x86_64'] | ||
symsrv_dll = files('symsrv-@[email protected]'.format((host_arch == 'x86_64') ? '64' : '32')) | ||
symsrv_dll = files(host_cpu_mode / 'symsrv.dll') | ||
install_data(symsrv_dll, install_dir: symsrv_prefix / host_cpu_mode) | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters