ci_env.aarch64-linux-android.sh 483 B

12345678910111213141516
  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=aarch64
  8. export CI_TARGET_ARCHVER=aarch64
  9. export CI_TARGET_SYSTEM=linux
  10. export CI_TARGET_ABI=android
  11. export CI_TARGET_ABIVER=android29
  12. export CI_CC="$CI_TARGET_ARCHVER-$CI_TARGET_SYSTEM-$CI_TARGET_ABIVER-clang"
  13. export CI_AR="llvm-ar"
  14. export CI_RANLIB="llvm-ranlib"