haskell_prebuilt_library
A prebuilt_haskell_library()
rule is used to identify Haskell prebuilt libraries and their associated interface files.
Function Signature
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
Parameters
-
name
: (required)name of the target
-
default_target_platform
: (defaults to:None
)specifies the default target platform, used when no platforms are specified on the command line
-
target_compatible_with
: (defaults to:[]
)a list of constraints that are required to be satisfied for this target to be compatible with a configuration
-
compatible_with
: (defaults to:[]
)a list of constraints that are required to be satisfied for this target to be compatible with a configuration
-
exec_compatible_with
: (defaults to:[]
)a list of constraints that are required to be satisfied for this target to be compatible with an execution platform
-
visibility
: (defaults to:[]
)a list of visibility patterns restricting what targets can depend on this one
-
within_view
: (defaults to:["PUBLIC"]
)a list of visibility patterns restricting what this target can depend on
-
metadata
: (defaults to:{}
)a key-value map of metadata associated with this target
-
tests
: (defaults to:[]
)a list of targets that provide tests for this one
-
modifiers
: (defaults to:[]
)an array of modifiers associated with this target
-
deps
: (defaults to:[]
)Other
prebuilt_haskell_library()
rules from which this library imports modules. -
exported_compiler_flags
: (defaults to:[]
)Compiler flags used by dependent rules when compiling with this library.
-
exported_linker_flags
: (defaults to:[]
)Linker flags used by dependent rules when linking with this library.
-
shared_libs
: (defaults to:{}
)A map of shared library names to shared library paths to use when building a dynamically linked top-level target.
-
static_libs
: (defaults to:[]
)The libraries to use when building a statically linked top-level target.
Examples
prebuilt_haskell_library(
name = 'file',
static_interfaces = [
'interfaces',
],
shared_interfaces = [
'interfaces_dyn',
],
static_libs = [
'libFileUtil.a',
],
shared_libs = {
'libFileUtil.so': 'libFileUtil.so',
},
)