1

gyp 有没有办法只为某些源文件启用某些 cflags?

此错误的上下文中,我想找到一种方法来编译一些启用了某些 SSE 功能的代码,而其他代码(在运行时检测所述功能的可用性并提供回退)不应该使用这些功能在优化过程中。

通常,我发现 node-gyp 文档完全不够。

4

1 回答 1

2

作为解决方法,您可以在 .GYP 文件中使用特定的 cflags 创建一个静态库目标,然后根据某些条件将此静态库链接到您的主目标。

{
   'variables: {
       'use_sse4%': 0, # may be redefined in command line on configuration stage
   },
   'targets: [
       # SSE4 specific target
       {
           'target_name': 'sse4_arch',
           'type': 'static_library',
           'sources': ['sse4_code.cpp'],
           'cflags': ['-msse4.2'],
       },
       # Non SSE4 code
       {
           'target_name': 'generic_arch',
           'type': 'static_library',
           'sources': ['generic_code.cpp'],
       },
       # Your main target
       {
           'target_name': 'main_target',               
           'conditions': [
               ['use_sse4==1', # conditional dependency on the `use_ss4` variable
                   { 'dependencies': ['sse4_arch'] },   # true branch
                   { 'dependencies': ['generic_arch'] } # false branch
               ],
           ],
       },  
   ],
}

有关依赖项、变量和条件的更多详细信息,请参见GYP 文档

于 2015-09-04T06:20:37.630 回答