Skip to content

Commit 39eb728

Browse files
committed
Updated build scripts
1 parent 184f562 commit 39eb728

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
=== 1.0.9 ===
66
* Added test build for Windows using MSYS2.
7+
* Updated build scripts.
78

89
=== 1.0.8 ===
910
* Added Clang build for the CI.

make/system.mk

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,11 @@ endif
5454

5555
# Set actual architecture
5656
# The current architecture can be obtained by: gcc -Q --help=target
57-
ifeq ($(patsubst armv6%,armv6,$(BUILD_ARCH)),armv6)
57+
ifeq ($(BUILD_ARCH),armel)
58+
override ARCHITECTURE = $(BUILD_ARCH)
59+
ARCHITECTURE_FAMILY = generic
60+
ARCHITECTURE_CFLAGS :=
61+
else ifeq ($(patsubst armv6%,armv6,$(BUILD_ARCH)),armv6)
5862
override ARCHITECTURE = arm32
5963
ARCHITECTURE_FAMILY = arm32
6064
ARCHITECTURE_CFLAGS := -march=armv6 -marm

0 commit comments

Comments
 (0)