Browse Source

Merge pull request #5334 from azuresky01/develop

Fix INTERFACE64 builds on Loongarch64 with LLVM
pull/5336/head
Martin Kroeker GitHub 7 months ago
parent
commit
12591caa91
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 0 deletions
  1. +7
    -0
      Makefile.system

+ 7
- 0
Makefile.system View File

@@ -1193,6 +1193,13 @@ endif
else ifeq ($(ARCH), $(filter $(ARCH),mips))
FCOMMON_OPT += -mabi=32
endif
ifeq ($(ARCH), $(filter $(ARCH),loongarch64))
ifdef INTERFACE64
ifneq ($(INTERFACE64), 0)
FCOMMON_OPT += -fdefault-integer-8
endif
endif
endif
else
ifdef BINARY64
ifneq ($(OSNAME), AIX)


Loading…
Cancel
Save