Skip to content

Commit b7bb2e3

Browse files
committed
Makefile.system: adjust mipsel/mips64el ARCH variables
When building for MIPS{64} little-endian variants, the included makefiles should be the same as for the big-endian. There are already some adjustments being done for some ARCH names. This change adds the ones for the `mipsel` and `mips64el` names, so that the Makefile.mips{64} files get included. This comes as a result of: openwrt/packages#16649 Signed-off-by: Alexandru Ardelean <[email protected]>
1 parent e76ff6a commit b7bb2e3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Makefile.system

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ else ifeq ($(ARCH), armv7)
3333
override ARCH=arm
3434
else ifeq ($(ARCH), aarch64)
3535
override ARCH=arm64
36+
else ifeq ($(ARCH), mipsel)
37+
override ARCH=mips
38+
else ifeq ($(ARCH), mips64el)
39+
override ARCH=mips64
3640
else ifeq ($(ARCH), zarch)
3741
override ARCH=zarch
3842
endif

0 commit comments

Comments
 (0)