Last active
January 30, 2023 20:14
-
-
Save WeZZard/70f6a42e06fa22770f38f3c40c9e115c to your computer and use it in GitHub Desktop.
Develop Python 3.x on macOS 13
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
./configure --with-openssl="/opt/homebrew/opt/[email protected]" | |
pushd ../ | |
mkdir cpython-compile-commands -p | |
popd | |
bear --output ../cpython-compile-commands/compile_commands.json -- make | |
compdb -p ../cpython-compile-commands list > ./compile_commands.json | |
mv compile_commands.json ../cpython-compile-commands |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment