Skip to content

Commit aa50370

Browse files
committed
Add gcc 4.7 from Android NDK
1 parent 8719830 commit aa50370

2 files changed

Lines changed: 23 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# NOTE: This file is generated automatically via template.py. Do not edit manually!
2+
3+
4+
FROM alpine:3.18 as base
5+
6+
RUN mkdir -p /compilers/android_x86/ndk-r8e-gcc-4.7
7+
8+
RUN wget -O android-ndk-r8e-linux-x86_64.tar.bz2 "https://dl.google.com/android/ndk/android-ndk-r8e-linux-x86_64.tar.bz2"
9+
RUN tar xvjf android-ndk-r8e-linux-x86_64.tar.bz2 -C /compilers/android_x86/ndk-r8e-gcc-4.7
10+
11+
RUN chown -R root:root /compilers/android_x86/ndk-r8e-gcc-4.7/
12+
RUN chmod +x /compilers/android_x86/ndk-r8e-gcc-4.7/*
13+
14+
15+
FROM scratch as release
16+
17+
COPY --from=base /compilers /compilers

values.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1121,3 +1121,9 @@ compilers:
11211121
template: common/decomp.dev
11221122
file: *decomp_dev
11231123
package_dir: X360/16.00.11886.00
1124+
1125+
# Android x86
1126+
- id: ndk-r8e-gcc-4.7
1127+
platform: android_x86
1128+
template: common/default
1129+
file: https://dl.google.com/android/ndk/android-ndk-r8e-linux-x86_64.tar.bz2

0 commit comments

Comments
 (0)