search for: clangast

Displaying 20 results from an estimated 21 matches for "clangast".

2019 Oct 31
2
Recent LLVM Build Attempt -- obj.ClangAST.vcxproj Failed to Build
I hope I'm not being too presumptuous or anything when I say this: could you guys please review the obj.ClangAST.vcxproj project and try to fix the ambiguity error? Reid asked me why I'm using C++17. I just want to use the latest released standard. Most if it still compiles anyway. So I'll stick with it. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lis...
2019 Oct 30
2
Recent LLVM Build Attempt -- obj.ClangAST.vcxproj Failed to Build
I configured with this command: " cmake ../llvm -G"Visual Studio 16 2019" -A Win32 -Thost=x64 -DLLVM_ENABLE_EH=ON -DCMAKE_BUILD_TYPE=Release -DLLVM_USE_CRT_RELEASE=MT -DLLVM_ENABLE_RTTI=ON -DLLVM_ENABLE_PROJECTS="clang;clang-tools-extra;lld;libcxx;libcxxabi" -DCMAKE_CXX_FLAGS="/permissive- /D_SILENCE_ALL_CXX17_DEPRECATION_WARNINGS" -DCMAKE_CXX_STANDARD=17 "
2019 Jan 09
4
Problems trying to build LLVM
...n into a few new problems. First, I discovered that I need the Z3 theorem prover. Unsure why this problem did not show up before. Second, I'm running into many errors like this: CMake Error at cmake/modules/AddLLVM.cmake:570 (target_link_libraries): Attempt to add link library "clangAST" to target "clangApplyReplacements" which is not built in this directory. Call Stack (most recent call first): tools/clang/cmake/modules/AddClang.cmake:86 (llvm_add_library) tools/extra/clang-apply-replacements/CMakeLists.txt:5 (add_clang_library) Getting LLVM...
2016 Feb 28
4
[cfe-dev] [3.8 Release] We have branched
...t target ClangAttrSpellingListIndex [ 44%] Built target ClangAttrParsedAttrImpl [ 44%] Built target ClangAttrPCHRead [ 44%] Built target ClangAttrPCHWrite [ 48%] Built target clang-headers [ 49%] Built target clangBasic [ 50%] Built target clangLex [ 50%] Built target clangParse [ 53%] Built target clangAST [ 54%] Built target clangAnalysis [ 56%] Built target clangSema [ 59%] Built target clangCodeGen [ 59%] Built target clangEdit [ 60%] Built target clangRewrite [ 62%] Built target clangARCMigrate [ 62%] Built target ClangDriverOptions [ 63%] Built target clangDriver [ 63%] Built target clangSeriali...
2009 Aug 28
1
[LLVMdev] Building an external lib with the LLVM build system
...upled to clang and LLVM. This lib provides a single external function only which is then used by my actual application (a QT project). Of course the clangAddons lib needs to be compiled using the LLVM build infrastructure to get all the compiler flags right (you can see it as a lib similiar to clangAST aso.). I'm now running in heavy trouble while organizing the project in a configureable way. In my intial solution the clangAddons lib resides in a sub-directory of my main project (the QT app) as it does in my SVN. However I'm not able to build from there since the line PROJ_SRC_DIR...
2016 Feb 29
0
[cfe-dev] [3.8 Release] We have branched
...t target ClangAttrSpellingListIndex [ 44%] Built target ClangAttrParsedAttrImpl [ 44%] Built target ClangAttrPCHRead [ 44%] Built target ClangAttrPCHWrite [ 48%] Built target clang-headers [ 49%] Built target clangBasic [ 50%] Built target clangLex [ 50%] Built target clangParse [ 53%] Built target clangAST [ 54%] Built target clangAnalysis [ 56%] Built target clangSema [ 59%] Built target clangCodeGen [ 59%] Built target clangEdit [ 60%] Built target clangRewrite [ 62%] Built target clangARCMigrate [ 62%] Built target ClangDriverOptions [ 63%] Built target clangDriver [ 63%] Built target clangSeriali...
2020 Sep 27
3
How to add a new clang-tidy module
....cpp + MISRATidyModule.cpp + LINK_LIBS + clangTidy + clangTidyBugproneModule + clangTidyGoogleModule + clangTidyMiscModule + clangTidyPerformanceModule + clangTidyReadabilityModule + clangTidyUtils + + DEPENDS + omp_gen +) + +clang_target_link_libraries(clangTidyMISRAModule + PRIVATE + clangAST + clangASTMatchers + clangBasic + clangLex + ) diff --git a/clang-tools-extra/clang-tidy/misra/M011Check.cpp b/clang-tools-extra/clang-tidy/misra/M011Check.cpp new file mode 100644 index 00000000000..ebc0ba3bbe0 --- /dev/null +++ b/clang-tools-extra/clang-tidy/misra/M011Check.cpp @@ -0,0 +1,37...
2016 Feb 29
0
[cfe-dev] [3.8 Release] We have branched
...t target ClangAttrSpellingListIndex [ 44%] Built target ClangAttrParsedAttrImpl [ 44%] Built target ClangAttrPCHRead [ 44%] Built target ClangAttrPCHWrite [ 48%] Built target clang-headers [ 49%] Built target clangBasic [ 50%] Built target clangLex [ 50%] Built target clangParse [ 53%] Built target clangAST [ 54%] Built target clangAnalysis [ 56%] Built target clangSema [ 59%] Built target clangCodeGen [ 59%] Built target clangEdit [ 60%] Built target clangRewrite [ 62%] Built target clangARCMigrate [ 62%] Built target ClangDriverOptions [ 63%] Built target clangDriver [ 63%] Built target clangSeriali...
2015 Jul 22
2
[LLVMdev] (no subject)
Hello, I have tried a lot fix this error but am not able to can you please find me a solution am trying to compile the SAFECode in Cygwin Environment to work for windows. used make -j4 command to make the files in cygwin i have got this error make[5]: Leaving directory '/home/uidr7475/Work/LLVM_OBJ/projects/safecode/tools/clang/include' /usr/bin/cp: cannot stat
2012 Oct 10
0
[LLVMdev] [cfe-dev] OpenMP support in CLANG: A proposal
...nsible for all syntax analysis and syntax errors checking and reporting (if any). Clang Semantic Analyzer is responsible for all semantic analysis and semantic errors checking and reporting (if any). All the ASTs classes are defined and implemented within Clang AST manager component (clangAST.a) with all the additional supporting implementation for AST visiting, AST writing, AST reading, etc. Finally, CodeGen component of Clang (clangCodeGen.a) implements all the AST lowering routines. -. During the initialization of Clang compiler proper before processing a translation uni...
2017 Jun 28
2
Building llvm with clang and lld on arm and the llvm arm backend relocation on position independent code
...ngAttrParsedAttrList [ 59%] Built target ClangAttrParsedAttrImpl [ 59%] Built target ClangAttrTemplateInstantiate [ 59%] Built target ClangAttrPCHRead [ 59%] Built target ClangAttrPCHWrite [ 60%] Built target clangBasic [ 62%] Built target clangLex [ 62%] Built target clangParse [ 63%] Built target clangAST [ 63%] Built target clangASTMatchers [ 63%] Built target clangDynamicASTMatchers [ 65%] Built target clangSema [ 67%] Built target clangCodeGen [ 68%] Built target clangAnalysis [ 68%] Built target clangEdit [ 70%] Built target clangRewrite [ 72%] Built target clangARCMigrate [ 72%] Built target Cl...
2017 Jun 28
3
Building llvm with clang and lld on arm and the llvm arm backend relocation on position independent code
...l >> [ 59%] Built target ClangAttrTemplateInstantiate >> [ 59%] Built target ClangAttrPCHRead >> [ 59%] Built target ClangAttrPCHWrite >> [ 60%] Built target clangBasic >> [ 62%] Built target clangLex >> [ 62%] Built target clangParse >> [ 63%] Built target clangAST >> [ 63%] Built target clangASTMatchers >> [ 63%] Built target clangDynamicASTMatchers >> [ 65%] Built target clangSema >> [ 67%] Built target clangCodeGen >> [ 68%] Built target clangAnalysis >> [ 68%] Built target clangEdit >> [ 70%] Built target clangRew...
2012 Oct 10
2
[LLVMdev] [cfe-dev] OpenMP support in CLANG: A proposal
On Wed, Oct 10, 2012 at 5:40 AM, Eli Friedman <eli.friedman at gmail.com>wrote: > On Tue, Oct 9, 2012 at 4:37 AM, Mahesha HS <mahesha.llvm at gmail.com> wrote: > > Hello All, > > > > We would like to make a proposal to support OpenMP in CLANG. The goal of > > this effort is to provide support for syntax > > > > analysis (parsing), semantic
2017 Jun 28
3
Building llvm with clang and lld on arm and the llvm arm backend relocation on position independent code
...Instantiate >>> [ 59%] Built target ClangAttrPCHRead >>> [ 59%] Built target ClangAttrPCHWrite >>> [ 60%] Built target clangBasic >>> [ 62%] Built target clangLex >>> [ 62%] Built target clangParse >>> [ 63%] Built target clangAST >>> [ 63%] Built target clangASTMatchers >>> [ 63%] Built target clangDynamicASTMatchers >>> [ 65%] Built target clangSema >>> [ 67%] Built target clangCodeGen >>> [ 68%] Built target clangAnalysis >>> [ 68%] Built target...
2017 Jun 28
2
Building llvm with clang and lld on arm and the llvm arm backend relocation on position independent code
...>> [ 59%] Built target ClangAttrPCHRead >>>> [ 59%] Built target ClangAttrPCHWrite >>>> [ 60%] Built target clangBasic >>>> [ 62%] Built target clangLex >>>> [ 62%] Built target clangParse >>>> [ 63%] Built target clangAST >>>> [ 63%] Built target clangASTMatchers >>>> [ 63%] Built target clangDynamicASTMatchers >>>> [ 65%] Built target clangSema >>>> [ 67%] Built target clangCodeGen >>>> [ 68%] Built target clangAnalysis >>>...
2017 Jun 30
3
Building llvm with clang and lld on arm and the llvm arm backend relocation on position independent code
...t target ClangAttrPCHRead >>>>>> [ 59%] Built target ClangAttrPCHWrite >>>>>> [ 60%] Built target clangBasic >>>>>> [ 62%] Built target clangLex >>>>>> [ 62%] Built target clangParse >>>>>> [ 63%] Built target clangAST >>>>>> [ 63%] Built target clangASTMatchers >>>>>> [ 63%] Built target clangDynamicASTMatchers >>>>>> [ 65%] Built target clangSema >>>>>> [ 67%] Built target clangCodeGen >>>>>> [ 68%] Built target clangAnaly...
2017 Feb 11
2
Asan self host problems: Failed to deallocate
Trying to run a self host "ninja check-clang" with ASan enabled I hit a /lot/ of errors like this (strangely I hit none of these in check-llvm, only in check-clang): Any ideas? ==10525==ERROR: AddressSanitizer failed to deallocate 0x10800 (67584) bytes at address 0x631000014800 ==10525==AddressSanitizer CHECK failed:
2017 Feb 15
2
Asan self host problems: Failed to deallocate
...program. SWIG_EXECUTABLE:FILEPATH=/usr/bin/swig2.0 //Swig version SWIG_VERSION:STRING=2.0.11 //Dependencies for target SampleAnalyzerPlugin_LIB_DEPENDS:STATIC= //Plist name TOOL_INFO_PLIST:STRING=Info.plist //Dependencies for target clangARCMigrate_LIB_DEPENDS:STATIC= //Dependencies for target clangASTMatchers_LIB_DEPENDS:STATIC= //Dependencies for target clangAST_LIB_DEPENDS:STATIC= //Dependencies for target clangAnalysis_LIB_DEPENDS:STATIC= //Dependencies for target clangApplyReplacements_LIB_DEPENDS:STATIC= //Dependencies for target clangBasic_LIB_DEPENDS:STATIC= //Dependencies for target...
2017 Jun 27
3
Building llvm with clang and lld on arm and the llvm arm backend relocation on position independent code
> On 26 Jun 2017, at 16:25, Rui Ueyama <ruiu at google.com> wrote: > > On Sun, Jun 25, 2017 at 6:40 AM, Alessandro Pistocchi via llvm-dev <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote: > Hi, > > I am trying to build a completely GNU free linux toolchain for the raspberry pi. > > I successfully managed to compile llvm and clang
2016 Mar 17
2
Building with LLVM_PARALLEL_XXX_JOBS
On Mon, Mar 14, 2016 at 5:30 PM, Chris Bieneman <cbieneman at apple.com> wrote: [ brutal-snip ] ... > [ TODO#S: Before doing a 2nd build (and in a 3rd run using more > optimized binaries) ] > > How do I anable LTO via CMAKE? > > > LLVM_ENALBLE_LTO=On > [ v4 of my build-script attached ] Hi Chris, thanks for the response! That seems to work (see below). $ cd