grame-cncm / faust

Functional programming language for signal processing and sound synthesis
http://faust.grame.fr
Other
2.59k stars 323 forks source link

faust2vcvrack error when compiling for windows #1082

Open mysticallego opened 1 day ago

mysticallego commented 1 day ago

When you compile any program with faust2vcvrack, it outputs macro code that causes an error when compiling for windows.

This block of code is the source of the error:

#ifdef _WIN32
typedef unsigned int uint
#endif

There should be a semicolon after uint.

sletz commented 1 day ago

Here ? https://github.com/grame-cncm/faust/blob/2189f61c629ad839f4e599bd2134c29691cc9357/architecture/vcvrack/template/src/FaustModule.cpp#L55 ?

mysticallego commented 1 day ago

Yes, exactly.