+ added NASM to the default tools in fpcmake.ini

git-svn-id: trunk@26097 -
This commit is contained in:
nickysn 2013-11-16 12:37:46 +00:00
parent f488e8decd
commit 07e3792801
2 changed files with 228 additions and 207 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1134,6 +1134,7 @@ ASNAME=$(BINUTILSPREFIX)as
LDNAME=$(BINUTILSPREFIX)ld
ARNAME=$(BINUTILSPREFIX)ar
RCNAME=$(BINUTILSPREFIX)rc
NASMNAME=$(BINUTILSPREFIX)nasm
# assembler, redefine it if cross compiling
ifndef ASPROG
@ -1171,11 +1172,21 @@ ARPROG=$(ARNAME)
endif
endif
# NASM assembler, redefine it if cross compiling
ifndef NASMPROG
ifdef CROSSBINDIR
NASMPROG=$(CROSSBINDIR)/$(NASMNAME)$(SRCEXEEXT)
else
NASMPROG=$(NASMNAME)
endif
endif
# Override defaults
AS=$(ASPROG)
LD=$(LDPROG)
RC=$(RCPROG)
AR=$(ARPROG)
NASM=$(NASMPROG)
# ppas.bat / ppas.sh
ifdef inUnix