For example, the auto_flag=True does not work for clang.
One can disable auto_flag and specify the compiler and linker args manually, e.g.,
cymod = cyper.inline(code,
auto_flag=False,
extra_compile_args=['-fopenmp'],
extra_link_args=['-fopenmp=libiomp5']
)
For example, the
auto_flag=Truedoes not work for clang.One can disable
auto_flagand specify the compiler and linker args manually, e.g.,