-
Notifications
You must be signed in to change notification settings - Fork 47
/
Makefile-gcc
178 lines (142 loc) · 5.04 KB
/
Makefile-gcc
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
include common.mk
all: vex
##
## Step 1: A bunch of defines
##
ifeq ($(MULTIARCH),1)
LIB_OBJS = $(NORMAL_OBJS) $(MULTIARCH_OBJS)
else
LIB_OBJS = $(NORMAL_OBJS) $(SINGLEARCH_OBJS)
endif
# NOTE: GNU make will automatically set CC and AR, so these conditional
# assignments will never do anything. just here for posterity.
# https://www.gnu.org/software/make/manual/html_node/Implicit-Variables.html
CC ?= cc
CC_NATIVE ?= cc
AR ?= ar
RM ?= rm -f
# Don't worry about Windows not having shell, Makefile-msvc will deal
# with it`
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S), Darwin)
AR = /usr/bin/ar
endif
STATIC_LIBRARY_FILE = libvex.a
DYNAMIC_LIBRARY_FILE = libvex.so
EXTRA_CLEAN_FILES = TAG-* auxprogs/genoffsets
CFLAGS := -Ipub -Ipriv \
-Wall -Wmissing-prototypes -Wstrict-prototypes -Wshadow \
-Wpointer-arith -Wbad-function-cast -Wcast-qual \
-Wcast-align -Wmissing-declarations \
-Wwrite-strings -Wformat -Wformat-security \
-std=gnu99 -fstrict-aliasing -fPIC \
-DPYVEX \
$(EXTRA_CFLAGS)
# If not debugging, put -g -O2 after any flags we inherit from our invoker
# -O2 vs -O makes a significant difference, at least with gcc4
ifeq ($(DEBUG),1)
CFLAGS += -g
else
CFLAGS += -O2
endif
# These are a separate set of defines that compile for parallel environments
#CC = icc
#CFLAGS = -g -Wall -wd981 -wd279 -wd1287 -wd869 -wd111 -wd188 -wd186
# 981: operands are evaluated in unspecified order
# 279: controlling expression is constant
# 1287: invalid attribute for parameter
# 869: parameter "..." was never referenced
# 111: statement is unreachable
# 188: enumerated type mixed with another type
# (the above are for icc 8.0 -- 8.0.0.55 I think)
# 186: pointless comparison of unsigned integer with zero
# kludge: stops V biarch builds screwing up at -j 2 or above
# The Right fix is to autoconf/automake-ise vex.
.NOTPARALLEL:
##
## Step 2: Define some build rules
##
pub/libvex_guest_offsets.h: $(PUB_HEADERS) auxprogs/genoffsets.c
$(CC_NATIVE) $(CFLAGS) -o auxprogs/genoffsets auxprogs/genoffsets.c
auxprogs/genoffsets > pub/libvex_guest_offsets.h
%.o: %.c $(ALL_HEADERS)
$(CC) -c -o $@ $(CFLAGS) $<
$(STATIC_LIBRARY_FILE): $(LIB_OBJS) priv/main_main.c
$(RM) $@
$(AR) -crs $@ $(LIB_OBJS)
$(DYNAMIC_LIBRARY_FILE): $(LIB_OBJS) priv/main_main.c
$(CC) -o $@ -shared $(CFLAGS) $(LIB_OBJS)
##
## Step 3: a bunch of extra build rules that valgrind would like to use
##
minidist:
rm -f vex--minidist-2005MMDD.tar
tar cf vex--minidist-2005MMDD.tar $(PUB_HEADERS) $(PRIV_HEADERS) \
Makefile-gcc Makefile conf_unix.mk \
`echo $(LIB_OBJS) | sed "s/\.o/\.c/g"`
@echo
@echo minidist done, size follows:
@ls -l vex--minidist-2005MMDD.tar
@echo
# The idea with these TAG-s is to mark the flavour of libvex.a
# most recently built, so if the same target is re-requested, we
# don't rebuild everything, but if a different one is requested
# then we scrub everything and start over.
libvex-x86-linux.a: TAG-x86-linux libvex.a
mv -f libvex.a libvex-x86-linux.a
TAG-x86-linux:
if [ ! -f TAG-x86-linux ] ; then rm -f $(LIB_OBJS) TAG-* libvex.a ; fi
touch TAG-x86-linux
libvex-amd64-linux.a: TAG-amd64-linux libvex.a
mv -f libvex.a libvex-amd64-linux.a
TAG-amd64-linux:
if [ ! -f TAG-amd64-linux ] ; then rm -f $(LIB_OBJS) TAG-* libvex.a ; fi
touch TAG-amd64-linux
libvex-ppc32-linux.a: TAG-ppc32-linux libvex.a
mv -f libvex.a libvex-ppc32-linux.a
TAG-ppc32-linux:
if [ ! -f TAG-ppc32-linux ] ; then rm -f $(LIB_OBJS) TAG-* libvex.a ; fi
touch TAG-ppc32-linux
libvex-ppc64-linux.a: TAG-ppc64-linux libvex.a
mv -f libvex.a libvex-ppc64-linux.a
TAG-ppc64-linux:
if [ ! -f TAG-ppc64-linux ] ; then rm -f $(LIB_OBJS) TAG-* libvex.a ; fi
touch TAG-ppc64-linux
libvex-mips-linux.a: TAG-mips32-linux libvex.a
mv -f libvex.a libvex-mips32-linux.a
TAG-mips-linux:
if [ ! -f TAG-mips32-linux ] ; then rm -f $(LIB_OBJS) TAG-* libvex.a ; fi
touch TAG-mips32-linux
libvex-ppc32-aix5.a: TAG-ppc32-aix5 libvex.a
mv -f libvex.a libvex-ppc32-aix5.a
TAG-ppc32-aix5:
if [ ! -f TAG-ppc32-aix5 ] ; then rm -f $(LIB_OBJS) TAG-* libvex.a ; fi
touch TAG-ppc32-aix5
libvex-ppc64-aix5.a: TAG-ppc64-aix5 libvex.a
mv -f libvex.a libvex-ppc64-aix5.a
TAG-ppc64-aix5:
if [ ! -f TAG-ppc64-aix5 ] ; then rm -f $(LIB_OBJS) TAG-* libvex.a ; fi
touch TAG-ppc64-aix5
libvex-x86-darwin.a: TAG-x86-darwin libvex.a
mv -f libvex.a libvex-x86-darwin.a
TAG-x86-darwin:
if [ ! -f TAG-x86-darwin ] ; then rm -f $(LIB_OBJS) TAG-* libvex.a ; fi
touch TAG-x86-darwin
libvex-amd64-darwin.a: TAG-amd64-darwin libvex.a
mv -f libvex.a libvex-amd64-darwin.a
TAG-amd64-darwin:
if [ ! -f TAG-amd64-darwin ] ; then rm -f $(LIB_OBJS) TAG-* libvex.a ; fi
touch TAG-amd64-darwin
libvex-arm64-linux.a: TAG-arm64-linux libvex.a
mv -f libvex.a libvex-arm64-linux.a
TAG-arm64-linux:
if [ ! -f TAG-arm64-linux ] ; then rm -f $(LIB_OBJS) TAG-* libvex.a ; fi
touch TAG-arm64-linux
# Empty, needed for Valgrind
install:
scratch: clean all
vex: $(STATIC_LIBRARY_FILE) $(DYNAMIC_LIBRARY_FILE)
clean:
$(RM) $(GEN_HEADERS) $(NORMAL_OBJS) $(SINGLEARCH_OBJS) $(MULTIARCH_OBJS) \
$(STATIC_LIBRARY_FILE) $(DYNAMIC_LIBRARY_FILE) \
$(EXTRA_CLEAN_FILES)