1995-02-18 01:27:10 +00:00
|
|
|
# Makefile for csu code for GNU C library.
|
|
|
|
|
1997-04-18 00:20:23 +00:00
|
|
|
# Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
|
1995-02-18 01:27:10 +00:00
|
|
|
# This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
# The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Library General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2 of
|
|
|
|
# the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
# The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Library General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU Library General Public
|
1996-12-20 01:39:50 +00:00
|
|
|
# License along with the GNU C Library; see the file COPYING.LIB. If not,
|
|
|
|
# write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
# Boston, MA 02111-1307, USA.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
# This directory contains the C startup code (that which calls main). This
|
|
|
|
# consists of the startfile, built from start.c and installed as crt0.o
|
1995-09-26 20:59:38 +00:00
|
|
|
# (traditionally) or crt1.o (for ELF). In ELF we also install crti.o and
|
|
|
|
# crtn.o, special "initializer" and "finalizer" files in used in the link
|
|
|
|
# to make the .init and .fini sections work right; both these files are
|
|
|
|
# built (in an arcane manner) from initfini.c.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
subdir := csu
|
|
|
|
|
1996-06-12 01:34:32 +00:00
|
|
|
routines = init-first
|
1995-02-18 01:27:10 +00:00
|
|
|
csu-dummies = $(filter-out $(start-installed-name),crt1.o Mcrt1.o)
|
1995-09-26 20:59:38 +00:00
|
|
|
extra-objs = start.o gmon-start.o \
|
|
|
|
$(start-installed-name) g$(start-installed-name) \
|
|
|
|
$(csu-dummies)
|
|
|
|
omit-deps = $(patsubst %.o,%,$(start-installed-name) g$(start-installed-name) \
|
|
|
|
$(csu-dummies))
|
|
|
|
install-lib = $(start-installed-name) g$(start-installed-name) \
|
|
|
|
$(csu-dummies)
|
1997-04-30 15:51:34 +00:00
|
|
|
distribute = initfini.c gmon-start.c start.c defs.awk abi-note.S abi-tag.h
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
all: # Make this the default target; it will be defined in Rules.
|
|
|
|
|
|
|
|
include ../Makeconfig
|
|
|
|
|
1995-07-27 09:00:07 +00:00
|
|
|
|
1997-04-18 00:20:23 +00:00
|
|
|
ifeq ($(have-initfini),yes)
|
1995-02-21 06:02:58 +00:00
|
|
|
|
1996-01-16 22:37:27 +00:00
|
|
|
CPPFLAGS += -DHAVE_INITFINI
|
|
|
|
|
1995-02-21 06:02:58 +00:00
|
|
|
# These are the special initializer/finalizer files. They are always the
|
1995-07-26 14:04:19 +00:00
|
|
|
# first and last file in the link. crti.o ... crtn.o define the global
|
|
|
|
# "functions" _init and _fini to run the .init and .fini sections.
|
|
|
|
crtstuff = crti crtn
|
1995-02-21 06:02:58 +00:00
|
|
|
|
1997-06-29 22:05:27 +00:00
|
|
|
# If we need separate startup code, require separate code.
|
|
|
|
ifeq ($(need-nopic-initfini),yes)
|
|
|
|
crtstuff += crtiS crtnS
|
|
|
|
endif
|
|
|
|
|
1995-02-21 06:02:58 +00:00
|
|
|
install-lib += $(crtstuff:=.o)
|
|
|
|
extra-objs += $(crtstuff:=.o)
|
1997-06-29 22:05:27 +00:00
|
|
|
generated += $(crtstuff:=.S) initfini.s initfiniS.s align.h end.h
|
1995-02-21 06:02:58 +00:00
|
|
|
omit-deps += $(crtstuff)
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1997-04-18 00:20:23 +00:00
|
|
|
# Special rules for the building of crti.o and crtn.o
|
|
|
|
$(objpfx)crt%.o: $(objpfx)crt%.S $(objpfx)defs.h
|
1997-06-29 22:05:27 +00:00
|
|
|
$(compile.S) -g0 -o $@
|
1997-04-18 00:20:23 +00:00
|
|
|
|
|
|
|
$(objpfx)initfini.s: initfini.c
|
1997-06-29 22:05:27 +00:00
|
|
|
$(compile.c) -g0 -S -finhibit-size-directive \
|
|
|
|
$(no-exceptions) -o $@
|
|
|
|
|
|
|
|
$(objpfx)initfiniS.s: initfini.c
|
1997-06-21 02:59:26 +00:00
|
|
|
$(compile.c) -g0 -S -fPIC -finhibit-size-directive \
|
|
|
|
$(no-exceptions) -o $@
|
1997-04-18 00:20:23 +00:00
|
|
|
|
1997-06-29 22:05:27 +00:00
|
|
|
ifneq ($(need-nopic-initfini),yes)
|
|
|
|
# We only have one kind of startup code files. Static binaries and
|
|
|
|
# shared libraries are build using the PIC version.
|
|
|
|
$(objpfx)crti.S: $(objpfx)initfiniS.s
|
|
|
|
sed -n -e '1,/@HEADER_ENDS/p' \
|
|
|
|
-e '/@_.*_PROLOG_BEGINS/,/@_.*_PROLOG_ENDS/p' \
|
|
|
|
-e '/@TRAILER_BEGINS/,$$p' $< > $@
|
|
|
|
|
|
|
|
$(objpfx)crtn.S: $(objpfx)initfiniS.s
|
|
|
|
sed -n -e '1,/@HEADER_ENDS/p' \
|
|
|
|
-e '/@_.*_EPILOG_BEGINS/,/@_.*_EPILOG_ENDS/p' \
|
|
|
|
-e '/@TRAILER_BEGINS/,$$p' $< > $@
|
|
|
|
else
|
|
|
|
# We have to build two versions, one with one without PIC code.
|
1997-04-18 00:20:23 +00:00
|
|
|
$(objpfx)crti.S: $(objpfx)initfini.s
|
|
|
|
sed -n -e '1,/@HEADER_ENDS/p' \
|
|
|
|
-e '/@_.*_PROLOG_BEGINS/,/@_.*_PROLOG_ENDS/p' \
|
|
|
|
-e '/@TRAILER_BEGINS/,$$p' $< > $@
|
|
|
|
|
|
|
|
$(objpfx)crtn.S: $(objpfx)initfini.s
|
|
|
|
sed -n -e '1,/@HEADER_ENDS/p' \
|
|
|
|
-e '/@_.*_EPILOG_BEGINS/,/@_.*_EPILOG_ENDS/p' \
|
|
|
|
-e '/@TRAILER_BEGINS/,$$p' $< > $@
|
|
|
|
|
1997-06-29 22:05:27 +00:00
|
|
|
$(objpfx)crtiS.S: $(objpfx)initfiniS.s
|
|
|
|
sed -n -e '1,/@HEADER_ENDS/p' \
|
|
|
|
-e '/@_.*_PROLOG_BEGINS/,/@_.*_PROLOG_ENDS/p' \
|
|
|
|
-e '/@TRAILER_BEGINS/,$$p' $< > $@
|
|
|
|
|
|
|
|
$(objpfx)crtnS.S: $(objpfx)initfiniS.s
|
|
|
|
sed -n -e '1,/@HEADER_ENDS/p' \
|
|
|
|
-e '/@_.*_EPILOG_BEGINS/,/@_.*_EPILOG_ENDS/p' \
|
|
|
|
-e '/@TRAILER_BEGINS/,$$p' $< > $@
|
|
|
|
endif
|
|
|
|
|
1997-04-18 00:20:23 +00:00
|
|
|
$(objpfx)defs.h: $(objpfx)initfini.s
|
|
|
|
sed -n -e '/@TESTS_BEGIN/,/@TESTS_END/p' $< | \
|
|
|
|
awk -f defs.awk > $@
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1995-02-21 06:02:58 +00:00
|
|
|
endif
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1997-05-07 15:31:21 +00:00
|
|
|
ifeq (yes,$(elf))
|
|
|
|
extra-objs += abi-note.o
|
|
|
|
endif
|
|
|
|
|
1995-02-18 01:27:10 +00:00
|
|
|
include ../Rules
|
|
|
|
|
1997-04-30 15:51:34 +00:00
|
|
|
define link-relocatable
|
|
|
|
$(CC) -nostdlib -nostartfiles -r -o $@ $^
|
|
|
|
endef
|
|
|
|
|
1995-07-27 09:00:07 +00:00
|
|
|
ifndef start-installed-name-rule
|
1997-04-30 15:51:34 +00:00
|
|
|
ifeq (yes,$(elf))
|
|
|
|
# We link the ELF startfile along with a SHT_NOTE section indicating
|
|
|
|
# the the kernel ABI the binaries linked with this library will require.
|
|
|
|
$(objpfx)$(start-installed-name): $(objpfx)start.o $(objpfx)abi-note.o
|
|
|
|
$(link-relocatable)
|
|
|
|
else
|
1995-02-18 01:27:10 +00:00
|
|
|
# The startfile is installed under different names, so we just call our
|
|
|
|
# source file `start.c' and copy to the installed name after compiling.
|
|
|
|
$(objpfx)$(start-installed-name): $(objpfx)start.o
|
1997-04-30 15:51:34 +00:00
|
|
|
rm -f $@
|
1995-02-18 01:27:10 +00:00
|
|
|
ln $< $@
|
1995-07-27 09:00:07 +00:00
|
|
|
endif
|
1997-04-30 15:51:34 +00:00
|
|
|
endif
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1995-09-26 20:59:38 +00:00
|
|
|
# The profiling startfile is made by linking together the normal
|
|
|
|
# startfile with gmon-start.o, which defines a constructor function
|
|
|
|
# to turn on profiling code at startup.
|
1997-04-30 15:51:34 +00:00
|
|
|
$(objpfx)g$(start-installed-name): $(objpfx)$(start-installed-name) \
|
|
|
|
$(objpfx)gmon-start.o
|
|
|
|
$(link-relocatable)
|
1995-09-26 20:59:38 +00:00
|
|
|
|
1995-02-18 01:27:10 +00:00
|
|
|
# These extra files are sometimes expected by system standard linking
|
|
|
|
# procedures, but we have nothing for them to do. So compile empty files.
|
|
|
|
$(addprefix $(objpfx),$(filter-out $(start-installed-name),$(csu-dummies))):
|
|
|
|
cp /dev/null $(@:.o=.c)
|
|
|
|
$(COMPILE.c) $(@:.o=.c) $(OUTPUT_OPTION)
|
|
|
|
rm -f $(@:.o=.c)
|