PHP 8.0.30
Preview: using_gcc_E_libc.py Size: 797 B
//proc/self/root/opt/alt/python37/share/doc/alt-python37-pycparser/examples/using_gcc_E_libc.py

#-------------------------------------------------------------------------------
# pycparser: using_gcc_E_libc.py
#
# Similar to the using_cpp_libc.py example, but uses 'gcc -E' instead
# of 'cpp'. The same can be achieved with Clang instead of gcc. If you have
# Clang installed, simply replace 'gcc' with 'clang' here.
#
# Copyright (C) 2008-2015, Eli Bendersky
# License: BSD
#-------------------------------------------------------------------------------
import sys


from pycparser import parse_file


if __name__ == "__main__":
    if len(sys.argv) > 1:
        filename  = sys.argv[1]
    else:
        filename = 'examples/c_files/year.c'

    ast = parse_file(filename, use_cpp=True,
            cpp_path='gcc',
            cpp_args=['-E', r'-Iutils/fake_libc_include'])

    ast.show()

Directory Contents

Dirs: 1 × Files: 8

Name Size Perms Modified Actions
c_files DIR
- drwxr-xr-x 2021-10-11 07:55:49
Edit Download
1.42 KB lrw-r--r-- 2021-07-07 23:54:58
Edit Download
3.05 KB lrw-r--r-- 2021-07-07 23:54:58
Edit Download
5.27 KB lrw-r--r-- 2021-07-07 23:54:58
Edit Download
1.08 KB lrw-r--r-- 2021-07-07 23:54:58
Edit Download
1.08 KB lrw-r--r-- 2021-07-07 23:54:58
Edit Download
599 B lrw-r--r-- 2021-07-07 23:54:58
Edit Download
744 B lrw-r--r-- 2021-07-07 23:54:58
Edit Download
797 B lrw-r--r-- 2021-07-07 23:54:58
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).