View Source Zig.Options (zigler v0.11.0)

parses and normalizes zig options.

Also sets up

options.zig file which is mapped to @import("zigler_options") in beam.zig. This is then exposed as @import("beam").options in your code.

Summary

Functions

Performs early normalization of options. For Elixir only, this converts all AST representations which must be escaped before moving on to presenting options to the Zigler compiler.

Functions

@spec elixir_normalize!(keyword()) :: keyword()

Performs early normalization of options. For Elixir only, this converts all AST representations which must be escaped before moving on to presenting options to the Zigler compiler.

@spec normalize!(keyword()) :: keyword()
Link to this function

set_auto(new_opts, old_opts)

View Source