source: mainline/uspace/Makefile.common@ 182487c6

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 182487c6 was 6480827, checked in by Jiri Svoboda <jiri@…>, 7 years ago

Alignment workaround is just for amd64

Oops, this was never meant for the generic makefile and it was
breaking sparc64.

  • Property mode set to 100644
File size: 11.5 KB
RevLine 
[1b1164e8]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)
[364778b2]41#
[1b1164e8]42# EXTRA_OUTPUT additional output targets
43# EXTRA_CLEAN additional cleanup targets
44#
[364778b2]45# Optionally, for a binary:
[5b72635]46# STATIC_NEEDED set to 'y' for init binaries, will build statically
47# linked version
[54146a0]48# STATIC_ONLY set to 'y' if binary cannot be linked dynamically
49# (e.g. uses thread-local variables)
[5b72635]50#
[c631734]51# Optionally, for a library:
52# SOVERSION shared library version (major.minor),
53# if missing, no shared library is built
[364778b2]54#
[1b1164e8]55# (x) required variables
56# (/) exactly one of the variables must be defined
57#
58
59ROOT_PATH = $(USPACE_PREFIX)/..
60
[e6ae77a]61VERSION_DEF = $(ROOT_PATH)/version
62
[1b1164e8]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
[e6ae77a]69-include $(VERSION_DEF)
[1b1164e8]70-include $(COMMON_MAKEFILE)
71-include $(CONFIG_MAKEFILE)
72
[c631734]73OUTPUTS = $(EXTRA_OUTPUT)
74
[1b1164e8]75ifneq ($(BINARY),)
76 JOB = $(BINARY).job
[01579ad]77 TEST_BINARY = test-$(BINARY)
[c631734]78 OUTPUTS += $(BINARY) $(BINARY).disasm
[1b1164e8]79 EXTRA_CLEAN += $(BINARY).map
80endif
81
82ifneq ($(LIBRARY),)
83 JOB = $(LIBRARY).job
[01579ad]84 TEST_BINARY = test-$(LIBRARY)
[c631734]85 OUTPUTS += $(LIBRARY).a
[1b1164e8]86endif
87
[d9be488]88ifeq ($(CONFIG_BUILD_SHARED_LIBS),y)
[c631734]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
[7fb3f1c]94 endif
[143932e3]95endif
96
[36a75a2]97LIB_PREFIX = $(USPACE_PREFIX)/lib
[849ed54]98
99LIBC_PREFIX = $(LIB_PREFIX)/c
[6c5fc8e]100LIBC_INCLUDES_FLAGS = \
[7570a95f]101 -isystem $(LIBC_PREFIX)/include \
102 -isystem $(LIBC_PREFIX)/arch/$(UARCH)/include \
[e344422]103 -isystem $(ROOT_PATH)/abi/arch/$(KARCH)/include \
[7570a95f]104 -isystem $(ROOT_PATH)/abi/include
[058c240]105
106LIBCPP_PREFIX = $(LIB_PREFIX)/cpp
[7570a95f]107LIBCPP_INCLUDES_FLAGS = -isystem $(LIBCPP_PREFIX)/include
[058c240]108
[9182e86f]109LIBDLTEST_PREFIX = $(LIB_PREFIX)/dltest
[7c014d1]110
[2eadda9]111START_FILES = $(LIBC_PREFIX)/crt0.o $(LIBC_PREFIX)/crt1.o
[c2c4127]112
[fe171357]113AFLAGS = --fatal-warnings
[6480827]114LDFLAGS = -Wl,--fatal-warnings,--warn-common
[ae7bbfd0]115
[5b72635]116ifeq ($(STATIC_NEEDED),y)
117 STATIC_BUILD = y
[1d465bf]118else
[54146a0]119 ifeq ($(STATIC_ONLY),y)
[5b72635]120 STATIC_BUILD = y
[54146a0]121 else
[9c4df21]122 ifeq ($(CONFIG_BUILD_SHARED_LIBS),y)
123 ifeq ($(CONFIG_USE_SHARED_LIBS),y)
124 STATIC_BUILD = n
125 else
126 ifeq ($(LIBRARY),)
127 STATIC_BUILD = y
128 else
129 STATIC_BUILD = n
130 endif
131 endif
[54146a0]132 else
133 STATIC_BUILD = y
134 endif
[5b72635]135 endif
136endif
137
[2eadda9]138ifneq ($(STATIC_BUILD),y)
[7c4b26c]139 LINK_DYNAMIC = y
[d9be488]140endif
141
[2eadda9]142BASE_LIBS =
143
144ifneq ($(LIBRARY),libc)
145 ifeq ($(STATIC_BUILD),y)
146 BASE_LIBS += $(LIBC_PREFIX)/libc.a
147 else
148 BASE_LIBS += $(LIBC_PREFIX)/libc.so.0
149 endif
150endif
151
[954c024]152BASE_LIBS += -lgcc
[d2e7a51]153
[82d9087]154ifneq ($(LINK_DYNAMIC),y)
[009c485]155 LDFLAGS += -static
[7c4b26c]156endif
157
[9d8b12da]158INCLUDES_FLAGS = $(LIBC_INCLUDES_FLAGS)
[1b1164e8]159
[cecba66e]160ifneq ($(LIBRARY),)
161 INCLUDES_FLAGS += -Iinclude -I.
162endif
163
164INCLUDES_FLAGS += $(foreach lib,$(LIBS), -I$(LIB_PREFIX)/$(lib) -I$(LIB_PREFIX)/$(lib)/include)
165
[9d8b12da]166# TODO: get rid of this special case
167ifneq ($(filter math, $(LIBS)),)
168 INCLUDES_FLAGS += $(LIBMATH_INCLUDES_FLAGS)
169endif
170
[01579ad]171# PCUT-based unit tests
172ifneq ($(TEST_SOURCES),)
[c631734]173 TEST_OUTPUTS = $(TEST_BINARY) $(TEST_BINARY).disasm
[4e6a610]174 TEST_CFLAGS = -I$(LIB_PREFIX)/pcut/include -D__helenos__ $(EXTRA_TEST_CFLAGS)
[c631734]175 TEST_BINARY_LIBS = $(LIB_PREFIX)/pcut/libpcut.a
176 EXTRA_CLEAN += $(TEST_OUTPUTS) $(TEST_BINARY).map
[01579ad]177ifneq ($(LIBRARY),)
[c631734]178 TEST_BINARY_LIBS += $(LIBRARY).a
[01579ad]179endif
[c631734]180 TEST_BINARY_LIBS += $(TEST_LIBS)
[01579ad]181endif
182
[2660ee3]183# Flags that are not necessary, and can be overriden, but are used by default.
184DEFAULT_CFLAGS = \
185 -O$(OPTIMIZATION) \
186 -ffunction-sections \
[58e7b26]187 -fno-builtin-strftime \
[2660ee3]188 -pipe \
189 -Wall \
190 -Wextra \
191 -Wno-unused-parameter \
192 -Wmissing-prototypes \
193 -Wwrite-strings \
[7570a95f]194 -Werror-implicit-function-declaration \
195 -Wsystem-headers \
196 -Wunknown-pragmas
[143932e3]197
[58e7b26]198# XXX: -fno-builtin-strftime is for a seemingly spurious format warning.
199
[e805e2f]200ifeq ($(CONFIG_DEBUG),y)
[2660ee3]201 DEFAULT_CFLAGS += -Werror
202endif
203
[2f7d77c6]204ifeq ($(CONFIG_UBSAN),y)
205 DEFAULT_CFLAGS += -fsanitize=undefined
206endif
207
[2660ee3]208ifeq ($(COMPILER),clang)
209 DEFAULT_CFLAGS += \
[8591b31]210 -Wno-missing-braces \
[2660ee3]211 -Wno-missing-field-initializers \
212 -Wno-typedef-redefinition \
213 -Wno-unused-command-line-argument
214else
215 DEFAULT_CFLAGS += \
[8591b31]216 -Wno-nonnull-compare \
[2660ee3]217 -Wno-clobbered
[e805e2f]218endif
219
[1e00216]220ifeq ($(CONFIG_LINE_DEBUG),y)
[2660ee3]221 DEFAULT_CFLAGS += -ggdb
[1e00216]222endif
223
[2660ee3]224# Flags that should always be used, even for third-party software.
[ea42e44]225COMMON_CPPFLAGS = \
[2660ee3]226 -D__$(ENDIANESS)__
227
[ea42e44]228COMMON_CFLAGS = \
229 -nostdlib
230
[2660ee3]231# Flags that are always used for HelenOS code, but not for third-party.
232HELENOS_CFLAGS = \
[dc68f72]233 -std=gnu11 \
[2660ee3]234 $(INCLUDES_FLAGS) \
235 -imacros $(CONFIG_HEADER) \
236 -D_HELENOS_SOURCE \
237 -fexec-charset=UTF-8 \
238 -finput-charset=UTF-8 \
239 -fno-common \
240 -fdebug-prefix-map=$(realpath $(ROOT_PATH))=.
241
242# TODO: Use a different name.
243# CFLAGS variable is traditionally used for overridable flags.
[ea42e44]244CFLAGS = $(COMMON_CPPFLAGS) $(COMMON_CFLAGS) $(HELENOS_CFLAGS) $(DEFAULT_CFLAGS)
[2660ee3]245
[058c240]246# Flags for the compilation of C++ code.
[8e2154e7]247CXX_BASE_LIBS = $(LIBCPP_PREFIX)/libcpp.a $(BASE_LIBS)
[73401643]248DEFAULT_CXXFLAGS = \
249 -O$(OPTIMIZATION) \
250 -ffunction-sections \
251 -pipe \
252 -Wall \
253 -Wextra \
254 -Wno-unused-parameter \
255 -Wwrite-strings \
256 -Werror-implicit-function-declaration
257
[5a50430]258ifeq ($(CONFIG_DEBUG),y)
259 DEFAULT_CXXFLAGS += -Werror
260endif
261
[82d9087]262COMMON_CXXFLAGS = $(COMMON_CFLAGS) -fno-exceptions
[73401643]263HELENOS_CXXFLAGS = \
264 -std=c++17 -frtti \
265 $(LIBCPP_INCLUDES_FLAGS) $(INCLUDES_FLAGS) \
[4fb8163]266 -imacros $(CONFIG_HEADER) \
[73401643]267 -D_HELENOS_SOURCE \
268 -fexec-charset=UTF-8 \
269 -finput-charset=UTF-8 \
270 -fno-common \
271 -fdebug-prefix-map=$(realpath $(ROOT_PATH))=.
272
273CXXFLAGS = $(COMMON_CPPFLAGS) $(COMMON_CXXFLAGS) $(HELENOS_CXXFLAGS) $(DEFAULT_CXXFLAGS)
[058c240]274
[1b1164e8]275## Setup platform configuration
276#
277
278-include $(LIBC_PREFIX)/arch/$(UARCH)/Makefile.common
279
280## Compilation options
281#
282
[7f881cd8]283ifeq ($(PRECHECK),y)
284 JOBFILE = $(LIBC_PREFIX)/../../../tools/jobfile.py
[95d45482]285 # NOTE: You must not change the order of arguments.
[7f881cd8]286 CC_JOB = $(JOBFILE) $(JOB) $(CC) $< -o $@
[1bf924a]287 CXX_JOB = $(JOBFILE) $(JOB) $(CXX) $< -o $@
[7f881cd8]288else
289 CC_JOB = $(CC) $< -o $@
[1bf924a]290 CXX_JOB = $(CXX) $< -o $@
[7f881cd8]291endif
[1b1164e8]292
[315130c]293ifeq ($(CONFIG_STRIP_BINARIES),y)
[009c485]294 LDFLAGS += -s
[315130c]295endif
296
[a0a273e]297LIB_CFLAGS = $(CFLAGS) -fPIC
[2eadda9]298LIB_LDFLAGS = $(LDFLAGS) -shared -Wl,-soname,$(LSONAME) -Wl,--no-undefined,--no-allow-shlib-undefined
[a0a273e]299
300AS_CFLAGS := $(addprefix -Xassembler ,$(AFLAGS))
301
[1b1164e8]302OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
[143932e3]303LOBJECTS := $(addsuffix .lo,$(basename $(SOURCES)))
[01579ad]304TEST_OBJECTS := $(addsuffix .test.o,$(basename $(TEST_SOURCES)))
[4761f54]305DEPENDS := $(addsuffix .d,$(basename $(SOURCES))) $(addsuffix .test.d,$(basename $(TEST_SOURCES)))
306
[cecba66e]307LIBTAGS := $(foreach lib,$(LIBS), $(USPACE_PREFIX)/lib/$(lib)/tag)
308LIBARGS := $(addprefix -L$(USPACE_PREFIX)/lib/, $(LIBS)) $(addprefix -l, $(LIBS))
309
[3d7594d]310ifneq ($(LIBRARY),libc)
311 LIBTAGS := $(LIBC_PREFIX)/tag $(LIBTAGS)
312endif
313
[7654f3e]314.PHONY: all all-test clean fasterclean depend
[c631734]315
[cecba66e]316all: tag $(OUTPUTS)
[c631734]317
318all-test: $(TEST_OUTPUTS)
319
[2660ee3]320clean: fasterclean
[7654f3e]321 find . -name '*.o' -follow -exec rm \{\} \;
322 find . -name '*.lo' -follow -exec rm \{\} \;
323 find . -name '*.d' -follow -exec rm \{\} \;
324
325fasterclean:
[2660ee3]326 rm -rf $(JOB) $(OUTPUTS) $(EXTRA_CLEAN) tag deps.mk
[c631734]327
328depend: $(PRE_DEPEND)
329
[cecba66e]330# "Tag" files are used to force relink of binaries when dependencies get rebuilt,
331# regardless of whether the dependency was linked statically or dynamically,
332# or which version of a dynamic library was used. Prerequisites for this file
333# are defined further down.
334tag:
335 touch tag
336
[4f674d7]337# Generate inter-module make dependencies.
338# This is needed to ensure correct build order of libraries and code depending on them.
339deps.mk: Makefile
340 echo > $@.new
341 for lib in $(LIBS); do \
342 echo "$(SELF_TARGET): lib/$$lib.build" >> $@.new; \
343 done
344 mv -f $@.new $@
345
[52a7f238]346%.disasm: %
[9ded977]347ifeq ($(CONFIG_LINE_DEBUG),y)
348 $(OBJDUMP) -d -S $< > $@
349else
[1b1164e8]350 $(OBJDUMP) -d $< > $@
[9ded977]351endif
[1b1164e8]352
[52a7f238]353ifneq ($(BINARY),)
[73401643]354
[65ee021]355ifneq ($(filter %.cpp %.cc %.cxx, $(SOURCES)),)
[82d9087]356$(BINARY): $(OBJECTS) $(LIBTAGS)
357 $(CXX) $(CXXFLAGS) $(LDFLAGS) $(EXTRA_LDFLAGS) -Wl,-Map,$@.map -o $@ $(START_FILES) $(OBJECTS) $(LIBARGS) $(CXX_BASE_LIBS)
[73401643]358else
[82d9087]359$(BINARY): $(OBJECTS) $(LIBTAGS)
360 $(CC) $(CFLAGS) $(LDFLAGS) $(EXTRA_LDFLAGS) -Wl,-Map,$@.map -o $@ $(START_FILES) $(OBJECTS) $(LIBARGS) $(BASE_LIBS)
[1b1164e8]361endif
362
[8e2154e7]363endif
364
[c631734]365ifneq ($(TEST_BINARY),)
[82d9087]366$(TEST_BINARY): $(TEST_OBJECTS) $(TEST_BINARY_LIBS) $(LIBTAGS)
367 $(CC) $(CFLAGS) $(LDFLAGS) $(EXTRA_LDFLAGS) -Wl,-Map,$@.map -o $@ $(START_FILES) $(TEST_OBJECTS) $(TEST_BINARY_LIBS) $(LIBARGS) $(BASE_LIBS)
[1d465bf]368endif
[143932e3]369
[1b1164e8]370ifneq ($(LIBRARY),)
[cecba66e]371tag: $(LIBRARY).a
372
[eff9f8c]373$(LIBRARY).a: $(OBJECTS)
[1b1164e8]374 $(AR) rc $@ $(OBJECTS)
375endif
376
[c631734]377ifneq ($(SLIBRARY),)
[cecba66e]378tag: $(SLIBRARY)
379
[c631734]380$(LIBRARY).la: $(LOBJECTS)
[143932e3]381 $(AR) rc $@ $(LOBJECTS)
382
[3d7594d]383$(SLIBRARY): $(LIBRARY).la $(LIBTAGS)
[82d9087]384 $(CC) $(CFLAGS) $(LIB_LDFLAGS) $(EXTRA_LDFLAGS) -Wl,-Map,$@.map -o $@ -Wl,--whole-archive $(LIBRARY).la -Wl,--no-whole-archive $(LIBARGS) $(BASE_LIBS)
[c631734]385
386$(LSONAME):
387 ln -s $(SLIBRARY) $@
[01579ad]388endif
389
[4761f54]390%.o: %.S | depend
[53ad43c]391 $(CC_JOB) -c -MD -MP $(DEFS) $(CFLAGS) $(EXTRA_CFLAGS) $(AS_CFLAGS)
[1b1164e8]392
[4761f54]393%.o: %.s | depend
[53ad43c]394 $(CC_JOB) -c -MD -MP $(DEFS) $(CFLAGS) $(EXTRA_CFLAGS) $(AS_CFLAGS)
[1b1164e8]395
[4761f54]396%.o: %.c | depend
[c631734]397 $(CC_JOB) -c -MD -MP $(DEFS) $(CFLAGS) $(EXTRA_CFLAGS)
[1b1164e8]398
[058c240]399%.o: %.cpp | depend
[1bf924a]400 $(CXX_JOB) -c -MD -MP $(DEFS) $(CXXFLAGS) $(EXTRA_CXXFLAGS)
401
402%.o: %.cxx | depend
403 $(CXX_JOB) -c -MD -MP $(DEFS) $(CXXFLAGS) $(EXTRA_CXXFLAGS)
404
405%.o: %.cc | depend
406 $(CXX_JOB) -c -MD -MP $(DEFS) $(CXXFLAGS) $(EXTRA_CXXFLAGS)
[058c240]407
[4761f54]408%.test.o: %.c | depend
[c631734]409 $(CC_JOB) -c -MD -MP $(DEFS) $(CFLAGS) $(EXTRA_CFLAGS) $(TEST_CFLAGS)
[01579ad]410
[4761f54]411%.lo: %.S | depend
[53ad43c]412 $(CC_JOB) -c -MD -MP $(DEFS) $(LIB_CFLAGS) $(EXTRA_CFLAGS) $(AS_CFLAGS)
[ec3e2ed]413
[4761f54]414%.lo: %.s | depend
[53ad43c]415 $(CC_JOB) -c -MD -MP $(DEFS) $(LIB_CFLAGS) $(EXTRA_CFLAGS) $(AS_CFLAGS)
[ec3e2ed]416
[4761f54]417%.lo: %.c | depend
[c631734]418 $(CC_JOB) -c -MD -MP $(DEFS) $(LIB_CFLAGS) $(EXTRA_CFLAGS)
[664af708]419
[0d2bc9d]420%.lo: %.cpp | depend
[1bf924a]421 $(CXX_JOB) -c -MD -MP $(DEFS) $(CXXFLAGS) $(EXTRA_CXXFLAGS)
422
423%.lo: %.cxx | depend
424 $(CXX_JOB) -c -MD -MP $(DEFS) $(CXXFLAGS) $(EXTRA_CXXFLAGS)
425
426%.lo: %.cc | depend
427 $(CXX_JOB) -c -MD -MP $(DEFS) $(CXXFLAGS) $(EXTRA_CXXFLAGS)
[0d2bc9d]428
[731d8f9]429-include $(DEPENDS)
Note: See TracBrowser for help on using the repository browser.