├── .azure-pipelines ├── azure-pipelines-linux.yml └── azure-pipelines-win.yml ├── .ci_support ├── README ├── linux_64_c_compiler_version11cross_target_platformlinux-64cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11.yaml ├── linux_64_c_compiler_version11cross_target_platformlinux-aarch64cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11.yaml ├── linux_64_c_compiler_version11cross_target_platformlinux-ppc64lecuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11.yaml ├── linux_aarch64_c_compiler_version11cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11.yaml ├── linux_ppc64le_c_compiler_version11cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11.yaml └── win_64_cuda_compilernvcccuda_compiler_version11.8.yaml ├── .circleci └── config.yml ├── .gitattributes ├── .github └── CODEOWNERS ├── .gitignore ├── .scripts ├── build_steps.sh ├── logging_utils.sh ├── run_docker_build.sh └── run_win_build.bat ├── LICENSE.txt ├── README.md ├── azure-pipelines.yml ├── conda-forge.yml └── recipe ├── LICENSE.txt ├── conda_build_config.yaml ├── linux ├── activate.sh ├── deactivate.sh ├── install_nvcc.sh ├── nvcc.sh └── test_nvcc.sh ├── meta.yaml ├── test.cu └── windows ├── activate.bat ├── deactivate.bat ├── generate_stub.bat ├── install_nvcc.bat ├── nvcc_windows.bat └── test_nvcc.bat /.azure-pipelines/azure-pipelines-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/.azure-pipelines/azure-pipelines-linux.yml -------------------------------------------------------------------------------- /.azure-pipelines/azure-pipelines-win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/.azure-pipelines/azure-pipelines-win.yml -------------------------------------------------------------------------------- /.ci_support/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/.ci_support/README -------------------------------------------------------------------------------- /.ci_support/linux_64_c_compiler_version11cross_target_platformlinux-64cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/.ci_support/linux_64_c_compiler_version11cross_target_platformlinux-64cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_c_compiler_version11cross_target_platformlinux-aarch64cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/.ci_support/linux_64_c_compiler_version11cross_target_platformlinux-aarch64cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11.yaml -------------------------------------------------------------------------------- /.ci_support/linux_64_c_compiler_version11cross_target_platformlinux-ppc64lecuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/.ci_support/linux_64_c_compiler_version11cross_target_platformlinux-ppc64lecuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11.yaml -------------------------------------------------------------------------------- /.ci_support/linux_aarch64_c_compiler_version11cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/.ci_support/linux_aarch64_c_compiler_version11cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11.yaml -------------------------------------------------------------------------------- /.ci_support/linux_ppc64le_c_compiler_version11cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/.ci_support/linux_ppc64le_c_compiler_version11cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11.yaml -------------------------------------------------------------------------------- /.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.8.yaml -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/.gitignore -------------------------------------------------------------------------------- /.scripts/build_steps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/.scripts/build_steps.sh -------------------------------------------------------------------------------- /.scripts/logging_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/.scripts/logging_utils.sh -------------------------------------------------------------------------------- /.scripts/run_docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/.scripts/run_docker_build.sh -------------------------------------------------------------------------------- /.scripts/run_win_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/.scripts/run_win_build.bat -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /conda-forge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/conda-forge.yml -------------------------------------------------------------------------------- /recipe/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/recipe/LICENSE.txt -------------------------------------------------------------------------------- /recipe/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/recipe/conda_build_config.yaml -------------------------------------------------------------------------------- /recipe/linux/activate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/recipe/linux/activate.sh -------------------------------------------------------------------------------- /recipe/linux/deactivate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/recipe/linux/deactivate.sh -------------------------------------------------------------------------------- /recipe/linux/install_nvcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/recipe/linux/install_nvcc.sh -------------------------------------------------------------------------------- /recipe/linux/nvcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/recipe/linux/nvcc.sh -------------------------------------------------------------------------------- /recipe/linux/test_nvcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/recipe/linux/test_nvcc.sh -------------------------------------------------------------------------------- /recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/recipe/meta.yaml -------------------------------------------------------------------------------- /recipe/test.cu: -------------------------------------------------------------------------------- 1 | int main() { 2 | return 0; 3 | } 4 | -------------------------------------------------------------------------------- /recipe/windows/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/recipe/windows/activate.bat -------------------------------------------------------------------------------- /recipe/windows/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/recipe/windows/deactivate.bat -------------------------------------------------------------------------------- /recipe/windows/generate_stub.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/recipe/windows/generate_stub.bat -------------------------------------------------------------------------------- /recipe/windows/install_nvcc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/recipe/windows/install_nvcc.bat -------------------------------------------------------------------------------- /recipe/windows/nvcc_windows.bat: -------------------------------------------------------------------------------- 1 | "%CUDA_HOME%\bin\nvcc.exe" -ccbin "%CXX%" %* -------------------------------------------------------------------------------- /recipe/windows/test_nvcc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/nvcc-feedstock/HEAD/recipe/windows/test_nvcc.bat --------------------------------------------------------------------------------