/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/histogram/histogram.gyp
48 строк
1 KB
Richard Lau
build: suppress compiler warnings for histogram
20 июн 2026, 18:05
Не верифицирован
20 июн 2026, 18:05
dcbb21e
Код
Авторство
О чём код?
{ 'variables': { 'histogram_sources': [ 'src/hdr_histogram.c', 'include/hdr/hdr_histogram.h', ] }, 'targets': [ { 'target_name': 'histogram', 'type': 'static_library', 'cflags': ['-fvisibility=hidden'], 'xcode_settings': { 'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden }, 'conditions': [ [ 'clang==1', { 'conditions': [ [ 'OS=="win"', { 'msvs_settings': { 'VCCLCompilerTool': { 'AdditionalOptions': [ '-Wno-atomic-alignment', '-Wno-incompatible-pointer-types', '-Wno-unused-function' ], }, }, }, { 'cflags': [ '-Wno-atomic-alignment', '-Wno-incompatible-pointer-types', '-Wno-unused-function' ], }], ], }], ], 'include_dirs': ['src', 'include'], 'direct_dependent_settings': { 'include_dirs': [ 'src', 'include' ] }, 'sources': [ '<@(histogram_sources)', ] } ] }