Skip to content

Commit

Permalink
add support for vs_module_defs to Executables
Browse files Browse the repository at this point in the history
fixes: #9254
  • Loading branch information
dcbaker committed Jul 31, 2023
1 parent 12234a2 commit 2d5db86
Show file tree
Hide file tree
Showing 12 changed files with 56 additions and 22 deletions.
4 changes: 4 additions & 0 deletions docs/markdown/snippets/executable_vs_module_defs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## Executable gains vs_module_defs keyword

This allows using a .def file to control which functions an Executable will
expose to a SharedModule.
10 changes: 10 additions & 0 deletions docs/yaml/functions/executable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,13 @@ kwargs:
type: bool
since: 0.49.0
description: Build a position-independent executable.

vs_module_defs:
type: str | file | custom_tgt | custom_idx
since: 1.3.0
description: |
Specify a Microsoft module definition file for controlling symbol exports,
etc., on platforms where that is possible (e.g. Windows).
This can be used to expose which functions a shared_module loaded by an
executable will be allowed to use
2 changes: 2 additions & 0 deletions docs/yaml/functions/shared_library.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,5 @@ kwargs:
description: |
Specify a Microsoft module definition file for controlling symbol exports,
etc., on platforms where that is possible (e.g. Windows).
*(Since 1.3.0)* indexes of custom_target are supported
2 changes: 2 additions & 0 deletions docs/yaml/functions/shared_module.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,5 @@ kwargs:
description: |
Specify a Microsoft module definition file for controlling symbol exports,
etc., on platforms where that is possible (e.g. Windows).
*(Since 1.3.0)* indexes of custom_target are supported
2 changes: 2 additions & 0 deletions mesonbuild/backend/ninjabackend.py
Original file line number Diff line number Diff line change
Expand Up @@ -3250,6 +3250,8 @@ def get_target_type_link_args(self, target, linker):
commands += linker.gen_import_library_args(self.get_import_filename(target))
if target.pie:
commands += linker.get_pie_link_args()
if target.vs_module_defs and hasattr(linker, 'gen_vs_module_defs_args'):
commands += linker.gen_vs_module_defs_args(target.vs_module_defs.rel_to_builddir(self.build_to_src))
elif isinstance(target, build.SharedLibrary):
if isinstance(target, build.SharedModule):
commands += linker.get_std_shared_module_link_args(target.get_options())
Expand Down
2 changes: 1 addition & 1 deletion mesonbuild/backend/vs2010backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -1575,7 +1575,7 @@ def add_non_makefile_vcxproj_elements(
# DLLs built with MSVC always have an import library except when
# they're data-only DLLs, but we don't support those yet.
ET.SubElement(link, 'ImportLibrary').text = target.get_import_filename()
if isinstance(target, build.SharedLibrary):
if isinstance(target, (build.SharedLibrary, build.Executable)):
# Add module definitions file, if provided
if target.vs_module_defs:
relpath = os.path.join(down, target.vs_module_defs.rel_to_builddir(self.build_to_src))
Expand Down
44 changes: 25 additions & 19 deletions mesonbuild/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
rust_kwargs |
cs_kwargs)

known_exe_kwargs = known_build_target_kwargs | {'implib', 'export_dynamic', 'pie'}
known_exe_kwargs = known_build_target_kwargs | {'implib', 'export_dynamic', 'pie', 'vs_module_defs'}
known_shlib_kwargs = known_build_target_kwargs | {'version', 'soversion', 'vs_module_defs', 'darwin_versions'}
known_shmod_kwargs = known_build_target_kwargs | {'vs_module_defs'}
known_stlib_kwargs = known_build_target_kwargs | {'pic', 'prelink'}
Expand Down Expand Up @@ -1688,6 +1688,26 @@ def check_module_linking(self):
'use shared_library() with `override_options: [\'b_lundef=false\']` instead.')
link_target.force_soname = True

def process_vs_module_defs_kw(self, kwargs: T.Dict[str, T.Any]) -> None:
if kwargs.get('vs_module_defs') is not None:
path: T.Union[str, File, CustomTarget, CustomTargetIndex] = kwargs['vs_module_defs']
if isinstance(path, str):
if os.path.isabs(path):
self.vs_module_defs = File.from_absolute_file(path)
else:
self.vs_module_defs = File.from_source_file(self.environment.source_dir, self.subdir, path)
elif isinstance(path, File):
# When passing a generated file.
self.vs_module_defs = path
elif isinstance(path, (CustomTarget, CustomTargetIndex)):
# When passing output of a Custom Target
self.vs_module_defs = File.from_built_file(path.get_subdir(), path.get_filename())
else:
raise InvalidArguments(
'Shared library vs_module_defs must be either a string, '
'a file object or a Custom Target')
self.process_link_depends(path)

class FileInTargetPrivateDir:
"""Represents a file with the path '/path/to/build/target_private_dir/fname'.
target_private_dir is the return value of get_target_private_dir which is e.g. 'subdir/target.p'.
Expand Down Expand Up @@ -1911,6 +1931,9 @@ def __init__(
# Remember that this exe was returned by `find_program()` through an override
self.was_returned_by_find_program = False

self.vs_module_defs: T.Optional[File] = None
self.process_vs_module_defs_kw(kwargs)

def post_init(self) -> None:
super().post_init()
machine = self.environment.machines[self.for_machine]
Expand Down Expand Up @@ -2373,24 +2396,7 @@ def process_kwargs(self, kwargs):
self.darwin_versions = 2 * [self.soversion]

# Visual Studio module-definitions file
if kwargs.get('vs_module_defs') is not None:
path = kwargs['vs_module_defs']
if isinstance(path, str):
if os.path.isabs(path):
self.vs_module_defs = File.from_absolute_file(path)
else:
self.vs_module_defs = File.from_source_file(self.environment.source_dir, self.subdir, path)
elif isinstance(path, File):
# When passing a generated file.
self.vs_module_defs = path
elif isinstance(path, (CustomTarget, CustomTargetIndex)):
# When passing output of a Custom Target
self.vs_module_defs = File.from_built_file(path.get_subdir(), path.get_filename())
else:
raise InvalidArguments(
'Shared library vs_module_defs must be either a string, '
'a file object or a Custom Target')
self.process_link_depends(path)
self.process_vs_module_defs_kw(kwargs)

if 'rust_crate_type' in kwargs:
rust_crate_type = kwargs['rust_crate_type']
Expand Down
1 change: 1 addition & 0 deletions mesonbuild/interpreter/kwargs.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,7 @@ class _BuildTarget(_BaseBuildTarget):
class Executable(_BuildTarget):

gui_app: T.Optional[bool]
vs_module_def: T.Optional[T.Union[str, File, build.CustomTarget, build.CustomTargetIndex]]
win_subsystem: T.Optional[str]


Expand Down
1 change: 1 addition & 0 deletions mesonbuild/interpreter/type_checking.py
Original file line number Diff line number Diff line change
Expand Up @@ -519,6 +519,7 @@ def _validate_win_subsystem(value: T.Optional[str]) -> T.Optional[str]:
EXECUTABLE_KWS = [
*_BUILD_TARGET_KWS,
*_EXCLUSIVE_EXECUTABLE_KWS,
_VS_MODULE_DEF_KW.evolve(since='1.3.0', since_values=None),
]

# Arguments exclusive to StaticLibrary. These are separated to make integrating
Expand Down
2 changes: 2 additions & 0 deletions test cases/windows/9 vs module defs generated/exe.def
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
EXPORTS
thisfunc
2 changes: 1 addition & 1 deletion test cases/windows/9 vs module defs generated/meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('generated_dll_module_defs', 'c')

subdir('subdir')
exe = executable('prog', 'prog.c', link_with : shlib)
exe = executable('prog', 'prog.c', link_with : shlib, vs_module_defs : 'exe.def')
test('runtest', exe)
6 changes: 5 additions & 1 deletion test cases/windows/9 vs module defs generated/prog.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
int somedllfunc(void);

int exefunc(void) {
return 42;
}

int main(void) {
return somedllfunc() == 42 ? 0 : 1;
return somedllfunc() == exefunc() ? 0 : 1;
}

0 comments on commit 2d5db86

Please sign in to comment.