Skip to main content

haskell_prebuilt_library

haskell_prebuilt_library

def haskell_prebuilt_library(
*,
name: str,
default_target_platform: None | str = None,
target_compatible_with: list[str] = [],
compatible_with: list[str] = [],
exec_compatible_with: list[str] = [],
visibility: list[str] = [],
within_view: list[str] = ["PUBLIC"],
metadata: OpaqueMetadata = {},
tests: list[str] = [],
modifiers: OpaqueMetadata = [],
_apple_platforms: dict[str, str] = {},
contacts: list[str] = [],
cxx_header_dirs: list[str] = [],
db: str,
default_host_platform: None | str = None,
deps: list[str] = [],
enable_profiling: bool = False,
exported_compiler_flags: list[str] = [],
exported_linker_flags: list[str] = [],
exported_post_linker_flags: list[str] = [],
id: str = "",
import_dirs: list[str] = [],
labels: list[str] = [],
licenses: list[str] = [],
pic_profiled_static_libs: list[str] = [],
pic_static_libs: list[str] = [],
profiled_static_libs: list[str] = [],
shared_libs: dict[str, str] = {},
static_libs: list[str] = [],
version: str = "",
) -> None

A prebuilt_haskell_library() rule is used to identify Haskell prebuilt libraries and their associated interface files.

Parameters

  • name: name of the target
  • default_target_platform: specifies the default target platform, used when no platforms are specified on the command line
  • target_compatible_with: a list of constraints that are required to be satisfied for this target to be compatible with a configuration
  • compatible_with: a list of constraints that are required to be satisfied for this target to be compatible with a configuration
  • exec_compatible_with: a list of constraints that are required to be satisfied for this target to be compatible with an execution platform
  • visibility: a list of visibility patterns restricting what targets can depend on this one
  • within_view: a list of visibility patterns restricting what this target can depend on
  • metadata: a key-value map of metadata associated with this target
  • tests: a list of targets that provide tests for this one
  • modifiers: an array of modifiers associated with this target
  • deps: Other prebuilt_haskell_library() rules from which this library imports modules.
  • exported_compiler_flags: Compiler flags used by dependent rules when compiling with this library.
  • exported_linker_flags: Linker flags used by dependent rules when linking with this library.
  • shared_libs: A map of shared library names to shared library paths to use when building a dynamically linked top-level target.
  • static_libs: The libraries to use when building a statically linked top-level target.

Details

Examples:


prebuilt_haskell_library(
name = 'file',
static_interfaces = [
'interfaces',
],
shared_interfaces = [
'interfaces_dyn',
],
static_libs = [
'libFileUtil.a',
],
shared_libs = {
'libFileUtil.so': 'libFileUtil.so',
},
)