source: mainline/uspace/lib/libc/Makefile.toolchain@ 4e9aaf5

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 4e9aaf5 was 4e9aaf5, checked in by Martin Decky <martin@…>, 15 years ago

more autotooling: run actually the compiler in autotool.py and detect sizes of integers, generate common.h
more build system cleanup: remove redundancy, remove config.defs, merge kernel makefiles to a single file

  • Property mode set to 100644
File size: 3.3 KB
Line 
1#
2# Copyright (C) 2005 Martin Decky
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions
7# are met:
8#
9# - Redistributions of source code must retain the above copyright
10# notice, this list of conditions and the following disclaimer.
11# - Redistributions in binary form must reproduce the above copyright
12# notice, this list of conditions and the following disclaimer in the
13# documentation and/or other materials provided with the distribution.
14# - The name of the author may not be used to endorse or promote products
15# derived from this software without specific prior written permission.
16#
17# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27#
28
29OPTIMIZATION = 3
30
31GCC_CFLAGS = -I$(LIBC_PREFIX)/include -O$(OPTIMIZATION) -imacros $(LIBC_PREFIX)/../../../config.h \
32 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \
33 -finput-charset=UTF-8 -ffreestanding -fno-builtin -nostdlib -nostdinc \
34 -Wall -Wextra -Wno-clobbered -Wno-unused-parameter -Wmissing-prototypes \
35 -Werror-implicit-function-declaration -Wwrite-strings \
36 -Werror -pipe -g -D__$(ENDIANESS)__
37
38ICC_CFLAGS = -I$(LIBC_PREFIX)/include -O$(OPTIMIZATION) -imacros $(LIBC_PREFIX)/../../../config.h \
39 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \
40 -finput-charset=UTF-8 -ffreestanding -fno-builtin -nostdlib -nostdinc \
41 -Wall -Wextra -Wno-clobbered -Wno-unused-parameter -Wmissing-prototypes \
42 -Werror-implicit-function-declaration -Wwrite-strings \
43 -Werror -pipe -g -D__$(ENDIANESS)__
44
45CLANG_CFLAGS = -I$(LIBC_PREFIX)/include -O$(OPTIMIZATION) -imacros $(LIBC_PREFIX)/../../../config.h \
46 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \
47 -finput-charset=UTF-8 -ffreestanding -fno-builtin -nostdlib -nostdinc \
48 -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes \
49 -Werror-implicit-function-declaration -Wwrite-strings \
50 -pipe -g -arch $(CLANG_ARCH) -D__$(ENDIANESS)__
51
52LFLAGS = -M -N $(SOFTINT_PREFIX)/libsoftint.a
53AFLAGS =
54
55## Setup platform configuration
56#
57
58-include $(LIBC_PREFIX)/../../../Makefile.common
59-include $(LIBC_PREFIX)/../../../Makefile.config
60-include $(LIBC_PREFIX)/arch/$(UARCH)/Makefile.inc
61
62## Compilation options
63#
64
65JOBFILE = $(LIBC_PREFIX)/../../../tools/jobfile.py
66
67ifeq ($(COMPILER),gcc_cross)
68 CFLAGS = $(GCC_CFLAGS)
69 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
70endif
71
72ifeq ($(COMPILER),gcc_native)
73 CFLAGS = $(GCC_CFLAGS)
74 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
75endif
76
77ifeq ($(COMPILER),icc)
78 CFLAGS = $(ICC_CFLAGS)
79 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
80endif
81
82ifeq ($(COMPILER),clang)
83 CFLAGS = $(CLANG_CFLAGS)
84 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
85endif
Note: See TracBrowser for help on using the repository browser.