diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-09-06 15:22:18 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-09-06 15:44:58 +0200 |
commit | 9e6221f114ba4422caa79f38ee0a20fb8a8931cd (patch) | |
tree | c7997820d1a8aba210418800385c5f8c4a244b11 /bin | |
parent | 3deacd971b843a752ddf456916209f52c9aa992f (diff) |
clang does not like gnu++11 that much, use c++11 instead
Change-Id: I82c3a4da388cf436ba4f5380c5833a451e28cfd5
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/gbuild-to-ide | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/gbuild-to-ide b/bin/gbuild-to-ide index f005cf25faf2..2e8bc3076ddd 100755 --- a/bin/gbuild-to-ide +++ b/bin/gbuild-to-ide @@ -258,7 +258,7 @@ class VimIntegrationGenerator(IdeIntegrationGenerator): command += cxxflag command += ' -c ' command += file - return command + return command.replace('-std=gnu++11', '-std=c++11') class KdevelopIntegrationGenerator(IdeIntegrationGenerator): def encode_int(self, i): |