mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-04 08:17:53 +02:00
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:
parent
b0fd261519
commit
4b49b084c5
8
Makefile
8
Makefile
@ -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),)
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user