nicholasjng / nanobind-bazel

Bazel defs and rules for building Python projects with nanobind extensions.
Apache License 2.0
6 stars 0 forks source link

Add --sizeopt flag to `@nanobind` target #3

Closed nicholasjng closed 7 months ago

nicholasjng commented 7 months ago

Controls the passing of size optimization flags for each target compiler. Unfortunately, since this needs a select() based on compiler and sizeopt yes/no, we now have to explicitly match the C++ compiler from the configured toolchain. Also, this results in quite a few config settings in the @nanobind target, which could be adjusted in visibility when this is more polished.

The current attempt seems to build the nanobind example properly.

nicholasjng commented 7 months ago

yay, it works!