├── .azure-pipelines ├── azure-pipelines-linux.yml └── azure-pipelines-osx.yml ├── .ci_support ├── README ├── linux_64_python3.10.____cpython.yaml ├── linux_64_python3.11.____cpython.yaml ├── linux_64_python3.12.____cpython.yaml ├── linux_64_python3.13.____cp313.yaml ├── linux_64_python3.14.____cp314.yaml ├── linux_aarch64_python3.10.____cpython.yaml ├── linux_aarch64_python3.11.____cpython.yaml ├── linux_aarch64_python3.12.____cpython.yaml ├── linux_aarch64_python3.13.____cp313.yaml ├── linux_aarch64_python3.14.____cp314.yaml ├── linux_ppc64le_python3.10.____cpython.yaml ├── linux_ppc64le_python3.11.____cpython.yaml ├── linux_ppc64le_python3.12.____cpython.yaml ├── linux_ppc64le_python3.13.____cp313.yaml ├── linux_ppc64le_python3.14.____cp314.yaml ├── migrations │ ├── python314.yaml │ └── xz_to_liblzma_devel.yaml ├── osx_64_python3.10.____cpython.yaml ├── osx_64_python3.11.____cpython.yaml ├── osx_64_python3.12.____cpython.yaml ├── osx_64_python3.13.____cp313.yaml ├── osx_64_python3.14.____cp314.yaml ├── osx_arm64_python3.10.____cpython.yaml ├── osx_arm64_python3.11.____cpython.yaml ├── osx_arm64_python3.12.____cpython.yaml ├── osx_arm64_python3.13.____cp313.yaml └── osx_arm64_python3.14.____cp314.yaml ├── .circleci └── config.yml ├── .gitattributes ├── .github └── CODEOWNERS ├── .gitignore ├── .scripts ├── build_steps.sh ├── logging_utils.sh ├── run_docker_build.sh └── run_osx_build.sh ├── LICENSE.txt ├── README.md ├── azure-pipelines.yml ├── conda-forge.yml └── recipe ├── 0001-gdb-darwin-remove-not-so-harmless-spurious-call-to-w.patch ├── 0002-gdb-darwin-skip-over-WIFSTOPPED-wait4-status.patch ├── README.md ├── activate.sh ├── build.sh ├── macos-codesign ├── gdb-entitlement.xml ├── macos-codesign-gdb.sh ├── macos-setup-codesign.sh ├── macos-setup-codesign.sh.patch └── macos-show-caveats.sh ├── meta.yaml ├── post-link.sh ├── run_test.sh └── testing ├── hello.c └── process_to_debug.py /.azure-pipelines/azure-pipelines-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.azure-pipelines/azure-pipelines-linux.yml -------------------------------------------------------------------------------- /.azure-pipelines/azure-pipelines-osx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.azure-pipelines/azure-pipelines-osx.yml -------------------------------------------------------------------------------- /.ci_support/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/README -------------------------------------------------------------------------------- /.ci_support/linux_64_python3.10.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/linux_64_python3.10.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_python3.11.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/linux_64_python3.11.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_python3.12.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/linux_64_python3.12.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_python3.13.____cp313.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/linux_64_python3.13.____cp313.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_python3.14.____cp314.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/linux_64_python3.14.____cp314.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_python3.10.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/linux_aarch64_python3.10.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_python3.11.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/linux_aarch64_python3.11.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_python3.12.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/linux_aarch64_python3.12.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_python3.13.____cp313.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/linux_aarch64_python3.13.____cp313.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_python3.14.____cp314.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/linux_aarch64_python3.14.____cp314.yaml -------------------------------------------------------------------------------- /.ci_support/linux_ppc64le_python3.10.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/linux_ppc64le_python3.10.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_ppc64le_python3.11.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/linux_ppc64le_python3.11.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_ppc64le_python3.12.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/linux_ppc64le_python3.12.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/linux_ppc64le_python3.13.____cp313.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/linux_ppc64le_python3.13.____cp313.yaml -------------------------------------------------------------------------------- /.ci_support/linux_ppc64le_python3.14.____cp314.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/linux_ppc64le_python3.14.____cp314.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/python314.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/migrations/python314.yaml -------------------------------------------------------------------------------- /.ci_support/migrations/xz_to_liblzma_devel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/migrations/xz_to_liblzma_devel.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.10.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/osx_64_python3.10.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.11.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/osx_64_python3.11.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.12.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/osx_64_python3.12.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.13.____cp313.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/osx_64_python3.13.____cp313.yaml -------------------------------------------------------------------------------- /.ci_support/osx_64_python3.14.____cp314.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/osx_64_python3.14.____cp314.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.10.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/osx_arm64_python3.10.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.11.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/osx_arm64_python3.11.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.12.____cpython.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/osx_arm64_python3.12.____cpython.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.13.____cp313.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/osx_arm64_python3.13.____cp313.yaml -------------------------------------------------------------------------------- /.ci_support/osx_arm64_python3.14.____cp314.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.ci_support/osx_arm64_python3.14.____cp314.yaml -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.gitignore -------------------------------------------------------------------------------- /.scripts/build_steps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.scripts/build_steps.sh -------------------------------------------------------------------------------- /.scripts/logging_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.scripts/logging_utils.sh -------------------------------------------------------------------------------- /.scripts/run_docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.scripts/run_docker_build.sh -------------------------------------------------------------------------------- /.scripts/run_osx_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/.scripts/run_osx_build.sh -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /conda-forge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/conda-forge.yml -------------------------------------------------------------------------------- /recipe/0001-gdb-darwin-remove-not-so-harmless-spurious-call-to-w.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/recipe/0001-gdb-darwin-remove-not-so-harmless-spurious-call-to-w.patch -------------------------------------------------------------------------------- /recipe/0002-gdb-darwin-skip-over-WIFSTOPPED-wait4-status.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/recipe/0002-gdb-darwin-skip-over-WIFSTOPPED-wait4-status.patch -------------------------------------------------------------------------------- /recipe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/recipe/README.md -------------------------------------------------------------------------------- /recipe/activate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/recipe/activate.sh -------------------------------------------------------------------------------- /recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/recipe/build.sh -------------------------------------------------------------------------------- /recipe/macos-codesign/gdb-entitlement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/recipe/macos-codesign/gdb-entitlement.xml -------------------------------------------------------------------------------- /recipe/macos-codesign/macos-codesign-gdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/recipe/macos-codesign/macos-codesign-gdb.sh -------------------------------------------------------------------------------- /recipe/macos-codesign/macos-setup-codesign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/recipe/macos-codesign/macos-setup-codesign.sh -------------------------------------------------------------------------------- /recipe/macos-codesign/macos-setup-codesign.sh.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/recipe/macos-codesign/macos-setup-codesign.sh.patch -------------------------------------------------------------------------------- /recipe/macos-codesign/macos-show-caveats.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cat $CONDA_PREFIX/etc/gdb/.messages.txt 4 | -------------------------------------------------------------------------------- /recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/recipe/meta.yaml -------------------------------------------------------------------------------- /recipe/post-link.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/recipe/post-link.sh -------------------------------------------------------------------------------- /recipe/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/recipe/run_test.sh -------------------------------------------------------------------------------- /recipe/testing/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/recipe/testing/hello.c -------------------------------------------------------------------------------- /recipe/testing/process_to_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/gdb-feedstock/HEAD/recipe/testing/process_to_debug.py --------------------------------------------------------------------------------