<div>My Code is : </div><div>=================================================================<span style="line-height: 1.5;">======</span><span style="line-height: 1.5;">======</span><span style="line-height: 1.5;">======</span><span style="line-height: 1.5;">======</span><span style="line-height: 1.5;">======</span></div><div><div>void *threadRun(void *arg)</div><div>{</div><div>    struct threadParam *param = (struct threadParam *) arg;</div><div>    ClangTool clangTool(*param->cdb, *param->taskList);</div><div>    pthread_mutex_lock(&Global::actionMutex);</div><div><font color="#ff0000">    unique_ptr<FrontendActionFactory> factory = newFrontendActionFactory<GodEyesFrontendAction>(); // Error happens here</font></div><div>    ToolAction* action;</div><div>    if (factory != NULL) {</div><div>        action = factory.get();</div><div>    }</div><div>    pthread_mutex_unlock(&Global::actionMutex);</div><div>    if (factory != NULL) {</div><div>        clangTool.run(action);</div><div>    </div><div>    }</div><div>    return (void*)1;</div><div>}</div></div><div>=================================================================<span style="line-height: 1.5;">======</span><span style="line-height: 1.5;">======</span><span style="line-height: 1.5;">======</span><span style="line-height: 1.5;">======</span><span style="line-height: 1.5;">======</span></div><div>it can compile and link well in clang 3.7, but when I upgrade clang to 5.0 ,  it link fails.  I don't know what's wrong with this;</div><div>Please help me out here.Any idea will be appreciated! thanks!!!</div><div><span style="line-height: 1.5;"><br></span></div><div><span style="line-height: 1.5;">ERROR Message : </span> </div><div>=================================================================<span style="line-height: 1.5;">======</span><span style="line-height: 1.5;">======</span><span style="line-height: 1.5;">======</span><span style="line-height: 1.5;">======</span><span style="line-height: 1.5;">======</span></div><div>Undefined symbols for architecture x86_64:   </div><div>    "typeinfo for clang::ASTConsumer", referenced from:   </div><div>    typeinfo for GodEyesASTConsumer in GodEyes.cpp.o   </div><div>    "typeinfo for clang::ASTFrontendAction", referenced from:   </div><div>    typeinfo for GodEyesFrontendAction in GodEyes.cpp.o   </div><div>    "typeinfo for clang::tooling::FrontendActionFactory", referenced from:   </div><div>    typeinfo for std::__1::unique_ptr<clang::tooling::FrontendActionFactory, std::__1::default_delete<clang::tooling::FrontendActionFactory> >   clang::tooling::newFrontendActionFactory<GodEyesFrontendAction>  ()::SimpleFrontendActionFactory in GodEyes.cpp.o   </div><div>ld: symbol(s) not found for architecture x86_64   </div><div>clang: error: linker command failed with exit code 1 (use -v to see invocation)   </div><div>ninja: build stopped: subcommand failed.   </div><div>=================================================================<span style="line-height: 1.5;">======</span><span style="line-height: 1.5;">======</span><span style="line-height: 1.5;">======</span><span style="line-height: 1.5;">======</span><span style="line-height: 1.5;">======</span><span style="line-height: 1.5;"> </span></div><div><br></div><div><br></div><div>My CMakeLists.txt is as below: </div><div>=================================================================<span style="line-height: 1.5;">=============</span><span style="line-height: 1.5;">=================</span></div><div>cmake_minimum_required (VERSION 2.8) </div><div><br></div><div>project(main)   </div><div>set(main_VERSION 3.1)   </div><div><br></div><div>configure_file (   </div><div>  "${PROJECT_SOURCE_DIR}/config.h.in"   </div><div>  "${PROJECT_SOURCE_DIR}/config.h"   </div><div>  )   </div><div><br></div><div>set(CMAKE_C_COMPILER "/usr/bin/clang")   </div><div>set(CMAKE_CXX_COMPILER "/usr/bin/clang++")   </div><div>set(CMAKE_AR "/usr/bin/llvm-ar")   </div><div>set(CMAKE_LINKER "/usr/bin/llvm-ld")   </div><div>set(CMAKE_NM "/usr/bin/llvm-nm")   </div><div>set(CMAKE_OBJDUMP "/usr/bin/llvm-objdump")   </div><div>set(CMAKE_RANLIB "/usr/bin/llvm-ranlib")   </div><div>set(CLANG_ROOT "/Users/baixx/clang-llvm/build/lib/clang/3.9.0/include")   </div><div>set(LLVM_LINK_COMPONENTS support)   </div><div>set(LLVM_USED_LIBS clangTooling clangBasic clangAST)   </div><div><br></div><div>set(CMAKE_BUILD_TYPE "Release")   </div><div>set(CMAKE_CXX_FLAGS_DEBUG "$ENV{CXXFLAGS} -O0 -Wall -g -ggdb")   </div><div>set(CMAKE_CXX_FLAGS_RELEASE "$ENV{CXXFLAGS} -O3 -Wall -DCMAKE_OSX_ARCHITECTURES=x86_64")   </div><div><br></div><div>aux_source_directory(. DIR_SRCS)   </div><div>aux_source_directory(rules RULE_SRCS)   </div><div>add_executable (main-core ${DIR_SRCS} ${RULE_SRCS})   </div><div>target_link_libraries(main-core clangTooling curl) </div><div>=================================================================<span style="line-height: 1.5;">=============</span><span style="line-height: 1.5;">=============</span><span style="line-height: 1.5;"> </span></div><div><br></div><div>Please help me out here.Any idea will be appreciated! thanks!!! </div>