mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-10 14:46:02 +02:00
* typo in fpc -P? detection
This commit is contained in:
parent
b5d198ee3c
commit
5d6cfe797c
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Don't edit, this file is generated by FPCMake Version 1.1 [2001/09/29]
|
# Don't edit, this file is generated by FPCMake Version 1.1 [2001/10/10]
|
||||||
#
|
#
|
||||||
default: all
|
default: all
|
||||||
override PATH:=$(subst \,/,$(PATH))
|
override PATH:=$(subst \,/,$(PATH))
|
||||||
@ -71,7 +71,7 @@ endif
|
|||||||
endif
|
endif
|
||||||
ifndef FPC
|
ifndef FPC
|
||||||
FPC:=$(shell fpc -P?)
|
FPC:=$(shell fpc -P?)
|
||||||
ifneq ($(findstring Error,$(PPCBIN)),)
|
ifneq ($(findstring Error,$(FPC)),)
|
||||||
override FPC=ppc386
|
override FPC=ppc386
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
@ -417,6 +417,26 @@ EXEEXT=
|
|||||||
FPCMADE=fpcmade.be
|
FPCMADE=fpcmade.be
|
||||||
ZIPSUFFIX=be
|
ZIPSUFFIX=be
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(OS_TARGET),sunos)
|
||||||
|
PPUEXT=.ppu
|
||||||
|
ASMEXT=.s
|
||||||
|
OEXT=.o
|
||||||
|
SMARTEXT=.sl
|
||||||
|
STATICLIBEXT=.a
|
||||||
|
EXEEXT=
|
||||||
|
FPCMADE=fpcmade.sun
|
||||||
|
ZIPSUFFIX=sun
|
||||||
|
endif
|
||||||
|
ifeq ($(OS_TARGET),qnx)
|
||||||
|
PPUEXT=.ppu
|
||||||
|
ASMEXT=.s
|
||||||
|
OEXT=.o
|
||||||
|
SMARTEXT=.sl
|
||||||
|
STATICLIBEXT=.a
|
||||||
|
EXEEXT=
|
||||||
|
FPCMADE=fpcmade.qnx
|
||||||
|
ZIPSUFFIX=qnx
|
||||||
|
endif
|
||||||
ifdef REQUIRE_UNITSDIR
|
ifdef REQUIRE_UNITSDIR
|
||||||
override UNITSDIR+=$(REQUIRE_UNITSDIR)
|
override UNITSDIR+=$(REQUIRE_UNITSDIR)
|
||||||
endif
|
endif
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -110,7 +110,7 @@ ifndef FPC
|
|||||||
FPC:=$(shell fpc -P?)
|
FPC:=$(shell fpc -P?)
|
||||||
# Older fpc executables didn't support it and return
|
# Older fpc executables didn't support it and return
|
||||||
# Error: Illegal processor... When found then fallback to ppc386
|
# Error: Illegal processor... When found then fallback to ppc386
|
||||||
ifneq ($(findstring Error,$(PPCBIN)),)
|
ifneq ($(findstring Error,$(FPC)),)
|
||||||
override FPC=ppc386
|
override FPC=ppc386
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user