- Add
FaustBuilder::build_xml()
to generate the description file. Seefaust -xml
for details. @crop2000 - Add
FaustBuilder::set_arch_file()
to specify a custom architecture file @crop2000 - Add
FaustBuilder::set_faust_path()
to specify a custom path to the faust binary @crop2000 - Add
FaustBuilder::set_module_name
to specify themod $name
in the generated code. By default it'sdsp
. @obsoleszenz - Add
FaustBuilder::set_struct_name
to specify thestruct $name
in the generated code. By default it's the CamelCased file name. @obsoleszenz - Cleanups & refactorings to
FaustBuilder
@crop2000
- New crate that implements a
proc_macro
to have faust code in your rust code. Seeexamples/example-jack-macro/src/main.rs
for details. @olafklingt
- Put import of
libm
andjack
behind a feature. Usedefault-features = false
to skip this. @amomentunfolding
- Evaluate assembler for flushing denormals at build-time. @plule