Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a debug build of python 3.11 #597

Merged
merged 24 commits into from
Jan 14, 2023
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
500890d
MNT: Updated the feedstock for conda-smithy version 2.1.0.
conda-forge-admin Feb 22, 2017
e88fbae
[ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration
Mar 24, 2020
af7eefe
Removed deprecated CMake functions
nikhilweee Nov 15, 2022
fe8e27d
Added debug and release variants
nikhilweee Nov 15, 2022
bdd2321
corrected build_static directories
nikhilweee Nov 15, 2022
b65653f
Changed DEBUG_PY to PY_INTERP_DEBUG
nikhilweee Nov 15, 2022
1ad7aae
Corrected tests for libpython-static
nikhilweee Nov 15, 2022
3726c33
Skip testing abiflags on Windows
nikhilweee Nov 15, 2022
175bdf1
Publish debug build under a separate label
nikhilweee Nov 15, 2022
7556116
Removed CircleCI from recipe
nikhilweee Nov 16, 2022
255c7be
Bumped build number
nikhilweee Nov 18, 2022
50fbe7b
symlink python binary and libpython to pythond
nikhilweee Nov 19, 2022
c948787
Disable compile time optimizations for debug build
nikhilweee Nov 20, 2022
fc82638
CI messes up windows debug builds
nikhilweee Nov 21, 2022
1c8b515
MNT: Re-rendered with conda-build 3.23.1, conda-smithy 3.22.0, and co…
Nov 22, 2022
e427eb5
Restored conda-forge.yml
nikhilweee Nov 22, 2022
72364f0
MNT: Re-rendered with conda-build 3.23.1, conda-smithy 3.22.0, and co…
Nov 22, 2022
f8f8c06
set dbg_abi to empty string in meta.yaml
nikhilweee Nov 22, 2022
0b1d7ac
FindPythonInterp and FindPythonLibs are still used by other projects
nikhilweee Nov 22, 2022
3ef8520
Check gettotalrefcount on all platforms
nikhilweee Nov 22, 2022
e96ec50
Add run_exports for debug builds
nikhilweee Nov 22, 2022
3719383
Fix includes
isuruf Nov 22, 2022
33a229d
Fix run_exports
isuruf Nov 22, 2022
2db6225
MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and co…
Dec 8, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion recipe/build_base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ if [[ ${PY_INTERP_DEBUG} == yes ]]; then
rm ${PREFIX}/bin/python${VER}
ln -s ${PREFIX}/bin/python${VERABI} ${PREFIX}/bin/python${VER}
ln -s ${PREFIX}/lib/libpython${VERABI}.so ${PREFIX}/lib/libpython${VER}.so
ln -s ${PREFIX}/lib/libpython${VERABI}.so.1.0 ${PREFIX}/lib/libpython${VER}.so.1.0
ln -s ${PREFIX}/include/python${VERABI} ${PREFIX}/include/python${VER}
nikhilweee marked this conversation as resolved.
Show resolved Hide resolved
fi

if [[ "$target_platform" == linux-* ]]; then
nikhilweee marked this conversation as resolved.
Show resolved Hide resolved
Expand Down