├── .editorconfig ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .vscode └── settings.json ├── CODEOWNERS ├── README.md ├── _tools ├── docker-entrypoint.sh └── linux-aarch64.Dockerfile ├── arcanist ├── README.md ├── build.sh └── meta.yaml ├── aws-vault ├── README.md ├── build.sh └── meta.yaml ├── chamber ├── README.md ├── build.sh └── meta.yaml ├── circleci-cli ├── README.md ├── build.sh └── meta.yaml ├── clickhouse ├── build.sh └── meta.yaml ├── cmake ├── README.md ├── SSLTest.cmake ├── bld.bat ├── build.sh ├── conda_build_config.yaml ├── meta.yaml └── patches │ └── git │ └── 0001-Add-more-debug-logging-to-cmFindCommon.patch ├── cpputest ├── 0001-Re-run-autogen.sh.patch ├── README.md ├── activate.sh ├── build.sh ├── conda_build_config.yaml ├── deactivate.sh └── meta.yaml ├── docker-compose ├── README.md ├── build.sh └── meta.yaml ├── eclint ├── build.sh └── meta.yaml ├── elfutils ├── README.md ├── build.sh ├── conda_build_config.yaml ├── meta.yaml ├── run_test.sh └── test_libdwarf.c ├── environment.yml ├── gcc-arm-none-eabi ├── README.md ├── bld.bat ├── build.sh └── meta.yaml ├── gdb-multi-arch ├── README.md ├── build.sh ├── conda_build_config.yaml ├── fix-disassemble-segfault.patch ├── mac-build-fix.patch └── meta.yaml ├── gdb-xtensa-esp32-elf ├── README.md ├── build.sh ├── conda_build_config.yaml ├── meta.yaml ├── xtensa-esp32-elf-gdb ├── xtensa-esp32s2-elf-gdb └── xtensa-esp32s3-elf-gdb ├── gdb-xtensa-lx106-elf ├── README.md ├── backtrace-fix.patch ├── build.sh ├── conda_build_config.yaml ├── fix-disassemble-segfault.patch └── meta.yaml ├── gitleaks ├── README.md ├── build.sh └── meta.yaml ├── go-shfmt ├── build.sh └── meta.yaml ├── memfault-config ├── README.md ├── activate.sh ├── build.sh ├── condarc ├── deactivate.sh └── meta.yaml ├── memfault-ecs-cli ├── README.md ├── build.sh └── meta.yaml ├── mkcert ├── build.sh └── meta.yaml ├── overmind ├── build.sh └── meta.yaml ├── please ├── build.sh └── meta.yaml ├── retrace ├── README.md ├── build.sh └── meta.yaml ├── terragrunt ├── conda_build_config.yaml └── meta.yaml ├── volta ├── README.md ├── activate.sh ├── build.sh ├── deactivate.sh └── meta.yaml └── xpack-gcc-arm-none-eabi ├── README.md ├── bld.bat ├── build.sh └── meta.yaml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true, 3 | } 4 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @memfault/owners-infra @noahp 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/README.md -------------------------------------------------------------------------------- /_tools/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/_tools/docker-entrypoint.sh -------------------------------------------------------------------------------- /_tools/linux-aarch64.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/_tools/linux-aarch64.Dockerfile -------------------------------------------------------------------------------- /arcanist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/arcanist/README.md -------------------------------------------------------------------------------- /arcanist/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/arcanist/build.sh -------------------------------------------------------------------------------- /arcanist/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/arcanist/meta.yaml -------------------------------------------------------------------------------- /aws-vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/aws-vault/README.md -------------------------------------------------------------------------------- /aws-vault/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/aws-vault/build.sh -------------------------------------------------------------------------------- /aws-vault/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/aws-vault/meta.yaml -------------------------------------------------------------------------------- /chamber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/chamber/README.md -------------------------------------------------------------------------------- /chamber/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/chamber/build.sh -------------------------------------------------------------------------------- /chamber/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/chamber/meta.yaml -------------------------------------------------------------------------------- /circleci-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/circleci-cli/README.md -------------------------------------------------------------------------------- /circleci-cli/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/circleci-cli/build.sh -------------------------------------------------------------------------------- /circleci-cli/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/circleci-cli/meta.yaml -------------------------------------------------------------------------------- /clickhouse/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/clickhouse/build.sh -------------------------------------------------------------------------------- /clickhouse/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/clickhouse/meta.yaml -------------------------------------------------------------------------------- /cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/cmake/README.md -------------------------------------------------------------------------------- /cmake/SSLTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/cmake/SSLTest.cmake -------------------------------------------------------------------------------- /cmake/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/cmake/bld.bat -------------------------------------------------------------------------------- /cmake/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/cmake/build.sh -------------------------------------------------------------------------------- /cmake/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/cmake/conda_build_config.yaml -------------------------------------------------------------------------------- /cmake/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/cmake/meta.yaml -------------------------------------------------------------------------------- /cmake/patches/git/0001-Add-more-debug-logging-to-cmFindCommon.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/cmake/patches/git/0001-Add-more-debug-logging-to-cmFindCommon.patch -------------------------------------------------------------------------------- /cpputest/0001-Re-run-autogen.sh.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/cpputest/0001-Re-run-autogen.sh.patch -------------------------------------------------------------------------------- /cpputest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/cpputest/README.md -------------------------------------------------------------------------------- /cpputest/activate.sh: -------------------------------------------------------------------------------- 1 | export CPPUTEST_HOME="$CONDA_PREFIX" 2 | -------------------------------------------------------------------------------- /cpputest/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/cpputest/build.sh -------------------------------------------------------------------------------- /cpputest/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/cpputest/conda_build_config.yaml -------------------------------------------------------------------------------- /cpputest/deactivate.sh: -------------------------------------------------------------------------------- 1 | unset CPPUTEST_HOME 2 | -------------------------------------------------------------------------------- /cpputest/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/cpputest/meta.yaml -------------------------------------------------------------------------------- /docker-compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/docker-compose/README.md -------------------------------------------------------------------------------- /docker-compose/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/docker-compose/build.sh -------------------------------------------------------------------------------- /docker-compose/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/docker-compose/meta.yaml -------------------------------------------------------------------------------- /eclint/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/eclint/build.sh -------------------------------------------------------------------------------- /eclint/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/eclint/meta.yaml -------------------------------------------------------------------------------- /elfutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/elfutils/README.md -------------------------------------------------------------------------------- /elfutils/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/elfutils/build.sh -------------------------------------------------------------------------------- /elfutils/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/elfutils/conda_build_config.yaml -------------------------------------------------------------------------------- /elfutils/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/elfutils/meta.yaml -------------------------------------------------------------------------------- /elfutils/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/elfutils/run_test.sh -------------------------------------------------------------------------------- /elfutils/test_libdwarf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/elfutils/test_libdwarf.c -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/environment.yml -------------------------------------------------------------------------------- /gcc-arm-none-eabi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/gcc-arm-none-eabi/README.md -------------------------------------------------------------------------------- /gcc-arm-none-eabi/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/gcc-arm-none-eabi/bld.bat -------------------------------------------------------------------------------- /gcc-arm-none-eabi/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/gcc-arm-none-eabi/build.sh -------------------------------------------------------------------------------- /gcc-arm-none-eabi/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/gcc-arm-none-eabi/meta.yaml -------------------------------------------------------------------------------- /gdb-multi-arch/README.md: -------------------------------------------------------------------------------- 1 | This builds a multi-arch `gdb` binary and some extra binutils. 2 | -------------------------------------------------------------------------------- /gdb-multi-arch/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/gdb-multi-arch/build.sh -------------------------------------------------------------------------------- /gdb-multi-arch/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/gdb-multi-arch/conda_build_config.yaml -------------------------------------------------------------------------------- /gdb-multi-arch/fix-disassemble-segfault.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/gdb-multi-arch/fix-disassemble-segfault.patch -------------------------------------------------------------------------------- /gdb-multi-arch/mac-build-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/gdb-multi-arch/mac-build-fix.patch -------------------------------------------------------------------------------- /gdb-multi-arch/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/gdb-multi-arch/meta.yaml -------------------------------------------------------------------------------- /gdb-xtensa-esp32-elf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/gdb-xtensa-esp32-elf/README.md -------------------------------------------------------------------------------- /gdb-xtensa-esp32-elf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/gdb-xtensa-esp32-elf/build.sh -------------------------------------------------------------------------------- /gdb-xtensa-esp32-elf/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/gdb-xtensa-esp32-elf/conda_build_config.yaml -------------------------------------------------------------------------------- /gdb-xtensa-esp32-elf/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/gdb-xtensa-esp32-elf/meta.yaml -------------------------------------------------------------------------------- /gdb-xtensa-esp32-elf/xtensa-esp32-elf-gdb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | xtensa-esp-elf-gdb --mcpu=esp32 "$@" 4 | -------------------------------------------------------------------------------- /gdb-xtensa-esp32-elf/xtensa-esp32s2-elf-gdb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | xtensa-esp-elf-gdb --mcpu=esp32s2 "$@" 4 | -------------------------------------------------------------------------------- /gdb-xtensa-esp32-elf/xtensa-esp32s3-elf-gdb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | xtensa-esp-elf-gdb --mcpu=esp32s3 "$@" 4 | -------------------------------------------------------------------------------- /gdb-xtensa-lx106-elf/README.md: -------------------------------------------------------------------------------- 1 | This builds the `xtensa-lx106-elf-gdb` binary. 2 | -------------------------------------------------------------------------------- /gdb-xtensa-lx106-elf/backtrace-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/gdb-xtensa-lx106-elf/backtrace-fix.patch -------------------------------------------------------------------------------- /gdb-xtensa-lx106-elf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/gdb-xtensa-lx106-elf/build.sh -------------------------------------------------------------------------------- /gdb-xtensa-lx106-elf/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/gdb-xtensa-lx106-elf/conda_build_config.yaml -------------------------------------------------------------------------------- /gdb-xtensa-lx106-elf/fix-disassemble-segfault.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/gdb-xtensa-lx106-elf/fix-disassemble-segfault.patch -------------------------------------------------------------------------------- /gdb-xtensa-lx106-elf/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/gdb-xtensa-lx106-elf/meta.yaml -------------------------------------------------------------------------------- /gitleaks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/gitleaks/README.md -------------------------------------------------------------------------------- /gitleaks/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/gitleaks/build.sh -------------------------------------------------------------------------------- /gitleaks/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/gitleaks/meta.yaml -------------------------------------------------------------------------------- /go-shfmt/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/go-shfmt/build.sh -------------------------------------------------------------------------------- /go-shfmt/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/go-shfmt/meta.yaml -------------------------------------------------------------------------------- /memfault-config/README.md: -------------------------------------------------------------------------------- 1 | Probably not useful for public consumption. 2 | -------------------------------------------------------------------------------- /memfault-config/activate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/memfault-config/activate.sh -------------------------------------------------------------------------------- /memfault-config/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/memfault-config/build.sh -------------------------------------------------------------------------------- /memfault-config/condarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/memfault-config/condarc -------------------------------------------------------------------------------- /memfault-config/deactivate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/memfault-config/deactivate.sh -------------------------------------------------------------------------------- /memfault-config/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/memfault-config/meta.yaml -------------------------------------------------------------------------------- /memfault-ecs-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/memfault-ecs-cli/README.md -------------------------------------------------------------------------------- /memfault-ecs-cli/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/memfault-ecs-cli/build.sh -------------------------------------------------------------------------------- /memfault-ecs-cli/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/memfault-ecs-cli/meta.yaml -------------------------------------------------------------------------------- /mkcert/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/mkcert/build.sh -------------------------------------------------------------------------------- /mkcert/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/mkcert/meta.yaml -------------------------------------------------------------------------------- /overmind/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/overmind/build.sh -------------------------------------------------------------------------------- /overmind/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/overmind/meta.yaml -------------------------------------------------------------------------------- /please/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/please/build.sh -------------------------------------------------------------------------------- /please/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/please/meta.yaml -------------------------------------------------------------------------------- /retrace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/retrace/README.md -------------------------------------------------------------------------------- /retrace/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/retrace/build.sh -------------------------------------------------------------------------------- /retrace/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/retrace/meta.yaml -------------------------------------------------------------------------------- /terragrunt/conda_build_config.yaml: -------------------------------------------------------------------------------- 1 | go_compiler: 2 | - go-nocgo 3 | -------------------------------------------------------------------------------- /terragrunt/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/terragrunt/meta.yaml -------------------------------------------------------------------------------- /volta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/volta/README.md -------------------------------------------------------------------------------- /volta/activate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/volta/activate.sh -------------------------------------------------------------------------------- /volta/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/volta/build.sh -------------------------------------------------------------------------------- /volta/deactivate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/volta/deactivate.sh -------------------------------------------------------------------------------- /volta/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/volta/meta.yaml -------------------------------------------------------------------------------- /xpack-gcc-arm-none-eabi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/xpack-gcc-arm-none-eabi/README.md -------------------------------------------------------------------------------- /xpack-gcc-arm-none-eabi/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/xpack-gcc-arm-none-eabi/bld.bat -------------------------------------------------------------------------------- /xpack-gcc-arm-none-eabi/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/xpack-gcc-arm-none-eabi/build.sh -------------------------------------------------------------------------------- /xpack-gcc-arm-none-eabi/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memfault/conda-recipes/HEAD/xpack-gcc-arm-none-eabi/meta.yaml --------------------------------------------------------------------------------