Attempt to make the PS4 build bot happy.

llvm-svn: 323590
This commit is contained in:
Gabor Horvath 2018-01-27 16:38:56 +00:00
parent c78d99a84b
commit d2c562dd0e
1 changed files with 2 additions and 2 deletions

View File

@ -40,10 +40,10 @@ static RunOptions getRunOptionsForLanguage(Language Lang) {
BasicArgs = {"-x", "c", "-std=c89"};
break;
case Lang_CXX:
BasicArgs = {"-std=c++98"};
BasicArgs = {"-std=c++98", "-frtti"};
break;
case Lang_CXX11:
BasicArgs = {"-std=c++11"};
BasicArgs = {"-std=c++11", "-frtti"};
break;
case Lang_OpenCL:
case Lang_OBJCXX: