mirror of
https://github.com/MaskRay/ccls.git
synced 2025-04-02 23:12:08 +00:00
[waf] Remove -Werror and reorder some libclang labels
This commit is contained in:
parent
8de44e3b95
commit
d8b9acc790
@ -83,9 +83,6 @@ Role GetRole(const CXIdxEntityRefInfo* ref_info, Role role) {
|
|||||||
|
|
||||||
SymbolKind GetSymbolKind(CXCursorKind kind) {
|
SymbolKind GetSymbolKind(CXCursorKind kind) {
|
||||||
switch (kind) {
|
switch (kind) {
|
||||||
default:
|
|
||||||
return SymbolKind::Invalid;
|
|
||||||
|
|
||||||
case CXCursor_FunctionDecl:
|
case CXCursor_FunctionDecl:
|
||||||
case CXCursor_CXXMethod:
|
case CXCursor_CXXMethod:
|
||||||
case CXCursor_Constructor:
|
case CXCursor_Constructor:
|
||||||
@ -94,71 +91,86 @@ SymbolKind GetSymbolKind(CXCursorKind kind) {
|
|||||||
case CXCursor_FunctionTemplate:
|
case CXCursor_FunctionTemplate:
|
||||||
case CXCursor_OverloadedDeclRef:
|
case CXCursor_OverloadedDeclRef:
|
||||||
case CXCursor_LambdaExpr:
|
case CXCursor_LambdaExpr:
|
||||||
|
case CXCursor_ObjCInstanceMethodDecl:
|
||||||
|
case CXCursor_ObjCClassMethodDecl:
|
||||||
return SymbolKind::Func;
|
return SymbolKind::Func;
|
||||||
|
|
||||||
case CXCursor_Namespace:
|
|
||||||
case CXCursor_EnumDecl:
|
|
||||||
case CXCursor_UnionDecl:
|
|
||||||
case CXCursor_StructDecl:
|
case CXCursor_StructDecl:
|
||||||
|
case CXCursor_UnionDecl:
|
||||||
case CXCursor_ClassDecl:
|
case CXCursor_ClassDecl:
|
||||||
|
case CXCursor_EnumDecl:
|
||||||
|
case CXCursor_ObjCInterfaceDecl:
|
||||||
|
case CXCursor_ObjCCategoryDecl:
|
||||||
|
case CXCursor_ObjCImplementationDecl:
|
||||||
|
case CXCursor_Namespace:
|
||||||
return SymbolKind::Type;
|
return SymbolKind::Type;
|
||||||
|
|
||||||
|
default:
|
||||||
|
return SymbolKind::Invalid;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Inverse of libclang/CXIndexDataConsumer.cpp getEntityKindFromSymbolKind
|
// Inverse of libclang/CXIndexDataConsumer.cpp getEntityKindFromSymbolKind
|
||||||
lsSymbolKind GetSymbolKind(CXIdxEntityKind kind) {
|
lsSymbolKind GetSymbolKind(CXIdxEntityKind kind) {
|
||||||
switch (kind) {
|
switch (kind) {
|
||||||
default:
|
case CXIdxEntity_Unexposed:
|
||||||
return lsSymbolKind::Unknown;
|
return lsSymbolKind::Unknown;
|
||||||
|
|
||||||
case CXIdxEntity_Enum:
|
|
||||||
return lsSymbolKind::Enum;
|
|
||||||
case CXIdxEntity_Struct:
|
|
||||||
case CXIdxEntity_Union:
|
|
||||||
return lsSymbolKind::Struct;
|
|
||||||
case CXIdxEntity_CXXTypeAlias:
|
|
||||||
case CXIdxEntity_Typedef:
|
case CXIdxEntity_Typedef:
|
||||||
return lsSymbolKind::TypeAlias;
|
return lsSymbolKind::TypeAlias;
|
||||||
|
|
||||||
case CXIdxEntity_Function:
|
case CXIdxEntity_Function:
|
||||||
return lsSymbolKind::Function;
|
return lsSymbolKind::Function;
|
||||||
case CXIdxEntity_Variable:
|
case CXIdxEntity_Variable:
|
||||||
// Can also be Parameter
|
// Can also be Parameter
|
||||||
return lsSymbolKind::Variable;
|
return lsSymbolKind::Variable;
|
||||||
case CXIdxEntity_Field:
|
case CXIdxEntity_Field:
|
||||||
case CXIdxEntity_ObjCIvar:
|
|
||||||
return lsSymbolKind::Field;
|
return lsSymbolKind::Field;
|
||||||
case CXIdxEntity_EnumConstant:
|
case CXIdxEntity_EnumConstant:
|
||||||
return lsSymbolKind::EnumMember;
|
return lsSymbolKind::EnumMember;
|
||||||
case CXIdxEntity_CXXClass:
|
|
||||||
case CXIdxEntity_ObjCClass:
|
case CXIdxEntity_ObjCClass:
|
||||||
return lsSymbolKind::Class;
|
return lsSymbolKind::Class;
|
||||||
case CXIdxEntity_CXXInterface:
|
|
||||||
case CXIdxEntity_ObjCProtocol:
|
case CXIdxEntity_ObjCProtocol:
|
||||||
return lsSymbolKind::Interface;
|
return lsSymbolKind::Interface;
|
||||||
case CXIdxEntity_ObjCCategory:
|
case CXIdxEntity_ObjCCategory:
|
||||||
return lsSymbolKind::Interface;
|
return lsSymbolKind::Interface;
|
||||||
case CXIdxEntity_CXXInstanceMethod:
|
|
||||||
case CXIdxEntity_ObjCInstanceMethod:
|
case CXIdxEntity_ObjCInstanceMethod:
|
||||||
return lsSymbolKind::Method;
|
return lsSymbolKind::Method;
|
||||||
case CXIdxEntity_ObjCClassMethod:
|
case CXIdxEntity_ObjCClassMethod:
|
||||||
return lsSymbolKind::StaticMethod;
|
return lsSymbolKind::StaticMethod;
|
||||||
case CXIdxEntity_CXXStaticMethod:
|
|
||||||
return lsSymbolKind::StaticMethod;
|
|
||||||
case CXIdxEntity_ObjCProperty:
|
case CXIdxEntity_ObjCProperty:
|
||||||
return lsSymbolKind::Property;
|
return lsSymbolKind::Property;
|
||||||
case CXIdxEntity_CXXStaticVariable:
|
case CXIdxEntity_ObjCIvar:
|
||||||
return lsSymbolKind::Field;
|
return lsSymbolKind::Field;
|
||||||
|
|
||||||
|
case CXIdxEntity_Enum:
|
||||||
|
return lsSymbolKind::Enum;
|
||||||
|
case CXIdxEntity_Struct:
|
||||||
|
case CXIdxEntity_Union:
|
||||||
|
return lsSymbolKind::Struct;
|
||||||
|
|
||||||
|
case CXIdxEntity_CXXClass:
|
||||||
|
return lsSymbolKind::Class;
|
||||||
case CXIdxEntity_CXXNamespace:
|
case CXIdxEntity_CXXNamespace:
|
||||||
return lsSymbolKind::Namespace;
|
return lsSymbolKind::Namespace;
|
||||||
case CXIdxEntity_CXXNamespaceAlias:
|
case CXIdxEntity_CXXNamespaceAlias:
|
||||||
return lsSymbolKind::Namespace;
|
return lsSymbolKind::Namespace;
|
||||||
|
case CXIdxEntity_CXXStaticVariable:
|
||||||
|
return lsSymbolKind::Field;
|
||||||
|
case CXIdxEntity_CXXStaticMethod:
|
||||||
|
return lsSymbolKind::StaticMethod;
|
||||||
|
case CXIdxEntity_CXXInstanceMethod:
|
||||||
|
return lsSymbolKind::Method;
|
||||||
case CXIdxEntity_CXXConstructor:
|
case CXIdxEntity_CXXConstructor:
|
||||||
return lsSymbolKind::Constructor;
|
return lsSymbolKind::Constructor;
|
||||||
case CXIdxEntity_CXXDestructor:
|
case CXIdxEntity_CXXDestructor:
|
||||||
return lsSymbolKind::Method;
|
return lsSymbolKind::Method;
|
||||||
case CXIdxEntity_CXXConversionFunction:
|
case CXIdxEntity_CXXConversionFunction:
|
||||||
return lsSymbolKind::Constructor;
|
return lsSymbolKind::Constructor;
|
||||||
|
case CXIdxEntity_CXXTypeAlias:
|
||||||
|
return lsSymbolKind::TypeAlias;
|
||||||
|
case CXIdxEntity_CXXInterface:
|
||||||
|
return lsSymbolKind::Struct;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -324,10 +324,8 @@ void LaunchStdinLoop(Config* config,
|
|||||||
queue->for_querydb.PushBack(std::move(message));
|
queue->for_querydb.PushBack(std::move(message));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default: {
|
case IpcId::Unknown:
|
||||||
LOG_S(ERROR) << "Unhandled IPC message " << IpcIdToString(method_id);
|
break;
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// If the message was to exit then querydb will take care of the actual
|
// If the message was to exit then querydb will take care of the actual
|
||||||
|
2
wscript
2
wscript
@ -166,7 +166,7 @@ def configure(ctx):
|
|||||||
if ctx.env.CXXFLAGS:
|
if ctx.env.CXXFLAGS:
|
||||||
cxxflags = ctx.env.CXXFLAGS
|
cxxflags = ctx.env.CXXFLAGS
|
||||||
else:
|
else:
|
||||||
cxxflags = ['-g', '-Wall', '-Wno-sign-compare', '-Werror']
|
cxxflags = ['-g', '-Wall', '-Wno-sign-compare']
|
||||||
if ctx.env.CXX_NAME == 'gcc':
|
if ctx.env.CXX_NAME == 'gcc':
|
||||||
cxxflags.append('-Wno-return-type')
|
cxxflags.append('-Wno-return-type')
|
||||||
# Otherwise (void)write(...) => -Werror=unused-result
|
# Otherwise (void)write(...) => -Werror=unused-result
|
||||||
|
Loading…
Reference in New Issue
Block a user