HomeSort by: relevance | last modified time | path
    Searched defs:_isGCC (Results 1 - 1 of 1) sorted by relevancy

  /src/external/apache2/llvm/dist/libcxx/utils/libcxx/test/
features.py 16 _isGCC = lambda cfg: '__GNUC__' in compilerMacros(cfg) and '__clang__' not in compilerMacros(cfg)
82 Feature(name='gcc', when=_isGCC),
83 Feature(name=lambda cfg: 'gcc-{__GNUC__}'.format(**compilerMacros(cfg)), when=_isGCC),
84 Feature(name=lambda cfg: 'gcc-{__GNUC__}.{__GNUC_MINOR__}'.format(**compilerMacros(cfg)), when=_isGCC),
85 Feature(name=lambda cfg: 'gcc-{__GNUC__}.{__GNUC_MINOR__}.{__GNUC_PATCHLEVEL__}'.format(**compilerMacros(cfg)), when=_isGCC),

Completed in 17 milliseconds