Rendering C++ generated files in Pythran.
Command to access C++ files in Pythran not working. I'm using the following command:
transonic -b pythran -af="-e" python/compiled_methods.py
Here,
-
-b
: To set pythran as the backend to compile. -
-af
: To access Pythran flags. I used-e
flag to generate C++ code. -
python/compiled_methods.py
: Python file
I want to examine the files generated after compiling the Pythran code. This command runs well but I couldn't found the C++ files. I used find . -name "*.cpp"
command to access C++ file.
How can I access C++ files?
Thanks!