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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
|
# -*- Makefile -*-
# $Id$
# VxWorks 6.2
#### Notes:
#### 1) This file requires that the WIND_BASE and WIND_HOST_TYPE environment
#### variables be set. If the target CPU is not SIMNT, then your CPU
#### environment variable must be set.
#### 2) If you have problems with munch output not being compilable
#### because it contains identifiers with ".", e.g., ".cpp", in them:
#### add a global variable or function to that .cpp file. See
#### ace/IOStream_T.cpp for an explanation and example.
#### 3) The TOOL environment variable may be set to "diab" (default is "gnu").
#### 4) If perl is not on your path, you'll also need to set your PERL_PATH
#### environment variable to the full path to perl.
VXWORKS = 1
CROSS-COMPILE = 1
debug ?= 1
optimize ?= 1
threads ?= 1
rtp ?= 1
ifeq ($(rtp),0)
pthread ?= 0
else
pthread ?= 1
endif
xerces ?= 0
aio ?= 0
versioned_so ?= 0
ifeq ($(static_libs),1)
shared_libs = 0
else
static_libs = 0
endif
ifeq ($(static_libs_only),1)
shared_libs = 0
endif
# VxWorks doesn't have rwho
rwho = 0
ifeq (,$(WIND_BASE))
default:
@ERROR: you must set your WIND_BASE environment variable
endif # WIND_BASE
ifeq (,$(WIND_HOST_TYPE))
default:
@ERROR: you must set your WIND_HOST_TYPE environment variable
endif # WIND_HOST_TYPE
ifeq ("$(WIND_HOST_TYPE)","x86-win32")
vxworks_ntbuild ?= 0
mingw32 ?= 1
lacks_touch ?= 0
PWD=$(subst \,/,$(shell pwd))
ACE_ROOT:=$(subst \,/,$(ACE_ROOT))
TAO_ROOT:=$(subst \,/,$(TAO_ROOT))
CIAO_ROOT:=$(subst \,/,$(CIAO_ROOT))
HOST_ROOT:=$(subst \,/,$(HOST_ROOT))
override RM=rm -f
endif # x86-win32
ifneq (,$(HOST_ROOT))
TAO_IDLFLAGS += -g $(HOST_ROOT)/bin/ace_gperf
ifeq ("$(WIND_HOST_TYPE)","x86-win32")
TAO_IDL = $(HOST_ROOT)/bin/tao_idl.exe
TAO_IDL3_TO_IDL2 = $(HOST_ROOT)/TAO/CIAO/bin/tao_idl3_to_idl2.exe
else
TAO_IDL = $(HOST_ROOT)/bin/tao_idl
TAO_IDL3_TO_IDL2 = $(HOST_ROOT)/bin/tao_idl3_to_idl2
endif
TAO_IDL_DEP = $(TAO_IDL)
TAO_IDL3_TO_IDL2_DEP = $(TAO_IDL3_TO_IDL2)
endif
HOST_DIR = $(WIND_BASE)/host/$(WIND_HOST_TYPE)
ifeq (,$(PERL_PATH))
PERL_PATH = perl
endif # ! PERL_PATH
ifeq ($(VXWORKS_VERSION_FLAG),)
VXWORKS_VERSION_FLAG = -DACE_VXWORKS=0x620
endif # VXWORKS_VERSION_FLAG
ifeq ($(TOOL),)
override TOOL = gnu
else
override TOOL := $(TOOL)
endif
ifeq ($(TOOL_FAMILY),)
ifeq ($(findstring gnu,$(TOOL)),gnu)
override TOOL_FAMILY := gnu
else
override TOOL_FAMILY := diab
endif
endif
ifeq ("$(TOOL_FAMILY)","gnu")
templates ?= automatic
endif
ifeq ($(rtp),0)
ifeq ($(findstring PPC, $(CPU)), PPC)
CPPFLAGS += -mlongcall
endif
PRJ_TYPE = vxApp
endif
ifeq ($(rtp),1)
TARGET_DIR = $(WIND_BASE)/target/usr
else
TARGET_DIR = $(WIND_BASE)/target/h
endif
TGT_DIR = $(WIND_BASE)/target
ifeq ($(CPU),)
# default CPU
CPU = SIMNT
else
override CPU := $(CPU)
endif
ifeq ($(shared_libs),1)
SHARED_LIBS = 1
endif
ifeq ($(shared_libs_only),1)
SHARED_LIBS = 1
endif
ifeq ($(rtp),0)
ifeq ($(SHARED_LIBS),1)
ACELIB = -L./
#### There's no difference between non-shared and shared object code.
VSHDIR = $(VDIR)
endif # shared_libs
endif
BIN_UNCHECKED ?=
SHLIB_UNCHECKED ?=
ifneq ("$(BIN_UNCHECKED)","")
VX_APP_BUILD := 1
else
ifeq ($(SHARED_LIBS),1)
ifneq ("$(SHLIB_UNCHECKED)","")
VX_SO_BUILD := 1
endif
endif
ifneq ($(VX_SO_BUILD),1)
VX_LIB_BUILD := 1
endif
endif
ifneq ($(VX_LIB_BUILD),1)
ifeq ($(rtp),0)
VXWORKSLINK = 1
endif
ifeq ($(VX_APP_BUILD),1)
## set variables for VxWorks linktarget identification
ifeq ($(rtp),0)
EXEEXT = .out
PRJ_FILE = $(basename $(notdir $(BIN_UNCHECKED))).vxworks
else
PRJ_FILE = $(basename $(notdir $(BIN_UNCHECKED))).vxe
EXEEXT = .vxe
VXE_DIR := $(OUTPUT_DIRECTORY)
EXE = $(BIN_UNCHECKED)
endif
PRJ_DIR = .
CLEANUP_OBJS := ctdt.c $(PRJ_DIR)/$(PRJ_FILE) $(CLEANUP_OBJS)
else
## set variables for VxWorks .SO linktarget identification
PRJ_FILE = $(basename $(notdir $(SHLIB_UNCHECKED))).vxworks
PRJ_DIR = .
CLEANUP_OBJS := ctdt.c $(PRJ_DIR)/$(PRJ_FILE) *.out $(CLEANUP_OBJS)
endif
endif
ifeq ($(rtp),1)
include $(WIND_USR)/make/defs.default
include $(WIND_USR)/make/defs.$(WIND_HOST_TYPE)
include $(WIND_USR)/tool/$(TOOL_FAMILY)/make.$(CPU)$(TOOL)
CPPFLAGS += -mrtp
LDFLAGS := $(filter-out -X, $(LDFLAGS))
LDFLAGS := $(filter-out -N, $(LDFLAGS))
LD := $(CPLUS)
DLD := $(CPLUS)
ifeq ($(SHARED_LIBS), 1))
ifeq ($(PRJ_TYPE),library)
PICDIR = /PIC
endif
endif
ifeq ($(findstring *sf,*$(TOOL)),*sf)
LDFLAGS += -L$(WIND_USR)/lib/$(VX_CPU_FAMILY)/$(CPU)/sfcommon$(PICDIR)
else
LDFLAGS += -L$(WIND_USR)/lib/$(VX_CPU_FAMILY)/$(CPU)/common$(PICDIR)
endif
LDLIBS += -ldl
else
include $(TGT_DIR)/h/make/defs.default
include $(TGT_DIR)/h/make/defs.$(WIND_HOST_TYPE)
include $(TGT_DIR)/h/make/defs.$(PRJ_TYPE)
include $(TGT_DIR)/h/tool/$(TOOL_FAMILY)/make.$(CPU)$(TOOL)
endif
no_cflags_ansi ?= 0
ifeq ($(no_cflags_ansi), 1)
ifeq ("$(TOOL_FAMILY)","gnu")
CC_COMPILER := $(filter-out -ansi, $(CC_COMPILER))
else
CC_COMPILER := $(filter-out -Xansi, $(CC_COMPILER))
endif
endif
no_ccflags_ansi ?= 0
ifeq ($(no_ccflags_ansi), 1)
ifeq ("$(TOOL_FAMILY)","gnu")
C++_COMPILER := $(filter-out -ansi, $(C++_COMPILER))
else
C++_COMPILER := $(filter-out -Xansi, $(C++_COMPILER))
endif
endif
ifeq ($(VXWORKSLINK),1)
# prevent possible clash with static LIB rules
# in VxWorks make includes and rules.lib.GNU
override ARCHIVE =
override LARGE_PROJECT =
PRJ_OBJS = $(addprefix $(VDIR), $(OBJS)) $(VSHOBJS)
ifeq ($(SHARED_LIBS),1)
##LD_PARTIAL += -L$(ACE_ROOT)/lib -L./ $(LDLIBPATH) $(LD_LINK_PATH)
PRJ_OBJS_FOR_LD_PARTIAL=$(addprefix $(VDIR), $(OBJS)) $(VSHOBJS)
ifeq ($(VX_SO_BUILD),1)
## Shared lib builds for VxWorks will also build 'import' libraries
LIB_INSTALL += $(VLIB:%=$(INSLIB)/%)
CLEANUP_INSTALL += $(CLEANUP_VLIB:%=$(INSLIB)/%)
REALCLEAN_FILES += $(CLEANUP_LIB:%=%) $(CLEANUP_LIB:%=%_debug) $(CLEANUP_LIB:%=%_profile) $(CLEANUP_LIB:%=%_optimize)
endif
else
LD_PARTIAL += -L$(ACE_ROOT)/ace -L./ $(LDLIBPATH) $(LD_LINK_PATH) $(LD_PARTIALFLAGS)
PRJ_OBJS_FOR_LD_PARTIAL=$(addprefix $(VDIR), $(OBJS)) $(VSHOBJS) $(VLDLIBS) $(ACE_SHLIBS) $(LIBS)
endif
PRJ_OBJS_FOR_LD=$(addprefix $(VDIR), $(OBJS)) $(VSHOBJS)
PRJ_OBJS_FOR_NM=$(addprefix $(VDIR), $(OBJS)) $(VSHOBJS)
PRJ_OBJS_FOR_AR=$(addprefix $(VDIR), $(OBJS)) $(VSHOBJS)
POST_BUILD_RULE = $(POSTLINK)
COMPILE_TRADITIONAL = $(CC) $(OPTION_OBJECT_ONLY) $(OPTION_DOLLAR_SYMBOLS)\
$(filter-out -ansi, $(CFLAGS))
## make sure default target stays the ACE/TAO default target
##
default: all
endif
CPPFLAGS += $(VXWORKS_VERSION_FLAG)
ifeq ($(debug),1)
DCFLAGS += -g
DCCFLAGS += -g
CPPFLAGS +=
endif
ifeq ($(pthread),1)
CPPFLAGS += -DACE_HAS_PTHREADS
endif
ifeq ("$(TOOL_FAMILY)","gnu")
# Test for template instantiation, add to SOFLAGS if SONAME set,
# add -E to LDFLAGS if using GNU ld
include $(ACE_ROOT)/include/makeinclude/platform_g++_common.GNU
ifeq ("$(templates)","automatic")
ifeq ($(repo),1)
ifeq ($(VXWORKSLINK),1)
ifeq ($(VX_APP_BUILD),1)
ifneq ($(SHARED_LIBS),1)
LD_PARTIAL += -frepo
endif
endif
else
ifeq ($(rtp),0)
ace_lib_prelink := 1
LINK.cc = override
LINK.cc.override = $(LD_PARTIAL) -frepo -L$(ACE_ROOT)/ace -L$(INSLIB) -L./ $(LDLIBPATH) $(LD_LINK_PATH)
ifneq ($(SHARED_LIBS),1)
LDFLAGS = $(ACE_SHLIBS)
endif
endif
endif
endif
endif
# TEMPLATES_FLAG is set by platform_g++_common.GNU
ifneq ($(TEMPLATES_FLAG),) # If specified, add it to the CCFLAGS
CPPFLAGS += $(TEMPLATES_FLAG)
endif
endif # TOOL_FAMILY == gnu
ifeq ("$(TOOL_FAMILY)","diab")
C++FLAGS += -Xexceptions
else
ifeq ("$(TOOL_FAMILY)","gnu")
C++FLAGS += -fexceptions
endif
endif
ifneq ($(findstring $(VX_CPU_FAMILY),ppc arm),)
ifeq ("$(TOOL_FAMILY)","diab")
C++FLAGS += -Xchar-signed
else
ifeq ("$(TOOL_FAMILY)","gnu")
C++FLAGS += -fsigned-char
endif
endif
endif
ifeq ($(CPU),SIMNT)
override MUNCH_FLAGS := -asm $(TOOLENV)
endif
ifneq ($(optimize),1)
CC_OPTIM_NORMAL =
endif
CCFLAGS += $(C++FLAGS)
ifeq (0,$(rtp))
PIC =
else
ifeq ("$(TOOL)","diab")
PIC = -Xpic
else
ifeq ("$(TOOL)","gnu")
PIC = -fpic
endif
endif
endif
ifeq ($(VXWORKSLINK),1)
ifeq ($(repo),1)
ifeq ($(SHARED_LIBS),1)
BACKUP_RPO_RULE = for %f in ($(basename $(addprefix $(VDIR), $(OBJS)) $(VSHOBJS))) do if exist %f.rpo mv %f.rpo %f.rpobak $(ACE_NUL_STDERR)
POST_BUILD_RULE = for %f in ($(basename $(addprefix $(VDIR), $(OBJS)) $(VSHOBJS))) do if exist %f.rpobak mv %f.rpobak %f.rpo $(ACE_NUL_STDERR)
endif
endif
.PHONY: $(PRJ_DIR)/$(PRJ_FILE)
## special target to satisfy VxWorks dependencies for images
$(PRJ_DIR)/$(PRJ_FILE):
ifeq ($(repo),1)
ifeq ($(SHARED_LIBS),1)
#### execute prelink step to make compiler instantiate all needed
#### templates; discard image and repo files (*.rpo) after linkstep
#### this step holds for both .SO as well as 'app' images so use both VSHOBJS and OBJS
-$(LD_PARTIAL) -frepo -L$(ACE_ROOT)/ace -L./ $(LDLIBPATH) $(LD_LINK_PATH)$(LINK_OUTPUT_FLAG) ace-templ_inst $? $(ACE_SHLIBS) $(addprefix $(VDIR), $(OBJS)) $(VSHOBJS)
-$(RM) ace-templ_inst
#### We need to backup the .RPO files or otherwise the link step of the final image will
#### start instantiating templates again even if we do not specify '-frepo'!
-$(BACKUP_RPO_RULE)
ifeq ($(VX_SO_BUILD),1)
#### build library of objects in .SO to use as a sort of import library for VxWorks
echo $(filter %.o, $(VSHOBJS)) | xargs $(AR) $(ARFLAGS) $(VLIB) $(AREXTRA)
-chmod a+r $(VLIB)
ifneq (,$(RANLIB))
-$(RANLIB) $(VLIB)
endif # RANLIB
endif # VX_SO_BUILD
endif
endif
@echo 1>$@
endif
|