Skip to content

Commit 98150d2

Browse files
committed
Bring back support for ARMv4T
1 parent 1fdcd59 commit 98150d2

3 files changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ jobs:
5959
# Linux (glibc)
6060
'x86_64-unknown-linux-gnu',
6161
'i386-unknown-linux-gnu',
62+
'arm-unknown-linux-gnueabi',
6263
'arm-unknown-linux-gnueabihf',
6364
'aarch64-unknown-linux-gnu',
6465

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ Currently, OBGGCC provides cross-compilers targeting 6 major Ubuntu releases and
4949
### System architectures
5050

5151
- `aarch64-unknown-linux-gnu`
52+
- `arm-unknown-linux-gnueabi`
5253
- `arm-unknown-linux-gnueabihf`
5354
- `i386-unknown-linux-gnu`
5455
- `x86_64-unknown-linux-gnu`

build.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -921,3 +921,8 @@ ln \
921921
--relative \
922922
"${share_directory}/"* \
923923
"${toolchain_directory}/build"
924+
925+
for target in "${deprecated_targets[@]}"; do
926+
rm --force "${toolchain_directory}/bin/${target}"*
927+
rm --force "${share_directory}/"*"/${target}"*
928+
done

0 commit comments

Comments
 (0)