Add CROSSASTARGET and CROSSASPROG make variables.

Pass CROSSASTARGET value to ASTARGET variable
when cross-compiling, do the same for CROSSASPROG and ASPROG.
 This allows to pass custom ASPROG (like vasm assembler)
without getting into trouble for 'singlezipinstall'
makefile target.
This commit is contained in:
Pierre Muller 2023-10-30 21:50:55 +00:00
parent b0fd261519
commit 4b49b084c5
2 changed files with 16 additions and 0 deletions

View File

@ -526,6 +526,14 @@ endif
endif
CLEANOPTS=FPC=$(PPNEW)
BUILDOPTS=FPC=$(PPNEW) FPCFPMAKE=$(FPCFPMAKENEW) RELEASE=1 'OPT=$(OPTNEW)' 'FPCMAKEOPT=$(OPT)'
ifdef CROSSCOMPILE
ifneq ($(CROSSASPROG),)
BUILDOPTS+=ASPROG=$(CROSSASPROG)
endif
ifneq ($(CROSSASTARGET),)
BUILDOPTS+=ASTARGET=$(CROSSASTARGET)
endif
endif
INSTALLOPTS=FPC=$(PPNEW) ZIPDESTDIR=$(BASEDIR) FPCMAKE=$(FPCMAKENEW)
BuildOnlyBaseCPUs=jvm
ifneq ($(wildcard utils),)

View File

@ -220,6 +220,14 @@ endif
CLEANOPTS=FPC=$(PPNEW)
BUILDOPTS=FPC=$(PPNEW) FPCFPMAKE=$(FPCFPMAKENEW) RELEASE=1 'OPT=$(OPTNEW)' 'FPCMAKEOPT=$(OPT)'
ifdef CROSSCOMPILE
ifneq ($(CROSSASPROG),)
BUILDOPTS+=ASPROG=$(CROSSASPROG)
endif
ifneq ($(CROSSASTARGET),)
BUILDOPTS+=ASTARGET=$(CROSSASTARGET)
endif
endif
INSTALLOPTS=FPC=$(PPNEW) ZIPDESTDIR=$(BASEDIR) FPCMAKE=$(FPCMAKENEW)
# CPU targets for which we only build the compiler/rtl