Skip to content

Commit

Permalink
Update build-kernel-a15-zumapro.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
TheWildJames authored Feb 16, 2025
1 parent 7a9b4d5 commit 8988991
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build-kernel-a15-zumapro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,18 @@ jobs:
echo "CONFIG set to: $CONFIG"
- name: Download and Extract GCC 14.2
run: |
# Replace with the actual URL of the GCC 14.2 prebuilt for aarch64-linux-gnu
GCC_URL="https://ftp.gnu.org/gnu/gcc/gcc-14.2.0/gcc-14.2.0.tar.xz" # <-- **IMPORTANT: REPLACE THIS URL**
GCC_FILENAME="gcc-14.2.0.tar.xz"
GCC_EXTRACT_DIR="gcc-14.2"
wget "$GCC_URL" -O "$GCC_FILENAME"
mkdir "$GCC_EXTRACT_DIR"
tar -xf "$GCC_FILENAME" -C "$GCC_EXTRACT_DIR"
echo "GCC_PATH=$(pwd)/$GCC_EXTRACT_DIR/bin" >> $GITHUB_ENV
echo "GCC_TOOLCHAIN=$(pwd)/$GCC_EXTRACT_DIR" >> $GITHUB_ENV # Store for possible later usage
- name: Clone AnyKernel3 and Other Dependencies
run: |
echo "Cloning AnyKernel3 and other dependencies..."
Expand Down

0 comments on commit 8988991

Please sign in to comment.