Skip to content

Commit

Permalink
Fix RISC-V and PPC64EL builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
enzo1982 committed Feb 10, 2025
1 parent e244ee7 commit dd5e4aa
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions Makefile-options
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,17 @@ else ifneq ($(findstring mips,$(MACHINE)),)
ifneq ($(BUILD_MIPS),False)
BUILD_MIPS = True
endif
else ifneq ($(findstring powerpc64,$(MACHINE)),)
ifneq ($(BUILD_PPC64),False)
BUILD_PPC64 = True
endif
else ifneq ($(findstring powerpc,$(MACHINE)),)
ifneq ($(BUILD_PPC),False)
BUILD_PPC = True
endif
else ifneq ($(findstring powerpc64,$(MACHINE)),)
ifneq ($(BUILD_PPC64),False)
BUILD_PPC64 = True
else ifneq ($(findstring riscv64,$(MACHINE)),)
ifneq ($(BUILD_RISCV64),False)
BUILD_RISCV64 = True
endif
else ifneq ($(findstring x86_64,$(MACHINE)),)
ifneq ($(BUILD_ARM64),True)
Expand All @@ -60,7 +64,7 @@ else ifneq ($(findstring amd64,$(MACHINE)),)
endif
endif
endif
else
else ifneq ($(findstring i586,$(MACHINE))$(findstring i686,$(MACHINE)),)
ifneq ($(BUILD_ARM64),True)
ifneq ($(BUILD_X86),False)
ifneq ($(BUILD_X86_64),True)
Expand Down

0 comments on commit dd5e4aa

Please sign in to comment.