sim: options: fix --help output
[deliverable/binutils-gdb.git] / sim / common / Make-common.in
1 # Makefile fragment for common parts of all simulators.
2 # Copyright 1997-2021 Free Software Foundation, Inc.
3 # Contributed by Cygnus Support.
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 # This Makefile fragment consists of two separate parts.
19 # They are merged into the final Makefile at points denoted by
20 # "## COMMON_PRE_CONFIG_FRAG" and "## COMMON_POST_CONFIG_FRAG".
21 #
22 # The target Makefile should look like:
23 #
24 #># Copyright blah blah
25 #>
26 #>## COMMON_PRE_CONFIG_FRAG
27 #>
28 #># Any overrides necessary for the SIM_FOO config vars.
29 #>SIM_FOO = ...
30 #>
31 #>## COMMON_POST_CONFIG_FRAG
32 #>
33 #># Rules to build target specific .o's.
34
35 ## COMMON_PRE_CONFIG_FRAG
36
37 VPATH = @srcdir@:$(srccom)
38 srcdir = @srcdir@
39 srccom = $(srcdir)/../common
40 srcroot = $(srcdir)/../..
41 srcsim = $(srcdir)/..
42
43 prefix = @prefix@
44 exec_prefix = @exec_prefix@
45
46 host_alias = @host_alias@
47 target_alias = @target_alias@
48 program_transform_name = @program_transform_name@
49 bindir = @bindir@
50
51 libdir = @libdir@
52 tooldir = $(libdir)/$(target_alias)
53
54 datadir = @datadir@
55 datarootdir = @datarootdir@
56 mandir = @mandir@
57 man1dir = $(mandir)/man1
58 infodir = @infodir@
59 includedir = @includedir@
60
61 lt_cv_dlopen_libs = @lt_cv_dlopen_libs@
62 # This can be referenced by the gettext configuration code.
63 top_builddir = ..
64
65 EXEEXT = @EXEEXT@
66 SHELL = @SHELL@
67
68 INSTALL = @INSTALL@
69 INSTALL_PROGRAM = @INSTALL_PROGRAM@
70 INSTALL_DATA = @INSTALL_DATA@
71
72 CC = @CC@
73 C_DIALECT = @C_DIALECT@
74 CC_FOR_BUILD = @CC_FOR_BUILD@
75 CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@
76 CFLAGS = @CFLAGS@
77 CPPFLAGS = @CPPFLAGS@
78 CXXFLAGS = @CXXFLAGS@
79 LDFLAGS = @LDFLAGS@
80
81 SIM_ALIGNMENT = @sim_alignment@
82 SIM_BITSIZE = @sim_bitsize@
83 SIM_DEFAULT_MODEL = @sim_default_model@
84 SIM_ENDIAN = @sim_endian@
85 SIM_FLOAT = @sim_float@
86 SIM_HW_CFLAGS = @sim_hw_cflags@
87 SIM_HW_OBJS = @sim_hw_objs@
88 SIM_HW = @sim_hw@
89 SIM_INLINE = @sim_inline@
90 SIM_RESERVED_BITS = @sim_reserved_bits@
91 SIM_SCACHE = @sim_scache@
92 WARN_CFLAGS = @WARN_CFLAGS@
93 WERROR_CFLAGS = @WERROR_CFLAGS@
94 SIM_WARN_CFLAGS = $(WARN_CFLAGS)
95 SIM_WERROR_CFLAGS = $(WERROR_CFLAGS)
96
97 AR = @AR@
98 AR_FLAGS = rc
99 RANLIB = @RANLIB@
100 MAKEINFO = makeinfo
101
102 # Dependency tracking information.
103 DEPMODE = @CCDEPMODE@
104 DEPDIR = @DEPDIR@
105 depcomp = $(SHELL) $(srcroot)/depcomp
106
107 # Note that these are overridden by GNU make-specific code below if
108 # GNU make is used. The overrides implement dependency tracking.
109 COMPILE.pre = $(CC) $(C_DIALECT)
110 COMPILE.post = -c -o $@
111 COMPILE = $(COMPILE.pre) $(ALL_CFLAGS) $(COMPILE.post)
112 POSTCOMPILE = @true
113
114 # igen leaks memory, and therefore makes AddressSanitizer unhappy. Disable
115 # leak detection while running it.
116 IGEN = ASAN_OPTIONS=detect_leaks=0 ../igen/igen
117
118 # Each simulator's Makefile.in defines one or more of these variables
119 # to override our settings as necessary. There is no need to define these
120 # in the simulator's Makefile.in if one is using the default value. In fact
121 # it's preferable not to.
122
123 # List of object files, less common parts.
124 SIM_OBJS =
125 # List of extra dependencies.
126 # Generally this consists of simulator specific files included by sim-main.h.
127 SIM_EXTRA_DEPS =
128 # List of flags to always pass to $(CC).
129 SIM_EXTRA_CFLAGS =
130 # List of extra libraries to link with.
131 SIM_EXTRA_LIBS =
132 # List of main object files for `run'.
133 SIM_RUN_OBJS = nrun.o
134 # Dependency of `install' to install any extra files.
135 SIM_EXTRA_INSTALL =
136 # Dependency of `clean' to clean any extra files.
137 SIM_EXTRA_CLEAN =
138 # Likewise `distclean'
139 SIM_EXTRA_DISTCLEAN =
140
141 # Every time a new general purpose source file was added every target's
142 # Makefile.in needed to be updated to include the file in SIM_OBJS.
143 # This doesn't scale.
144 # This variable specifies all the generic stuff common to the newer simulators.
145 # Things like sim-reason.o can't go here as the cpu may provide its own
146 # (though hopefully in time that won't be so). Things like sim-bits.o can go
147 # here. Some files are used by all simulators (e.g. callback.o).
148 # Those files are specified in LIB_OBJS below.
149
150 SIM_COMMON_HW_OBJS = \
151 hw-alloc.o \
152 hw-base.o \
153 hw-device.o \
154 hw-events.o \
155 hw-handles.o \
156 hw-instances.o \
157 hw-ports.o \
158 hw-properties.o \
159 hw-tree.o \
160 sim-hw.o \
161
162 SIM_NEW_COMMON_OBJS = \
163 sim-arange.o \
164 sim-bits.o \
165 sim-close.o \
166 sim-command.o \
167 sim-config.o \
168 sim-core.o \
169 sim-cpu.o \
170 sim-endian.o \
171 sim-engine.o \
172 sim-events.o \
173 sim-fpu.o \
174 sim-hload.o \
175 sim-hrw.o \
176 sim-io.o \
177 sim-info.o \
178 sim-load.o \
179 sim-memopt.o \
180 sim-model.o \
181 sim-module.o \
182 sim-options.o \
183 sim-profile.o \
184 sim-reason.o \
185 sim-reg.o \
186 sim-signal.o \
187 sim-stop.o \
188 sim-syscall.o \
189 sim-trace.o \
190 sim-utils.o \
191 sim-watch.o \
192 \
193 $(SIM_HW_OBJS) \
194
195 # cgen-sim.h and the headers it includes
196 CGEN_SIM_DEPS = \
197 $(srccom)/cgen-sim.h \
198 $(srccom)/cgen-defs.h \
199 $(srccom)/cgen-scache.h \
200 $(srccom)/cgen-fpu.h \
201 $(srccom)/cgen-par.h \
202 $(srccom)/cgen-cpu.h \
203 $(srccom)/cgen-trace.h \
204 cpuall.h
205
206 # Add this to SIM_EXTRA_DEPS.
207 CGEN_INCLUDE_DEPS = \
208 $(CGEN_SIM_DEPS) \
209 $(srccom)/cgen-engine.h \
210 $(srccom)/cgen-types.h \
211 $(srcdir)/../../include/opcode/cgen.h
212
213 ## End COMMON_PRE_CONFIG_FRAG
214
215 ## COMMON_POST_CONFIG_FRAG
216
217 CONFIG_CFLAGS = \
218 @DEFS@ \
219 $(SIM_DEFAULT_MODEL) \
220 $(SIM_ALIGNMENT) \
221 $(SIM_BITSIZE) \
222 $(SIM_ENDIAN) \
223 $(SIM_FLOAT) \
224 $(SIM_HW_CFLAGS) \
225 $(SIM_INLINE) \
226 $(SIM_RESERVED_BITS) \
227 $(SIM_SCACHE) \
228 $(SIM_WARN_CFLAGS) \
229 $(SIM_WERROR_CFLAGS) \
230 $(SIM_HARDWARE)
231 CSEARCH = -I. -I$(srcdir) -I../common -I$(srccom) \
232 -I../../include -I$(srcroot)/include \
233 -I../../bfd -I$(srcroot)/bfd \
234 -I../../opcodes -I$(srcroot)/opcodes \
235 @INCINTL@
236 ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(SIM_EXTRA_CFLAGS) $(CFLAGS)
237 BUILD_CFLAGS = $(CFLAGS_FOR_BUILD) $(CSEARCH)
238
239 COMMON_DEP_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(SIM_EXTRA_CFLAGS)
240
241 ZLIB = @zlibdir@ -lz
242 LIBIBERTY_LIB = ../../libiberty/libiberty.a
243 BFD_LIB = ../../bfd/libbfd.a
244 @PLUGINS_TRUE@LIBDL = @lt_cv_dlopen_libs@
245 OPCODES_LIB = ../../opcodes/libopcodes.a
246 LIBINTL = @LIBINTL@
247 LIBINTL_DEP = @LIBINTL_DEP@
248 CONFIG_LIBS = @LIBS@ $(ZLIB)
249 LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL_DEP) $(LIBIBERTY_LIB)
250 EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL) $(LIBIBERTY_LIB) \
251 $(CONFIG_LIBS) $(SIM_EXTRA_LIBS) $(LIBDL)
252
253 LIB_OBJS = callback.o modules.o syscall.o targ-map.o version.o \
254 $(SIM_OBJS)
255
256 COMPILE_FOR_BUILD = $(CC_FOR_BUILD) $(BUILD_CFLAGS)
257 LINK_FOR_BUILD = $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(LDFLAGS_FOR_BUILD) -o $@
258
259 RUNTESTFLAGS =
260
261 callback_h = $(srcroot)/include/gdb/callback.h
262 remote_sim_h = $(srcroot)/include/gdb/remote-sim.h
263
264 all: libsim.a run$(EXEEXT) .gdbinit
265
266 libsim.a: $(LIB_OBJS)
267 rm -f libsim.a
268 $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
269 $(RANLIB) libsim.a
270
271 run$(EXEEXT): $(SIM_RUN_OBJS) libsim.a $(LIBDEPS)
272 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o run$(EXEEXT) \
273 $(SIM_RUN_OBJS) libsim.a $(EXTRA_LIBS)
274
275 # FIXME: Ideally, callback.o and friends live in a library outside of
276 # both the gdb and simulator source trees (e.g. devo/remote. Not
277 # devo/libremote because this directory would contain more than just
278 # a library).
279
280 gentmap.o: Makefile $(srccom)/gentmap.c $(srccom)/nltvals.def
281 $(COMPILE_FOR_BUILD) -o $@ -c $(srccom)/gentmap.c $(NL_TARGET)
282
283 gentmap: gentmap.o
284 $(LINK_FOR_BUILD) $<
285
286 targ-vals.h targ-map.c: stamp-tvals
287 stamp-tvals: gentmap
288 rm -f tmp-tvals.h tmp-tmap.c
289 ./gentmap -h >tmp-tvals.h
290 $(SHELL) $(srcroot)/move-if-change tmp-tvals.h targ-vals.h
291 ./gentmap -c >tmp-tmap.c
292 $(SHELL) $(srcroot)/move-if-change tmp-tmap.c targ-map.c
293 touch stamp-tvals
294
295 version.c: Makefile $(srcroot)/gdb/version.in $(srcroot)/bfd/version.h $(srcroot)/sim/common/create-version.sh
296 $(SHELL) $(srcroot)/sim/common/create-version.sh $(srcroot)/gdb $@.tmp
297 $(SHELL) $(srcroot)/move-if-change $@.tmp $@
298 touch $@
299
300 #
301 # Rules for building sim-* components. Triggered by listing the corresponding
302 # .o file in the list of simulator targets.
303 #
304
305 sim_main_headers = \
306 sim-main.h \
307 $(sim-assert_h) \
308 $(sim-base_h) \
309 $(sim-cpu_h) \
310 $(sim-engine_h) \
311 $(sim-events_h) \
312 $(sim-memopt_h) \
313 $(sim-model_h) \
314 $(sim-module_h) \
315 $(sim-profile_h) \
316 $(sim-trace_h) \
317 $(sim-watch_h) \
318 $(sim-basics_h) \
319 $(SIM_EXTRA_DEPS)
320
321 # Exported version of sim_main_headers.
322 SIM_MAIN_DEPS = \
323 $(sim_main_headers)
324
325 sim-alu_h = $(srccom)/sim-alu.h
326 sim-arange_h = $(srccom)/sim-arange.h
327 sim-assert_h = $(srccom)/sim-assert.h
328 sim-base_h = $(srccom)/sim-base.h \
329 $(sim-module_h) \
330 $(sim-trace_h) \
331 $(sim-core_h) \
332 $(sim-events_h) \
333 $(sim-profile_h) \
334 $(sim-model_h) \
335 $(sim-io_h) \
336 $(sim-engine_h) \
337 $(sim-watch_h) \
338 $(sim-memopt_h) \
339 $(sim-cpu_h)
340 sim-basics_h = $(srccom)/sim-basics.h \
341 $(sim-config_h) \
342 $(callback_h) \
343 $(sim-inline_h) \
344 $(sim-types_h) \
345 $(sim-bits_h) \
346 $(sim-endian_h) \
347 $(sim-signal_h) \
348 $(sim-arange_h) \
349 $(sim-utils_h)
350 sim-bits_h = $(srccom)/sim-bits.h \
351 $(srccom)/sim-bits.c
352 sim-config_h = $(srccom)/sim-config.h
353 sim-core_h = $(srccom)/sim-core.h
354 sim-cpu_h = $(srccom)/sim-cpu.h
355 sim-endian_h = $(srccom)/sim-endian.h \
356 $(srccom)/sim-endian.c
357 sim-engine_h = $(srccom)/sim-engine.h
358 sim-events_h = $(srccom)/sim-events.h
359 sim-fpu_h = $(srccom)/sim-fpu.h
360 sim-hw_h = $(srccom)/sim-hw.h
361 sim-inline_h = $(srccom)/sim-inline.h
362 sim-io_h = $(srccom)/sim-io.h
363 sim-memopt_h = $(srccom)/sim-memopt.h
364 sim-model_h = $(srccom)/sim-model.h
365 sim-module_h = $(srccom)/sim-module.h
366 sim-n-bits_h = $(srccom)/sim-n-bits.h
367 sim-n-core_h = $(srccom)/sim-n-core.h
368 sim-n-endian_h = $(srccom)/sim-n-endian.h
369 sim-options_h = $(srccom)/sim-options.h
370 sim-profile_h = $(srccom)/sim-profile.h
371 sim-signal_h = $(srccom)/sim-signal.h
372 sim-trace_h = $(srccom)/sim-trace.h
373 sim-types_h = $(srccom)/sim-types.h
374 sim-utils_h = $(srccom)/sim-utils.h
375 sim-watch_h = $(srccom)/sim-watch.h
376
377 hw-alloc_h = $(srccom)/hw-alloc.h
378 hw-base_h = $(srccom)/hw-base.h
379 hw-device_h = $(srccom)/hw-device.h
380 hw-events_h = $(srccom)/hw-events.h
381 hw-handles_h = $(srccom)/hw-handles.h
382 hw-instances_h = $(srccom)/hw-instances.h
383 hw-ports_h = $(srccom)/hw-ports.h
384 hw-properties_h = $(srccom)/hw-properties.h
385 hw-tree_h = $(srccom)/hw-tree.h
386
387 hw_main_headers = \
388 $(srccom)/hw-main.h \
389 $(hw-alloc_h) \
390 $(hw-base_h) \
391 $(hw-device_h) \
392 $(hw-events_h) \
393 $(hw-instances_h) \
394 $(hw-handles_h) \
395 $(hw-ports_h) \
396 $(hw-properties_h) \
397
398 #
399 # Dependency tracking. Most of this is conditional on GNU Make being
400 # found by configure; if GNU Make is not found, we fall back to a
401 # simpler scheme.
402 #
403
404 ifeq ($(DEPMODE),depmode=gcc3)
405 # Note that we put the dependencies into a .Tpo file, then move them
406 # into place if the compile succeeds. We need this because gcc does
407 # not atomically write the dependency output file.
408 override COMPILE.post = -c -o $@ -MT $@ -MMD -MP \
409 -MF $(DEPDIR)/$(basename $(@F)).Tpo
410 override POSTCOMPILE = @mv $(DEPDIR)/$(basename $(@F)).Tpo \
411 $(DEPDIR)/$(basename $(@F)).Po
412 else
413 override COMPILE.pre = source='$<' object='$@' libtool=no \
414 DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) $(CC)
415 # depcomp handles atomicity for us, so we don't need a postcompile
416 # step.
417 override POSTCOMPILE =
418 endif
419
420 all_object_files = $(LIB_OBJS) $(SIM_RUN_OBJS)
421 generated_files = \
422 $(SIM_EXTRA_DEPS) \
423 hw-config.h \
424 modules.c \
425 targ-map.c \
426 targ-vals.h \
427 version.c
428
429 # Ensure that generated files are created early. Use order-only
430 # dependencies if available. They require GNU make 3.80 or newer,
431 # and the .VARIABLES variable was introduced at the same time.
432 ifdef .VARIABLES
433 $(all_object_files): | $(generated_files)
434 else
435 $(all_object_files) : $(generated_files)
436 endif
437
438 # Dependencies.
439 -include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))
440
441 # FIXME This is one very simple-minded way of generating the file hw-config.h
442 hw-config.h: stamp-hw ; @true
443 stamp-hw: Makefile.in $(srccom)/Make-common.in config.status Makefile
444 rm -f tmp-hw.h
445 echo "/* generated by Makefile */" > tmp-hw.h
446 sim_hw="$(SIM_HW)"; \
447 for hw in $$sim_hw ; do \
448 echo "extern const struct hw_descriptor dv_$${hw}_descriptor[];" ; \
449 done >> tmp-hw.h
450 echo "const struct hw_descriptor *hw_descriptors[] = {" >> tmp-hw.h
451 sim_hw="$(SIM_HW)"; \
452 for hw in $$sim_hw ; do \
453 echo " dv_$${hw}_descriptor," ; \
454 done >> tmp-hw.h
455 echo " NULL," >> tmp-hw.h
456 echo "};" >> tmp-hw.h
457 $(SHELL) $(srcroot)/move-if-change tmp-hw.h hw-config.h
458 @echo stamp > stamp-hw
459
460 test-hw-events: $(srccom)/hw-events.c libsim.a
461 $(CC) $(ALL_CFLAGS) -DMAIN -o test-hw-events$(EXEEXT) \
462 $(srccom)/hw-events.c libsim.a $(EXTRA_LIBS)
463
464 # See sim_pre_argv_init and sim_module_install in sim-module.c for more details.
465 modules.c: Makefile $(SIM_OBJS:.o=.c)
466 @echo Generating $@
467 @LANG=C ; export LANG ; \
468 LC_ALL=C ; export LC_ALL ; \
469 sed -n -e '/^sim_install_/{s/^\(sim_install_[a-z_0-9A-Z]*\).*/\1/;p}' $^ | sort >$@.l-tmp
470 @set -e; (\
471 echo '/* Do not modify this file. */'; \
472 echo '/* It is created automatically by the Makefile. */'; \
473 echo '#include "libiberty.h"'; \
474 echo '#include "sim-module.h"'; \
475 sed -e 's:\(.*\):extern __attribute__((__weak__)) MODULE_INIT_FN \1;:' $@.l-tmp; \
476 echo 'MODULE_INSTALL_FN * const sim_modules_detected[] = {'; \
477 sed -e 's:\(.*\): \1,:' $@.l-tmp; \
478 echo '};'; \
479 echo 'const int sim_modules_detected_len = ARRAY_SIZE (sim_modules_detected);'; \
480 ) >$@.tmp
481 $(SHELL) $(srcroot)/move-if-change $@.tmp $@
482 @rm -f $@.l-tmp $@.tmp
483
484 # CGEN support.
485
486 # For use in Makefile.in for cpu-specific files.
487 CGEN_MAIN_CPU_DEPS = \
488 $(SIM_MAIN_DEPS) \
489 $(srccom)/cgen-ops.h \
490 $(srccom)/cgen-mem.h
491
492 # Support targets.
493
494 install: install-common $(SIM_EXTRA_INSTALL)
495
496 install-common: installdirs
497 a=`basename "$$(pwd)"`; \
498 n=`echo run | sed '$(program_transform_name)'`; \
499 [ "$(SIM_PRIMARY_TARGET)" = "$$a" ] || n="$$n-$$a"; \
500 $(INSTALL_PROGRAM) run$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
501 n="$(target_alias)-sim"; \
502 a=`basename "$$(pwd)"`; \
503 [ "$(SIM_PRIMARY_TARGET)" = "$$a" ] || n="$$n-$$a"; \
504 n="lib$$n.a"; \
505 $(INSTALL_DATA) libsim.a $(DESTDIR)$(libdir)/$$n ; \
506 ( cd $(DESTDIR)$(libdir) ; $(RANLIB) $$n )
507
508 installdirs:
509 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir)
510 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir)
511
512 check:
513
514 info:
515 clean-info:
516 install-info:
517
518 .NOEXPORT:
519 MAKEOVERRIDES=
520
521 tags etags: TAGS
522
523 # Macros like EXTERN_SIM_CORE confuse tags.
524 # And the sim-n-foo.h files create functions that can't be found either.
525 TAGS: force
526 cd $(srcdir) && \
527 etags --regex '/^\([[:lower:]_]+\) (/\1/' --regex '/^\/[*] TAGS: .*/' \
528 *.[ch] ../common/*.[ch]
529
530 mostlyclean clean: $(SIM_EXTRA_CLEAN)
531 rm -f *.[oa] *~ core
532 rm -f run$(EXEEXT) libsim.a
533 rm -f hw-config.h stamp-hw
534 rm -f gentmap targ-map.c targ-vals.h stamp-tvals
535 if [ ! -f Make-common.in ] ; then \
536 rm -f $(BUILT_SRC_FROM_COMMON) ; \
537 fi
538 rm -f tmp-mloop.hin tmp-mloop.h tmp-mloop.cin tmp-mloop.c
539
540 distclean maintainer-clean realclean: clean $(SIM_EXTRA_DISTCLEAN)
541 rm -f TAGS
542 rm -f Makefile config.cache config.log config.status .gdbinit
543 rm -f config.h stamp-h
544
545 .c.o:
546 $(COMPILE) $<
547 $(POSTCOMPILE)
548
549 # Dummy target to force execution of dependent targets.
550 force:
551
552 Makefile: Makefile.in $(srccom)/Make-common.in config.status
553 CONFIG_HEADERS= $(SHELL) ./config.status
554
555 config.status: configure
556 $(SHELL) ./config.status --recheck
557
558 config.h: stamp-h ; @true
559 stamp-h: config.in config.status
560 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
561
562 .gdbinit: # config.status $(srccom)/gdbinit.in
563 CONFIG_FILES=$@:../common/gdbinit.in CONFIG_HEADERS= $(SHELL) ./config.status
564
565
566 # CGEN support
567
568 CGENDIR = @cgendir@
569 CGEN = "`if [ -f ../../guile/libguile/guile ]; then echo ../../guile/libguile/guile; else echo guile ; fi` -l $(CGENDIR)/guile.scm -s"
570 CGENFLAGS = -v
571 CGEN_CPU_DIR = $(CGENDIR)/cpu
572
573 # Most ports use the files here instead of cgen/cpu.
574 CPU_DIR = $(srcroot)/cpu
575
576 CGEN_READ_SCM = $(CGENDIR)/sim.scm
577 CGEN_ARCH_SCM = $(CGENDIR)/sim-arch.scm
578 CGEN_CPU_SCM = $(CGENDIR)/sim-cpu.scm $(CGENDIR)/sim-model.scm
579 CGEN_DECODE_SCM = $(CGENDIR)/sim-decode.scm
580 CGEN_DESC_SCM = $(CGENDIR)/desc.scm $(CGENDIR)/desc-cpu.scm
581
582 # Various choices for which cpu specific files to generate.
583 # These are passed to cgen.sh in the "extrafiles" argument.
584 CGEN_CPU_EXTR = /extr/
585 CGEN_CPU_READ = /read/
586 CGEN_CPU_WRITE = /write/
587 CGEN_CPU_SEM = /sem/
588 CGEN_CPU_SEMSW = /semsw/
589
590 CGEN_FLAGS_TO_PASS = \
591 CGEN='$(CGEN)' \
592 CGENFLAGS="$(CGENFLAGS)"
593
594 # We store the generated files in the source directory until we decide to
595 # ship a Scheme interpreter with gdb/binutils. Maybe we never will.
596
597 cgen-arch: force
598 $(SHELL) $(srccom)/cgen.sh arch $(srcdir) \
599 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
600 $(arch) "$(FLAGS)" ignored "$(isa)" $(mach) ignored \
601 $(archfile) ignored
602
603 cgen-cpu: force
604 $(SHELL) $(srccom)/cgen.sh cpu $(srcdir) \
605 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
606 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
607 $(archfile) "$(EXTRAFILES)"
608
609 cgen-defs: force
610 $(SHELL) $(srccom)/cgen.sh defs $(srcdir) \
611 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
612 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
613 $(archfile) ignored
614
615 cgen-decode: force
616 $(SHELL) $(srccom)/cgen.sh decode $(srcdir) \
617 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
618 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
619 $(archfile) "$(EXTRAFILES)"
620
621 cgen-cpu-decode: force
622 $(SHELL) $(srccom)/cgen.sh cpu-decode $(srcdir) \
623 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
624 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
625 $(archfile) "$(EXTRAFILES)"
626
627 cgen-desc: force
628 $(SHELL) $(srccom)/cgen.sh desc $(srcdir) \
629 $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \
630 $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \
631 $(archfile) ignored $(opcfile)
632
633 ## End COMMON_POST_CONFIG_FRAG
This page took 0.058681 seconds and 4 git commands to generate.