diff options
Diffstat (limited to 'include/lldb/module.modulemap')
-rw-r--r-- | include/lldb/module.modulemap | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/lldb/module.modulemap b/include/lldb/module.modulemap index 9c7f3e6f58e5a..e040df8f913bd 100644 --- a/include/lldb/module.modulemap +++ b/include/lldb/module.modulemap @@ -2,6 +2,8 @@ module lldb_API { requires cplusplus + textual header "Utility/ReproducerInstrumentation.h" + umbrella "API" module * { export * } } @@ -17,6 +19,7 @@ module lldb_Host { module Editline { header "Host/Editline.h" export * } module FileCache { header "Host/FileCache.h" export * } module File { header "Host/File.h" export * } + module FileAction { header "Host/FileAction.h" export * } module FileSystem { header "Host/FileSystem.h" export * } module HostGetOpt { header "Host/HostGetOpt.h" export * } module Host { header "Host/Host.h" export * } @@ -39,13 +42,13 @@ module lldb_Host { module Pipe { header "Host/Pipe.h" export * } module PosixApi { header "Host/PosixApi.h" export * } module ProcessLauncher { header "Host/ProcessLauncher.h" export * } + module ProcessLaunchInfo { header "Host/ProcessLaunchInfo.h" export * } module ProcessRunLock { header "Host/ProcessRunLock.h" export * } module PseudoTerminal { header "Host/PseudoTerminal.h" export * } module SafeMachO { header "Host/SafeMachO.h" export * } module SocketAddress { header "Host/SocketAddress.h" export * } module Socket { header "Host/Socket.h" export * } - module StringConvert { header "Host/StringConvert.h" export * } - module Symbols { header "Host/Symbols.h" export * } + module StringConvert { textual header "Host/StringConvert.h" export * } module TaskPool { header "Host/TaskPool.h" export * } module Terminal { header "Host/Terminal.h" export * } module ThreadLauncher { header "Host/ThreadLauncher.h" export * } @@ -135,5 +138,4 @@ module lldb_Utility { module lldb_public { header "lldb-public.h" export * } module lldb_types { header "lldb-types.h" export * } module lldb_versioning { header "lldb-versioning.h" export * } - } |