ci_env.i586-pc-msdosdjgpp.sh 476 B

123456789101112131415161718
  1. # Copyright (c) 2023-2024 Cosmin Truta.
  2. #
  3. # Use, modification and distribution are subject to the MIT License.
  4. # Please see the accompanying file LICENSE_MIT.txt
  5. #
  6. # SPDX-License-Identifier: MIT
  7. export CI_TARGET_ARCH=i586
  8. export CI_TARGET_SYSTEM=msdosdjgpp
  9. export CI_CC="$CI_TARGET_ARCH-pc-$CI_TARGET_SYSTEM-gcc"
  10. export CI_AR="$CI_CC-ar"
  11. export CI_RANLIB="$CI_CC-ranlib"
  12. export CI_CMAKE_VARS="
  13. -DCMAKE_SYSTEM_NAME=Generic
  14. -DCMAKE_SYSTEM_PROCESSOR=$CI_TARGET_ARCH
  15. "