You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by mp...@apache.org on 2016/01/20 03:37:39 UTC

incubator-kudu git commit: Add C++11 ABI=0 flag to YCM config file

Repository: incubator-kudu
Updated Branches:
  refs/heads/master 309afa48b -> 275806520


Add C++11 ABI=0 flag to YCM config file

This compile flag was missing. Also, reorder the other compile flags to
match the latest order used by clang 3.6, to make it easier to compare
in the future.

Change-Id: Ic21a3d89679fdf39f3e10cc03202a7d79caaf640
Reviewed-on: http://gerrit.cloudera.org:8080/1836
Reviewed-by: Dan Burkert <da...@cloudera.com>
Tested-by: Mike Percy <mp...@cloudera.com>


Project: http://git-wip-us.apache.org/repos/asf/incubator-kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-kudu/commit/27580652
Tree: http://git-wip-us.apache.org/repos/asf/incubator-kudu/tree/27580652
Diff: http://git-wip-us.apache.org/repos/asf/incubator-kudu/diff/27580652

Branch: refs/heads/master
Commit: 2758065207c3ed5b610c12cf1753649642f38829
Parents: 309afa4
Author: Mike Percy <mp...@cloudera.com>
Authored: Tue Jan 19 17:15:56 2016 -0800
Committer: Mike Percy <mp...@cloudera.com>
Committed: Wed Jan 20 02:36:46 2016 +0000

----------------------------------------------------------------------
 .ycm_extra_conf.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kudu/blob/27580652/.ycm_extra_conf.py
----------------------------------------------------------------------
diff --git a/.ycm_extra_conf.py b/.ycm_extra_conf.py
index e453734..7925b1b 100644
--- a/.ycm_extra_conf.py
+++ b/.ycm_extra_conf.py
@@ -42,25 +42,25 @@ import ycm_core
 flags = [
 '-x',
 'c++',
-'-Wall',
 '-DKUDU_HEADERS_NO_STUBS=1',
 '-DKUDU_HEADERS_USE_RICH_SLICE=1',
 '-DKUDU_HEADERS_USE_SHORT_STATUS_MACROS=1',
 '-DKUDU_STATIC_DEFINE',
 '-Dintegration_tests_EXPORTS',
+'-D_GLIBCXX_USE_CXX11_ABI=0',
+'-D__STDC_FORMAT_MACROS',
 '-fno-strict-aliasing',
 '-msse4.2',
 '-Wall',
 '-Wno-sign-compare',
 '-Wno-deprecated',
 '-pthread',
-'-D__STDC_FORMAT_MACROS',
-'-g',
 '-ggdb',
-'-fPIC',
 '-Qunused-arguments',
 '-Wno-ambiguous-member-template',
 '-std=c++11',
+'-g',
+'-fPIC',
 '-I',
 'src',
 '-isystem',