Skip to content

rnburn/rules_cc_module

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rules_cc_module

Rules to use C++20 modules with Bazel.

Getting started

Note: Currently only works with a recent version of clang.

Build a simple module:

cc_module(
    name = "Hello",
    src = "say_hello.cc", # say_hello exports the module Hello
)

# Build a binary with the module
cc_module_binary(
    name = "a.out",
    srcs = [
        "main.cc",  # We can import Hello in main.cc
    ],
    deps = [
        ":Hello",
    ],
)

Build a module with implementation units:

cc_module_binary(
  name = "speech",
  src = "speech.cc",  # speech.cc exports the module speech
  impl_srcs = [
    "speech_impl.cc", # speech_impl.cc provides implements (but doesn't export) speech
  ],
)

Interoperate with regular cc libraries

cc_module(
    name = "a",
    src = "a.cc",
)

cc_module_library(
    name = "b",
    hdrs = [
        "b.h",
    ],
    srcs = [
        "b.cc", # b can import module a, but shouldn't export a module
    ],
    deps = [
        ":a",
    ],
)

# We can use b with regular cc rules
cc_binary(
    name = "a.out",
    srcs = [
        "main.cc",
    ],
    deps = [
        ":b",
    ],
)

Documentation

How to Use C++20 Modules with Bazel

Examples

The directory example demonstrates usage and there is a docker image that provides a build environment. To build the examples, run

./ci/run_docker.sh # spins up a build environment
bazel build //example/... # build the examples

About

Rules for using C++20 modules with bazel

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published