You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@filcab [07.05.2018 1:15 PM]
You’ll want to explicitly add the target to your libclang command lines. You might want to add -isysroot too. If all else fails, do what I did for ycm and explicitly add the include paths that your compiler searches (check out the output of a compile with -v)
Can be partially worked around by providing -nostdinc++ -isystem /path/to/usr/include -isystem /path/to/cross-gcc/stdlib in compile_commads.json.
Probably those can be added with a commandline adjuster like the one in clang's CommonOptionsParser.cpp.
<string>
in/arm/target/usr/include
instead of/usr/include
limits.h
#include_next
ing/usr/include/limits.h
sizeof
when targeting different bitness (leading tosizeof(long) != SIZE_OF_LONG
)Clue from #llvm
Can be partially worked around by providing
-nostdinc++ -isystem /path/to/usr/include -isystem /path/to/cross-gcc/stdlib
incompile_commads.json
.Probably those can be added with a commandline adjuster like the one in clang's
CommonOptionsParser.cpp
.Another clue.
Once fixed, apply the same to leak-marker.
The text was updated successfully, but these errors were encountered: