+ added WASI RTL makefile

git-svn-id: branches/wasm@47992 -
This commit is contained in:
nickysn 2021-01-02 22:56:43 +00:00
parent e7cd823692
commit 67206943e8
3 changed files with 2678 additions and 0 deletions

2
.gitattributes vendored
View File

@ -12187,6 +12187,8 @@ rtl/unix/unxdeclh.inc svneol=native#text/plain
rtl/unix/unxovl.inc svneol=native#text/plain
rtl/unix/unxovlh.inc svneol=native#text/plain
rtl/unix/x86.pp svneol=native#text/plain
rtl/wasi/Makefile svneol=native#text/plain
rtl/wasi/Makefile.fpc svneol=native#text/plain
rtl/wasi/rtldefs.inc svneol=native#text/plain
rtl/wasi/sysos.inc svneol=native#text/plain
rtl/wasi/sysosh.inc svneol=native#text/plain

2618
rtl/wasi/Makefile Normal file

File diff suppressed because it is too large Load Diff

58
rtl/wasi/Makefile.fpc Normal file
View File

@ -0,0 +1,58 @@
#
# Makefile.fpc for WASI
#
[package]
main=rtl
[target]
loaders=
units=system
[require]
nortl=y
[install]
fpcpackage=y
[default]
fpcdir=../..
target=wasi
cpu=wasm32
[compiler]
includedir=$(INC) $(PROCINC)
sourcedir=$(INC) $(PROCINC) $(COMMON)
[prerules]
RTL=..
INC=../inc
COMMON=$(RTL)/common
PROCINC=../$(CPU_TARGET)
UNITPREFIX=rtl
SYSTEMUNIT=system
# Paths
OBJPASDIR=$(RTL)/objpas
# Insert exception handler in system unit
ifdef EXCEPTIONS_IN_SYSTEM
override FPCOPT+=-dEXCEPTIONS_IN_SYSTEM
endif
# Insert exception handler in system unit
ifdef NO_EXCEPTIONS_IN_SYSTEM
override FPCOPT+=-dNO_EXCEPTIONS_IN_SYSTEM
endif
[rules]
# Get the system independent include file names.
# This will set the following variables :
# SYSINCNAMES
include $(INC)/makefile.inc
SYSINCDEPS=$(addprefix $(INC)/,$(SYSINCNAMES))
# Get the processor dependent include file names.
# This will set the following variables :
# CPUINCNAMES
include $(PROCINC)/makefile.cpu
SYSCPUDEPS=$(addprefix $(PROCINC)/,$(CPUINCNAMES))
# Put system unit dependencies together.
SYSDEPS=$(SYSINCDEPS) $(SYSCPUDEPS)
#
# System Units (System, Objpas, Strings)
#
system$(PPUEXT) : system.pp $(SYSDEPS)
$(COMPILER) $(FPC_SYSTEM_OPT) -Us -Sg system.pp
$(EXECPPAS)