Zyn 2.1.0 introduces flexible build profiles configurable entirely via zyn.toml. Now you can define compiler flags for release, debug, or any custom profile directly in your project config:
`[settings.profiles.release]
flags = ["-O3", "-DNDEBUG"]
[settings.profiles.debug]
flags = ["-g", "-O0"]
[settings.profiles.your_profile]
flags = ["-O2", "-march=native"]`
You can add custom profiles with your own names and flags, making builds fully tailored to your needs.
Additional improvements include better internal architecture and updated documentation to help you use these new features.
Getting started: Update to Zyn 2.1.0, configure your profiles in zyn.toml, and build with:
zyn run --release
zyn run --debug
zyn run your_profile
Enjoy more control and simplicity in your C/C++ builds with Zyn!
Top comments (0)