Add gnuXX stds to Objective C.

This commit is contained in:
Jussi Pakkanen 2021-05-15 12:01:03 +03:00
parent 1730778974
commit ab0b727427
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ class ClangObjCCompiler(ClangCompiler, ObjCCompiler):
opts.update({
OptionKey('std', machine=self.for_machine, lang='c'): coredata.UserComboOption(
'C language standard to use',
['none', 'c89', 'c99', 'c11', 'c17'],
['none', 'c89', 'c99', 'c11', 'c17', 'gnu99', 'gnu11'],
'none',
)
})