ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
22 lines
630 B
Bash
22 lines
630 B
Bash
# Copyright (c) 2023-2024 Cosmin Truta.
|
|
#
|
|
# Use, modification and distribution are subject to the MIT License.
|
|
# Please see the accompanying file LICENSE_MIT.txt
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
export CI_TARGET_ARCH=powerpc64
|
|
export CI_TARGET_SYSTEM=linux
|
|
export CI_TARGET_ABI=gnu
|
|
|
|
export CI_GCC="${CI_GCC-gcc}"
|
|
|
|
export CI_CC="$CI_TARGET_ARCH-$CI_TARGET_SYSTEM-$CI_TARGET_ABI-$CI_GCC"
|
|
export CI_AR="$CI_TARGET_ARCH-$CI_TARGET_SYSTEM-$CI_TARGET_ABI-ar"
|
|
export CI_RANLIB="$CI_TARGET_ARCH-$CI_TARGET_SYSTEM-$CI_TARGET_ABI-ranlib"
|
|
|
|
export CI_CMAKE_VARS="
|
|
-DCMAKE_SYSTEM_NAME=Linux
|
|
-DCMAKE_SYSTEM_PROCESSOR=$CI_TARGET_ARCH
|
|
"
|