访问后台生成的文件
Access files generated in the backend
我是初学者。几天前我开始探索 Pythran 和 Transonic。我了解到 Pythran 从 Python 输入文件生成一个 C++ 文件。我想在后端读取那些C++生成的文件。
你们中有人知道如何访问后台生成的文件吗?
我正在使用 Transonic 的支持来实现 Pythran。
谢谢!
您是否尝试过 运行 带有 --help
选项的 pythran?
...
optional arguments:
-h, --help show this help message and exit
-o OUTPUT_FILE path to generated file. Honors %{ext}.
-P only run the high-level optimizer, do not compile
-E only run the translator, do not compile
...
所以,答案是:使用-E选项
pythran my_python_file.py -E
我是初学者。几天前我开始探索 Pythran 和 Transonic。我了解到 Pythran 从 Python 输入文件生成一个 C++ 文件。我想在后端读取那些C++生成的文件。
你们中有人知道如何访问后台生成的文件吗?
我正在使用 Transonic 的支持来实现 Pythran。
谢谢!
您是否尝试过 运行 带有 --help
选项的 pythran?
...
optional arguments:
-h, --help show this help message and exit
-o OUTPUT_FILE path to generated file. Honors %{ext}.
-P only run the high-level optimizer, do not compile
-E only run the translator, do not compile
...
所以,答案是:使用-E选项
pythran my_python_file.py -E