-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathJamrules
executable file
·287 lines (240 loc) · 8.14 KB
/
Jamrules
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
NOARSCAN = true ;
ALL_LOCATE_TARGET ?= build ;
################################################################################
# Save the host toolset information
HOST_TOOLSET = $(TOOLSET) ;
HOST_AS = $(AS) ;
HOST_AR = $(AR) ;
HOST_CC = $(CC) ;
HOST_CCFLAGS = $(CCFLAGS) ;
HOST_C++ = $(C++) ;
HOST_C++FLAGS = $(C++FLAGS) ;
HOST_LINK = $(LINK) ;
HOST_LINKFLAGS = $(LINKFLAGS) ;
HOST_LINKLIBS = $(LINKLIBS) ;
HOST_OPTIM = $(OPTIM) ;
HOST_STDHDRS = $(STDHDRS) ;
HOST_SUFEXE = $(SUFEXE) ;
HOST_SUFLIB = $(SUFLIB) ;
HOST_SUFOBJ = $(SUFOBJ) ;
HOST_UNDEFFLAG = $(UNDEFFLAG) ;
HOST_PICFLAGS = $(PICFLAG) ;
################################################################################
# Include a file only once
rule SubIncludeOnce {
if ! $($(1:J=__)_INCLUDED) {
#ECHO Including $(1) ;
SubInclude $(1) ;
} else {
#ECHO Not including $(1) ;
}
}
# Set the flag that SubIncludeOnce uses
rule _SubSetIncluded {
#ECHO Included $(1) ;
if ! $($(1:J=__)_INCLUDED) {
$(1:J=__)_INCLUDED = 1 ;
}
}
# Add the Gandr include dirs to headers
rule _AddHeaders {
PDCLibConfig ;
SUBDIRHDRS += $(GD_INCLUDE_DIRS) ;
}
################################################################################
# PDCLib
PDCLIB_NO_TEST = 1 ;
PDCLIB_PLATFORM = gandr ;
################################################################################
# Gandr special rules
# Adds Bal source files
rule GdBalSources {
local _obj = $(1:S=$(SUFOBJ)) ;
MakeLocate $(_obj) : $(LOCATE_TARGET) ;
GD_BAL_OBJECTS += [ FGristFiles $(_obj) ] ;
Objects $(1) ;
ObjectHdrs $(1) : $(GD_INCLUDE_DIRS) ;
}
# Add an include dir (Config.jam)
# GdIncludeDir $(GD_TOP) dir dir dir ;
rule GdIncludeDir {
GD_INCLUDE_DIRS += [ FDirName $(1) ] ;
}
GD_STUB_GEN = [ FDirName $(GD_TOP) tools gd_stub_gen ] ;
# Parse the ioctl definition
# GdIoctls lib : <source> ;
rule GdIoctls {
local files = [ COMMAND $(GD_STUB_GEN) ioctl $(>) -stubdir ioctl_stubs -list ] ;
files = [ FGristFiles $(files) ] ;
ECHO ioctl files are $(files) ;
GdIoctlGen $(files) gd_ioctl.h : $(>) : include/gd_ioctl.h : include/gd_ioctl_map.h : ioctl_stubs ;
Library $(<) : $(files) ioctl_stubs/gd_ioctl_stub.S ;
}
# Internal
# GdIoctlGen $(< stubs) : $(> input) : $(3 hdr) : $(4 map) $(5 dir) ;
rule GdIoctlGen {
ECHO $(<) from $(>) ;
MakeLocate $(<) $(3) $(4) $(5) : $(LOCATE_TARGET) ;
DEPENDS $(<) (3) $(4) $(5) : $(>) $(GD_STUB_GEN) ;
DIR on $(<) = [ FDirName $(LOCATE_TARGET) $(5) ] ;
MAP on $(<) = [ FDirName $(LOCATE_TARGET) $(4) ] ;
HDR on $(<) = [ FDirName $(LOCATE_TARGET) $(3) ] ;
}
actions GdIoctlGen {
$(GD_STUB_GEN) ioctl $(>) -stubdir $(DIR) -stubs -hdr $(HDR) -map $(MAP)
}
# Parse the syscall definition
# GdIoctls lib : <source> ;
rule GdSyscalls {
local files = [ COMMAND $(GD_STUB_GEN) syscall $(>) -stubdir syscall_stubs -list ] ;
files = [ FGristFiles $(files) ] ;
ECHO syscall files are $(files) ;
GdSyscallGen $(files) gd_syscall.h gd_syscall.c : $(>) : include/gd_syscall.h : gd_syscall.c : syscall_stubs ;
Library $(<) : $(files) syscall_stubs/gd_syscall_stub.S ;
}
# Internal
# GdSyscallGen $(< outputs) : $(> input) : $(3 hdr) : $(4 dispatcher) $(5 dir) ;
rule GdSyscallGen {
ECHO $(<) from $(>) ;
MakeLocate $(<) $(3) $(4) $(5) : $(LOCATE_TARGET) ;
DEPENDS $(<) $(3) $(3:D=) $(4) $(5) : $(>) $(GD_STUB_GEN) ;
DIR on $(<) = [ FDirName $(LOCATE_TARGET) $(5) ] ;
DISP on $(<) = [ FDirName $(LOCATE_TARGET) $(4) ] ;
HDR on $(<) = [ FDirName $(LOCATE_TARGET) $(3) ] ;
}
actions GdSyscallGen {
$(GD_STUB_GEN) syscall $(>) -stubdir $(DIR) -stubs -hdr $(HDR) -dispatcher $(DISP)
}
################################################################################
# Extra rules and toolchain functionality
# Invoke objcopy
# ObjCopy dest : src : opts ;
rule ObjCopy {
Depends $(<) : $(>) ;
MakeLocate $(<) : $(LOCATE_TARGET) ;
OPTS on $(<) = $(3) ;
}
actions ObjCopy {
$(OBJCOPY) $(OPTS) $(>) $(<)
}
# Link using a linker script
# LinkWithScript output : objects : script [: extraflags] ;
rule LinkWithScript {
# Can't use MainFromObjects as it regrists the files
Depends $(<) : $(>) $(3) ;
MakeLocate $(<) : $(LOCATE_TARGET) ;
Clean clean : $(<) ;
LINKFLAGS on $(<) += -T$(3) $(4) ;
}
# We also generate output useful for debugging
actions LinkWithScript bind NEEDLIBS {
$(LINK) $(LINKFLAGS) -o $(<) $(UNDEFS) $(>) $(NEEDLIBS) $(LINKLIBS) --cref -Map $(<:S=.map.txt)
$(OBJDUMP) -C -t $(<) > $(<:S=.syms.txt)
$(OBJDUMP) -C -S $(<) > $(<:S=.sdsm.txt)
$(OBJDUMP) -C -d $(<) > $(<:S=.dsm.txt)
$(OBJCOPY) --only-keep-debug $(<) $(<:S=.gdb)
$(STRIP) --strip-debug $(<)
$(OBJCOPY) --add-gnu-debuglink=$(<:S=.gdb) $(<)
}
# Add support to Jam for .S preprocessed assembly files
# Doesn't recognize S: preprocessed assembly file
rule UserObject {
switch $(>:S) {
case .S : AsCpp $(<) : $(>) ;
}
}
# Add support for preprocessed assembly
rule AsCpp
{
Depends $(<) : $(>) ;
ASFLAGS on $(<) += $(ASFLAGS) $(SUBDIRASFLAGS) ;
CCHDRS on $(<) = [ on $(<) FIncludes $(HDRS) ] ;
CCDEFS on $(<) = [ on $(<) FDefines $(DEFINES) ] ;
}
# Pass them to GCC
actions AsCpp
{
$(CC) -c $(ASFLAGS) $(CCHDRS) $(CCDEFS) -o $(<) $(>)
}
################################################################################
# Platform, SoC, architecture functionality
# Determine the platform, soc, arch information
# Do so in that order; platform can imply soc can imply arch
# XXX These paths may need consideration once we have KL!
GdIncludeDir $(ALL_LOCATE_TARGET) bal include ;
GdIncludeDir $(GD_TOP) include ;
if ! $(PLATFORM) {
ECHO "Must specify a platform" ;
EXIT ;
} else {
include [ FDirName $(GD_TOP) bal platform $(PLATFORM) Config.jam ] ;
}
# SoC specification is optional (e.g: i386-bios doesnt' need nor want one)
if $(SOC) {
include [ FDirName $(GD_TOP) bal soc $(SOC) Config.jam ] ;
}
if ! $(ARCH) {
ECHO "Must specify an architecture " ;
ECHO "Platform supports: " $(SUPPORTED_ARCHITECTURES:J=", ") ;
EXIT ;
} else if ! $(ARCH) in $(SUPPORTED_ARCHITECTURES) {
ECHO "Architecture \"$(ARCH)\" not supported by $(PLATFORM)" ;
ECHO "Supported architectures are: " $(SUPPORTED_ARCHITECTURES:J=", ") ;
EXIT ;
} else {
include [ FDirName $(GD_TOP) bal arch $(ARCH) Config.jam ] ;
}
# All of our toolchains are GCC-alikes
TOOLSET = gcc ;
CCFLAGS += -ffreestanding -fbuiltin -g ;
C++FLAGS += -ffreestanding -fbuiltin -g ;
AS = $(TOOLPREFIX)gcc ;
AR = $(TOOLPREFIX)ar cru ;
CC = $(TOOLPREFIX)gcc ;
OPTIM = -Os ;
C++ = $(TOOLPREFIX)g++ ;
LINK = $(TOOLPREFIX)ld ;
STDHDRS = ;
SUFEXE = ;
SUFLIB = .a ;
SUFOBJ = .o ;
UNDEFFLAG = -U ;
PICFLAGS = -fPIC ;
OBJDUMP = $(TOOLPREFIX)objdump ;
OBJCOPY = $(TOOLPREFIX)objcopy ;
STRIP = $(TOOLPREFIX)strip ;
RANLIB = $(TOOLPREFIX)ranlib ;
# Find libgcc
LIBGCC = [ COMMAND $(CC) $(CCFLAGS) $(OPTIM) $(CCDEFS) -print-libgcc-file-name ] ;
################################################################################
# Include the Jamrules files for our dependencies
SubRules GD_TOP pdclib : PDCLIB_TOP ;
# JamBase invokes all rules specified in SUBDIRRULES when a new subdir is
# entered
#
# We deferred adding these till here else _AddHeaders gets invoked by the above
# before PDClibConfig is defined
SUBDIRRULES += _SubSetIncluded _AddHeaders ;
################################################################################
# Work around a bug in Jambase
# XXX This should go into ejam
# Fix to work on targets in subdirs
rule MakeLocate
{
# Note we grist the directory name with 'dir',
# so that directory path components and other
# targets don't conflict.
if $(>)
{
for file in $(<) {
local _rev = [ FReverse $(>) ] ;
if $(_rev[1]) = "." {
_rev = $(_rev[2-]) ;
}
local _dir = [ FDirName [ FReverse $(_rev) ] $(file:D) ] ;
LOCATE on $(file) = [ FDirName $(>) ] ;
Depends $(<) : $(_dir:G=dir) ;
MkDir $(_dir:G=dir) ;
}
}
}