source: mainline/uspace/Makefile.common@ 30785f1

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 30785f1 was dc68f72, checked in by Jiří Zárevúcky <jiri.zarevucky@…>, 7 years ago

Bump language version to gnu11

  • Property mode set to 100644
File size: 11.2 KB
Line 
1#
2# Copyright (c) 2005 Martin Decky
3# Copyright (c) 2007 Jakub Jermar
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions
8# are met:
9#
10# - Redistributions of source code must retain the above copyright
11# notice, this list of conditions and the following disclaimer.
12# - Redistributions in binary form must reproduce the above copyright
13# notice, this list of conditions and the following disclaimer in the
14# documentation and/or other materials provided with the distribution.
15# - The name of the author may not be used to endorse or promote products
16# derived from this software without specific prior written permission.
17#
18# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28#
29
30# Individual makefiles set:
31#
32# USPACE_PREFIX (*) relative path to uspace/ directory
33# SOURCES (*) list of source files
34# LIBS libraries to link with
35# DEFS compiler defines
36# EXTRA_CFLAGS additional flags to pass to C compiler
37# PRE_DEPEND targets required for dependency check
38#
39# BINARY (/) binary output name (like appname)
40# LIBRARY (/) library output name (like libname)
41#
42# EXTRA_OUTPUT additional output targets
43# EXTRA_CLEAN additional cleanup targets
44#
45# Optionally, for a binary:
46# STATIC_NEEDED set to 'y' for init binaries, will build statically
47# linked version
48# STATIC_ONLY set to 'y' if binary cannot be linked dynamically
49# (e.g. uses thread-local variables)
50#
51# Optionally, for a library:
52# SOVERSION shared library version (major.minor),
53# if missing, no shared library is built
54#
55# (x) required variables
56# (/) exactly one of the variables must be defined
57#
58
59ROOT_PATH = $(USPACE_PREFIX)/..
60
61VERSION_DEF = $(ROOT_PATH)/version
62
63COMMON_MAKEFILE = $(ROOT_PATH)/Makefile.common
64COMMON_HEADER = $(ROOT_PATH)/common.h
65
66CONFIG_MAKEFILE = $(ROOT_PATH)/Makefile.config
67CONFIG_HEADER = $(ROOT_PATH)/config.h
68
69-include $(VERSION_DEF)
70-include $(COMMON_MAKEFILE)
71-include $(CONFIG_MAKEFILE)
72
73OUTPUTS = $(EXTRA_OUTPUT)
74
75ifneq ($(BINARY),)
76 JOB = $(BINARY).job
77 TEST_BINARY = test-$(BINARY)
78 OUTPUTS += $(BINARY) $(BINARY).disasm
79 EXTRA_CLEAN += $(BINARY).map
80endif
81
82ifneq ($(LIBRARY),)
83 JOB = $(LIBRARY).job
84 TEST_BINARY = test-$(LIBRARY)
85 OUTPUTS += $(LIBRARY).a
86endif
87
88ifeq ($(CONFIG_BUILD_SHARED_LIBS),y)
89 ifneq ($(SOVERSION),)
90 SLIBRARY = $(LIBRARY).so.$(SOVERSION)
91 LSONAME = $(LIBRARY).so.$(basename $(SOVERSION))
92 OUTPUTS += $(SLIBRARY) $(SLIBRARY).disasm $(LSONAME)
93 EXTRA_CLEAN += $(LIBRARY).la $(SLIBRARY).map
94 endif
95endif
96
97LIB_PREFIX = $(USPACE_PREFIX)/lib
98
99LIBC_PREFIX = $(LIB_PREFIX)/c
100LIBC_INCLUDES_FLAGS = \
101 -isystem $(LIBC_PREFIX)/include \
102 -isystem $(LIBC_PREFIX)/arch/$(UARCH)/include \
103 -isystem $(ROOT_PATH)/abi/include
104
105LIBCPP_PREFIX = $(LIB_PREFIX)/cpp
106LIBCPP_INCLUDES_FLAGS = -isystem $(LIBCPP_PREFIX)/include
107
108LIBDLTEST_PREFIX = $(LIB_PREFIX)/dltest
109
110START_FILES = $(LIBC_PREFIX)/crt0.o $(LIBC_PREFIX)/crt1.o
111
112AFLAGS = --fatal-warnings
113LDFLAGS = -Wl,--fatal-warnings,--warn-common
114
115ifeq ($(STATIC_NEEDED),y)
116 STATIC_BUILD = y
117else
118 ifeq ($(STATIC_ONLY),y)
119 STATIC_BUILD = y
120 else
121 ifeq ($(CONFIG_USE_SHARED_LIBS),y)
122 STATIC_BUILD = n
123 else
124 STATIC_BUILD = y
125 endif
126 endif
127endif
128
129ifneq ($(STATIC_BUILD),y)
130 LINK_DYNAMIC = y
131endif
132
133BASE_LIBS =
134
135ifneq ($(LIBRARY),libc)
136 ifeq ($(STATIC_BUILD),y)
137 BASE_LIBS += $(LIBC_PREFIX)/libc.a
138 else
139 BASE_LIBS += $(LIBC_PREFIX)/libc.so.0
140 endif
141endif
142
143BASE_LIBS += -lgcc
144
145ifneq ($(LINK_DYNAMIC),y)
146 LDFLAGS += -static
147endif
148
149INCLUDES_FLAGS = $(LIBC_INCLUDES_FLAGS)
150
151ifneq ($(LIBRARY),)
152 INCLUDES_FLAGS += -Iinclude -I.
153endif
154
155INCLUDES_FLAGS += $(foreach lib,$(LIBS), -I$(LIB_PREFIX)/$(lib) -I$(LIB_PREFIX)/$(lib)/include)
156
157# TODO: get rid of this special case
158ifneq ($(filter math, $(LIBS)),)
159 INCLUDES_FLAGS += $(LIBMATH_INCLUDES_FLAGS)
160endif
161
162# PCUT-based unit tests
163ifneq ($(TEST_SOURCES),)
164 TEST_OUTPUTS = $(TEST_BINARY) $(TEST_BINARY).disasm
165 TEST_CFLAGS = -I$(LIB_PREFIX)/pcut/include -D__helenos__ $(EXTRA_TEST_CFLAGS)
166 TEST_BINARY_LIBS = $(LIB_PREFIX)/pcut/libpcut.a
167 EXTRA_CLEAN += $(TEST_OUTPUTS) $(TEST_BINARY).map
168ifneq ($(LIBRARY),)
169 TEST_BINARY_LIBS += $(LIBRARY).a
170endif
171 TEST_BINARY_LIBS += $(TEST_LIBS)
172endif
173
174# Flags that are not necessary, and can be overriden, but are used by default.
175DEFAULT_CFLAGS = \
176 -O$(OPTIMIZATION) \
177 -ffunction-sections \
178 -fno-builtin-strftime \
179 -pipe \
180 -Wall \
181 -Wextra \
182 -Wno-unused-parameter \
183 -Wmissing-prototypes \
184 -Wwrite-strings \
185 -Werror-implicit-function-declaration \
186 -Wsystem-headers \
187 -Wunknown-pragmas
188
189# XXX: -fno-builtin-strftime is for a seemingly spurious format warning.
190
191ifeq ($(CONFIG_DEBUG),y)
192 DEFAULT_CFLAGS += -Werror
193endif
194
195ifeq ($(CONFIG_UBSAN),y)
196 DEFAULT_CFLAGS += -fsanitize=undefined
197endif
198
199ifeq ($(COMPILER),clang)
200 DEFAULT_CFLAGS += \
201 -Wno-missing-braces \
202 -Wno-missing-field-initializers \
203 -Wno-typedef-redefinition \
204 -Wno-unused-command-line-argument
205else
206 DEFAULT_CFLAGS += \
207 -Wno-nonnull-compare \
208 -Wno-clobbered
209endif
210
211ifeq ($(CONFIG_LINE_DEBUG),y)
212 DEFAULT_CFLAGS += -ggdb
213endif
214
215# Flags that should always be used, even for third-party software.
216COMMON_CPPFLAGS = \
217 -D__$(ENDIANESS)__
218
219COMMON_CFLAGS = \
220 -nostdlib
221
222# Flags that are always used for HelenOS code, but not for third-party.
223HELENOS_CFLAGS = \
224 -std=gnu11 \
225 $(INCLUDES_FLAGS) \
226 -imacros $(CONFIG_HEADER) \
227 -D_HELENOS_SOURCE \
228 -fexec-charset=UTF-8 \
229 -finput-charset=UTF-8 \
230 -fno-common \
231 -fdebug-prefix-map=$(realpath $(ROOT_PATH))=.
232
233# TODO: Use a different name.
234# CFLAGS variable is traditionally used for overridable flags.
235CFLAGS = $(COMMON_CPPFLAGS) $(COMMON_CFLAGS) $(HELENOS_CFLAGS) $(DEFAULT_CFLAGS)
236
237# Flags for the compilation of C++ code.
238CXX_BASE_LIBS = $(LIBCPP_PREFIX)/libcpp.a $(BASE_LIBS)
239DEFAULT_CXXFLAGS = \
240 -O$(OPTIMIZATION) \
241 -ffunction-sections \
242 -pipe \
243 -Wall \
244 -Wextra \
245 -Wno-unused-parameter \
246 -Wwrite-strings \
247 -Werror-implicit-function-declaration
248
249ifeq ($(CONFIG_DEBUG),y)
250 DEFAULT_CXXFLAGS += -Werror
251endif
252
253COMMON_CXXFLAGS = $(COMMON_CFLAGS) -fno-exceptions
254HELENOS_CXXFLAGS = \
255 -std=c++17 -frtti \
256 $(LIBCPP_INCLUDES_FLAGS) $(INCLUDES_FLAGS) \
257 -imacros $(CONFIG_HEADER) \
258 -D_HELENOS_SOURCE \
259 -fexec-charset=UTF-8 \
260 -finput-charset=UTF-8 \
261 -fno-common \
262 -fdebug-prefix-map=$(realpath $(ROOT_PATH))=.
263
264CXXFLAGS = $(COMMON_CPPFLAGS) $(COMMON_CXXFLAGS) $(HELENOS_CXXFLAGS) $(DEFAULT_CXXFLAGS)
265
266## Setup platform configuration
267#
268
269-include $(LIBC_PREFIX)/arch/$(UARCH)/Makefile.common
270
271## Compilation options
272#
273
274ifeq ($(PRECHECK),y)
275 JOBFILE = $(LIBC_PREFIX)/../../../tools/jobfile.py
276 # XXX: Do not change the order of arguments.
277 CC_JOB = $(JOBFILE) $(JOB) $(CC) $< -o $@
278 CXX_JOB = $(JOBFILE) $(JOB) $(CXX) $< -o $@
279else
280 CC_JOB = $(CC) $< -o $@
281 CXX_JOB = $(CXX) $< -o $@
282endif
283
284ifeq ($(CONFIG_STRIP_BINARIES),y)
285 LDFLAGS += -s
286endif
287
288LIB_CFLAGS = $(CFLAGS) -fPIC
289LIB_LDFLAGS = $(LDFLAGS) -shared -Wl,-soname,$(LSONAME) -Wl,--no-undefined,--no-allow-shlib-undefined
290
291AS_CFLAGS := $(addprefix -Xassembler ,$(AFLAGS))
292
293OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
294LOBJECTS := $(addsuffix .lo,$(basename $(SOURCES)))
295TEST_OBJECTS := $(addsuffix .test.o,$(basename $(TEST_SOURCES)))
296DEPENDS := $(addsuffix .d,$(basename $(SOURCES))) $(addsuffix .test.d,$(basename $(TEST_SOURCES)))
297
298LIBTAGS := $(foreach lib,$(LIBS), $(USPACE_PREFIX)/lib/$(lib)/tag)
299LIBARGS := $(addprefix -L$(USPACE_PREFIX)/lib/, $(LIBS)) $(addprefix -l, $(LIBS))
300
301.PHONY: all all-test clean fasterclean depend
302
303all: tag $(OUTPUTS)
304
305all-test: $(TEST_OUTPUTS)
306
307clean: fasterclean
308 find . -name '*.o' -follow -exec rm \{\} \;
309 find . -name '*.lo' -follow -exec rm \{\} \;
310 find . -name '*.d' -follow -exec rm \{\} \;
311
312fasterclean:
313 rm -rf $(JOB) $(OUTPUTS) $(EXTRA_CLEAN) tag deps.mk
314
315depend: $(PRE_DEPEND)
316
317# "Tag" files are used to force relink of binaries when dependencies get rebuilt,
318# regardless of whether the dependency was linked statically or dynamically,
319# or which version of a dynamic library was used. Prerequisites for this file
320# are defined further down.
321tag:
322 touch tag
323
324# Generate inter-module make dependencies.
325# This is needed to ensure correct build order of libraries and code depending on them.
326deps.mk: Makefile
327 echo > $@.new
328 for lib in $(LIBS); do \
329 echo "$(SELF_TARGET): lib/$$lib.build" >> $@.new; \
330 done
331 mv -f $@.new $@
332
333%.disasm: %
334ifeq ($(CONFIG_LINE_DEBUG),y)
335 $(OBJDUMP) -d -S $< > $@
336else
337 $(OBJDUMP) -d $< > $@
338endif
339
340ifneq ($(BINARY),)
341
342ifneq ($(filter %.cpp %.cc %.cxx, $(SOURCES)),)
343$(BINARY): $(OBJECTS) $(LIBTAGS)
344 $(CXX) $(CXXFLAGS) $(LDFLAGS) $(EXTRA_LDFLAGS) -Wl,-Map,$@.map -o $@ $(START_FILES) $(OBJECTS) $(LIBARGS) $(CXX_BASE_LIBS)
345else
346$(BINARY): $(OBJECTS) $(LIBTAGS)
347 $(CC) $(CFLAGS) $(LDFLAGS) $(EXTRA_LDFLAGS) -Wl,-Map,$@.map -o $@ $(START_FILES) $(OBJECTS) $(LIBARGS) $(BASE_LIBS)
348endif
349
350endif
351
352ifneq ($(TEST_BINARY),)
353$(TEST_BINARY): $(TEST_OBJECTS) $(TEST_BINARY_LIBS) $(LIBTAGS)
354 $(CC) $(CFLAGS) $(LDFLAGS) $(EXTRA_LDFLAGS) -Wl,-Map,$@.map -o $@ $(START_FILES) $(TEST_OBJECTS) $(TEST_BINARY_LIBS) $(LIBARGS) $(BASE_LIBS)
355endif
356
357ifneq ($(LIBRARY),)
358tag: $(LIBRARY).a
359
360$(LIBRARY).a: $(OBJECTS)
361 $(AR) rc $@ $(OBJECTS)
362endif
363
364ifneq ($(SLIBRARY),)
365tag: $(SLIBRARY)
366
367$(LIBRARY).la: $(LOBJECTS)
368 $(AR) rc $@ $(LOBJECTS)
369
370$(SLIBRARY): $(LIBRARY).la
371 $(CC) $(CFLAGS) $(LIB_LDFLAGS) $(EXTRA_LDFLAGS) -Wl,-Map,$@.map -o $@ -Wl,--whole-archive $(LIBRARY).la -Wl,--no-whole-archive $(LIBARGS) $(BASE_LIBS)
372
373$(LSONAME):
374 ln -s $(SLIBRARY) $@
375endif
376
377%.o: %.S | depend
378 $(CC_JOB) -c -MD -MP $(DEFS) $(CFLAGS) $(EXTRA_CFLAGS) $(AS_CFLAGS)
379
380%.o: %.s | depend
381 $(CC_JOB) -c -MD -MP $(DEFS) $(CFLAGS) $(EXTRA_CFLAGS) $(AS_CFLAGS)
382
383%.o: %.c | depend
384 $(CC_JOB) -c -MD -MP $(DEFS) $(CFLAGS) $(EXTRA_CFLAGS)
385
386%.o: %.cpp | depend
387 $(CXX_JOB) -c -MD -MP $(DEFS) $(CXXFLAGS) $(EXTRA_CXXFLAGS)
388
389%.o: %.cxx | depend
390 $(CXX_JOB) -c -MD -MP $(DEFS) $(CXXFLAGS) $(EXTRA_CXXFLAGS)
391
392%.o: %.cc | depend
393 $(CXX_JOB) -c -MD -MP $(DEFS) $(CXXFLAGS) $(EXTRA_CXXFLAGS)
394
395%.test.o: %.c | depend
396 $(CC_JOB) -c -MD -MP $(DEFS) $(CFLAGS) $(EXTRA_CFLAGS) $(TEST_CFLAGS)
397
398%.lo: %.S | depend
399 $(CC_JOB) -c -MD -MP $(DEFS) $(LIB_CFLAGS) $(EXTRA_CFLAGS) $(AS_CFLAGS)
400
401%.lo: %.s | depend
402 $(CC_JOB) -c -MD -MP $(DEFS) $(LIB_CFLAGS) $(EXTRA_CFLAGS) $(AS_CFLAGS)
403
404%.lo: %.c | depend
405 $(CC_JOB) -c -MD -MP $(DEFS) $(LIB_CFLAGS) $(EXTRA_CFLAGS)
406
407%.lo: %.cpp | depend
408 $(CXX_JOB) -c -MD -MP $(DEFS) $(CXXFLAGS) $(EXTRA_CXXFLAGS)
409
410%.lo: %.cxx | depend
411 $(CXX_JOB) -c -MD -MP $(DEFS) $(CXXFLAGS) $(EXTRA_CXXFLAGS)
412
413%.lo: %.cc | depend
414 $(CXX_JOB) -c -MD -MP $(DEFS) $(CXXFLAGS) $(EXTRA_CXXFLAGS)
415
416-include $(DEPENDS)
417
Note: See TracBrowser for help on using the repository browser.