Add get_werror_args for CCRX C compiler

This commit is contained in:
Phillip Cao 2019-01-10 10:01:46 +13:00 committed by Jussi Pakkanen
parent 530aec0bbe
commit 13fe2e40eb
1 changed files with 3 additions and 0 deletions

View File

@ -1659,6 +1659,9 @@ class CcrxCCompiler(CcrxCompiler, CCompiler):
def get_linker_output_args(self, outputname):
return ['-output=%s' % outputname]
def get_werror_args(self):
return ['-change_message=error']
def get_include_args(self, path, is_system):
if path == '':
path = '.'