summaryrefslogtreecommitdiff
path: root/test/Rules.mak
blob: c5d1d636c5238f539e0a353333080a5e4ec40c53 (plain)
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
# Rules.mak for uClibc test subdirs
#
# Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
#
# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
#

.SUFFIXES:

top_builddir ?= ../
abs_top_builddir ?= $(shell cd $(top_builddir); pwd)/

TESTDIR=$(top_builddir)test/

include $(top_srcdir)Rules.mak
ifeq ($(filter $(clean_targets) CLEAN_%,$(MAKECMDGOALS)),)
ifeq ($(HAVE_DOT_CONFIG),)
$(error no HAVE_DOT_CONFIG, failed to read .config)
endif
endif

ifdef UCLIBC_LDSO
ifeq (,$(findstring /,$(UCLIBC_LDSO)))
UCLIBC_LDSO := $(UCLIBC_LDSO)
else
UCLIBC_LDSO := $(notdir $(UCLIBC_LDSO))
endif
else
UCLIBC_LDSO := $(notdir $(firstword $(wildcard $(top_builddir)lib/ld*)))
endif
ifndef TEST_INSTALLED_UCLIBC
ifeq ($(LDSO_SAFE_RUNPATH),y)
UCLIBC_PATH := $(abs_top_builddir)lib
else
UCLIBC_PATH := $(top_builddir)lib
endif
else
UCLIBC_PATH := $(RUNTIME_PREFIX)$(MULTILIB_DIR)
endif
#--------------------------------------------------------
# Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.
LC_ALL:= C
export LC_ALL

ifeq ($(strip $(TARGET_ARCH)),)
TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \
	-e 's/i.86/i386/' \
	-e 's/sun.*/sparc/' -e 's/sparc.*/sparc/' \
	-e 's/sa110/arm/' -e 's/arm.*/arm/g' \
	-e 's/m68k.*/m68k/' \
	-e 's/parisc.*/hppa/' \
	-e 's/ppc/powerpc/g' \
	-e 's/v850.*/v850/g' \
	-e 's/sh[234]/sh/' \
	-e 's/mips.*/mips/' \
	-e 's/cris.*/cris/' \
	-e 's/xtensa.*/xtensa/' \
	)
endif
export TARGET_ARCH

RM_R = $(Q)$(RM) -r
LN_S = $(Q)$(LN) -fs

ifneq ($(KERNEL_HEADERS),)
ifeq ($(patsubst /%,/,$(KERNEL_HEADERS)),/)
# Absolute path in KERNEL_HEADERS
KERNEL_INCLUDES += -I$(KERNEL_HEADERS)
else
# Relative path in KERNEL_HEADERS
KERNEL_INCLUDES += -I$(top_builddir)$(KERNEL_HEADERS)
endif
endif

XCOMMON_CFLAGS := -I$(top_builddir)test -D_GNU_SOURCE
XWARNINGS      += $(CFLAG_-Wstrict-prototypes)
CFLAGS         := -nostdinc -I$(top_builddir)$(LOCAL_INSTALL_PATH)/usr/include
CFLAGS         += $(XCOMMON_CFLAGS) $(KERNEL_INCLUDES) $(CC_INC)
CFLAGS         += $(OPTIMIZATION) $(CPU_CFLAGS) $(XWARNINGS)

$(eval $(call check-gcc-var,-Wno-missing-field-initializers))
CFLAGS         += $(CFLAG_-Wno-missing-field-initializers)

# Can't add $(OPTIMIZATION) here, it may be target-specific.
# Just adding -Os for now.
HOST_CFLAGS    += $(XCOMMON_CFLAGS) -Os $(XWARNINGS) -std=gnu99

LDFLAGS        := $(CPU_LDFLAGS-y) -Wl,-z,now
ifeq ($(DODEBUG),y)
	CFLAGS        += -g
	HOST_CFLAGS   += -g
	LDFLAGS       += -Wl,-g
	HOST_LDFLAGS  += -Wl,-g
else
	LDFLAGS       += -Wl,-s
	HOST_LDFLAGS  += -Wl,-s
endif

ifneq ($(HAVE_SHARED),y)
	LDFLAGS       += -Wl,-static -static-libgcc
endif

ifndef TEST_INSTALLED_UCLIBC
LDFLAGS += -B$(UCLIBC_PATH) -Wl,-rpath,$(UCLIBC_PATH):$(shell pwd) -Wl,-rpath-link,$(UCLIBC_PATH):$(shell pwd)
else
LDFLAGS += -Wl,-rpath,$(shell pwd)
endif

ifeq ($(findstring -static,$(LDFLAGS)),)
LDFLAGS += -Wl,--dynamic-linker,$(UCLIBC_PATH)/$(UCLIBC_LDSO)
endif

ifeq ($(LDSO_GNU_HASH_SUPPORT),y)
# Check for binutils support is done on root Rules.mak
LDFLAGS += $(CFLAG_-Wl--hash-style=gnu)
endif

ifneq ($(strip $(UCLIBC_EXTRA_CFLAGS)),"")
CFLAGS += $(call qstrip,$(UCLIBC_EXTRA_CFLAGS))
endif
ifneq ($(strip $(UCLIBC_EXTRA_LDFLAGS)),"")
LDFLAGS += $(call qstrip,$(UCLIBC_EXTRA_LDFLAGS))
endif

ifneq ($(findstring -s,$(MAKEFLAGS)),)
DISP := sil
Q    := @
SCAT := -@true
else
ifneq ($(V)$(VERBOSE),)
DISP := ver
Q    :=
SCAT := cat
else
DISP := pur
Q    := @
SCAT := -@true
endif
endif
ifneq ($(Q),)
MAKEFLAGS += --no-print-directory
endif

banner := ---------------------------------
pur_showclean = echo "  "CLEAN $(notdir $(CURDIR))
pur_showdiff  = echo "  "TEST_DIFF $(notdir $(CURDIR))/
pur_showlink  = echo "  "TEST_LINK $(notdir $(CURDIR))/ $@
pur_showtest  = echo "  "TEST_EXEC $(notdir $(CURDIR))/ $(@:.exe=)
sil_showclean =
sil_showdiff  = true
sil_showlink  = true
sil_showtest  = true
ver_showclean =
ver_showdiff  = true echo
ver_showlink  = true echo
ver_showtest  = printf "\n$(banner)\nTEST $(notdir $(CURDIR))/ $(@:.exe=)\n$(banner)\n"
do_showclean  = $($(DISP)_showclean)
do_showdiff   = $($(DISP)_showdiff)
do_showlink   = $($(DISP)_showlink)
do_showtest   = $($(DISP)_showtest)
showclean = @$(do_showclean)
showdiff  = @$(do_showdiff)
showlink  = @$(do_showlink)
showtest  = @$(do_showtest)