简体   繁体   中英

How to provide C++ version when extending python

I want to make c++ code callable from python.

https://docs.python.org/3/extending/ explains how to do this, but does not mention how to specify c++ version.

By default distutils calls g++ with a bunch of arguments, however does not provide the version argument. Example of setup.py:

from distutils.core import setup, Extension

MOD = "ext"

module = Extension("Hello", sources = ["hello.cpp"])

setup(
    name="PackageName",
    version="0.01",
    description="desc",
    ext_modules = [module]
)

I'm using linux, if that matters.

You can pass compiler arguments as extra_compile_args so for example

module = Extension(
  "Hello",
  sources = ["hello.cpp"],
  extra_compile_args = ["-std=c++20"]
)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM