Oops, didn't put the #endif in the right place

This commit is contained in:
Alex Lin 2019-11-19 10:59:28 -06:00
parent ce0cdc9636
commit 60a1a0558f

View File

@ -43,13 +43,13 @@ void HeaderSearchDirs::AddCompilerBuiltInSearchDirs () {
icg_dir << LIBCLANG_MAJOR << "." << LIBCLANG_MINOR ;
#ifdef LIBCLANG_PATCHLEVEL
icg_dir << "." << LIBCLANG_PATCHLEVEL ;
#endif
#endif
icg_dir << "/include" ;
char * resolved_path = realpath(icg_dir.str().c_str(), NULL ) ;
if ( resolved_path != NULL ) {
hso.AddPath(resolved_path , clang::frontend::System, IsFramework, IsSysRootRelative);
}
#endif
#endif
fp = popen("${TRICK_HOME}/bin/trick-gte TRICK_CXX" , "r") ;