Kaydet (Commit) 9e6221f1 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

clang does not like gnu++11 that much, use c++11 instead

Change-Id: I82c3a4da388cf436ba4f5380c5833a451e28cfd5
üst 3deacd97
...@@ -258,7 +258,7 @@ class VimIntegrationGenerator(IdeIntegrationGenerator): ...@@ -258,7 +258,7 @@ class VimIntegrationGenerator(IdeIntegrationGenerator):
command += cxxflag command += cxxflag
command += ' -c ' command += ' -c '
command += file command += file
return command return command.replace('-std=gnu++11', '-std=c++11')
class KdevelopIntegrationGenerator(IdeIntegrationGenerator): class KdevelopIntegrationGenerator(IdeIntegrationGenerator):
def encode_int(self, i): def encode_int(self, i):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment