### Install pycparser from Tarball Source: https://github.com/eliben/pycparser/blob/main/TODO.txt After building, install the package in a new virtual environment using pip to verify installation. ```bash pip install ``` -------------------------------- ### Install pycparser using pip Source: https://github.com/eliben/pycparser/blob/main/README.rst The recommended way to install pycparser is by using pip. This command installs the latest version of the library. ```bash > pip install pycparser ``` -------------------------------- ### Build pycparser Package Source: https://github.com/eliben/pycparser/blob/main/TODO.txt Use 'uv build' to create a distributable package. Ensure AST generation scripts are up-to-date if the AST was modified. ```bash uv build ``` -------------------------------- ### Push Git Tags and Create Release Source: https://github.com/eliben/pycparser/blob/main/TODO.txt Tag the release in git and push tags to GitHub. Create a new GitHub release to document changes. ```bash git push --tags ``` -------------------------------- ### Publish pycparser to PyPI Source: https://github.com/eliben/pycparser/blob/main/TODO.txt Upload the built distribution files to PyPI using 'uv publish'. A token may be required. ```bash uv publish dist/* ``` -------------------------------- ### Generate SQLite Preprocessed File Source: https://github.com/eliben/pycparser/blob/main/utils/benchmark/README.rst Command to generate the preprocessed C file for SQLite using GCC. This is useful for benchmarking parsing speed. ```bash gcc -nostdinc -D'__attribute__(x)=' -E -I. -Isrc/ -I$HOME/eli/pycparser/utils/fake_libc_include src/btree.c ``` -------------------------------- ### Generate Redis Preprocessed File Source: https://github.com/eliben/pycparser/blob/main/utils/benchmark/README.rst Command to generate the preprocessed C file for Redis using GCC. This is useful for benchmarking parsing speed. ```bash gcc -nostdinc -D'__attribute__(x)=' -E -Isrc/ -Ideps/hiredis -Ideps/linenoise -I$HOME/eli/pycparser/utils/fake_libc_include src/redis-cli.c ``` -------------------------------- ### Generate TCC Preprocessed File Source: https://github.com/eliben/pycparser/blob/main/utils/benchmark/README.rst Command to generate the preprocessed C file for TCC using GCC. This is useful for benchmarking parsing speed. ```bash gcc -nostdinc -D'__attribute__(x)=' -E -I. -I$HOME/eli/pycparser/utils/fake_libc_include tccgen.c ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.