fix(build): use std helper rather than passing -std=c11 flag

MSVC expects `/std:c11`
This commit is contained in:
Will Lillis 2026-06-15 01:27:31 -04:00
parent 6b7e298549
commit d861eab22b

View file

@ -39,7 +39,7 @@ fn main() {
}
config
.flag_if_supported("-std=c11")
.std("c11")
.flag_if_supported("-fvisibility=hidden")
.flag_if_supported("-Wshadow")
.flag_if_supported("-Wno-unused-parameter")