conda_build_config.yaml 750 B

1234567891011121314151617181920212223
  1. blas_impl:
  2. - mkl # [x86_64]
  3. c_compiler:
  4. - vs2019 # [win]
  5. cxx_compiler:
  6. - vs2019 # [win]
  7. python:
  8. - 3.8
  9. # This differs from target_platform in that it determines what subdir the compiler
  10. # will target, not what subdir the compiler package will be itself.
  11. # For example, we need a win-64 vs2008_win-32 package, so that we compile win-32
  12. # code on win-64 miniconda.
  13. cross_compiler_target_platform:
  14. - win-64 # [win]
  15. target_platform:
  16. - win-64 # [win]
  17. vc:
  18. - 14
  19. zip_keys:
  20. - # [win]
  21. - vc # [win]
  22. - c_compiler # [win]
  23. - cxx_compiler # [win]