Cython:编译器标志 -O3 似乎已弃用
Cython: compiler flag -O3 seems deprecated
我使用 中提供的详细信息将优化标志设置为 '-o3'
。但是,我有以下问题:
- 如果我将大写字母用作
extra_compile_args=['-O3']
,我会收到警告:
cl : Command line warning D9002 : ignoring unknown option '-O3'
- 如果我将小写字母用作
extra_compile_args=['-o3']
,我会收到警告:
cl : Command line warning D9035 : option 'o' has been deprecated and will be removed in a future release
我该如何解决这个问题?
只有 gcc 和 clang 支持 -O3
标志。由于您似乎使用的是 MSVC 编译器,因此可以使用 /Ox
标志,有关详细信息,请参阅 here。
我使用 '-o3'
。但是,我有以下问题:
- 如果我将大写字母用作
extra_compile_args=['-O3']
,我会收到警告:cl : Command line warning D9002 : ignoring unknown option '-O3'
- 如果我将小写字母用作
extra_compile_args=['-o3']
,我会收到警告:cl : Command line warning D9035 : option 'o' has been deprecated and will be removed in a future release
我该如何解决这个问题?
只有 gcc 和 clang 支持 -O3
标志。由于您似乎使用的是 MSVC 编译器,因此可以使用 /Ox
标志,有关详细信息,请参阅 here。