source: mainline/uspace/lib/c/Makefile.toolchain@ 9f10660f

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 9f10660f was 12d7710, checked in by Jiri Svoboda <jiri@…>, 16 years ago

Merge mainline changes.

  • Property mode set to 100644
File size: 3.3 KB
RevLine 
[25b0e6a]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
[a000878c]29OPTIMIZATION = 3
30
31GCC_CFLAGS = -I$(LIBC_PREFIX)/include -O$(OPTIMIZATION) -imacros $(LIBC_PREFIX)/../../../config.h \
[ac47b7c2]32 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \
[6ab8697]33 -finput-charset=UTF-8 -ffreestanding -fno-builtin -nostdlib -nostdinc \
[a840fb7]34 -Wall -Wextra -Wno-clobbered -Wno-unused-parameter -Wmissing-prototypes \
[a000878c]35 -Werror-implicit-function-declaration -Wwrite-strings \
36 -Werror -pipe -g -D__$(ENDIANESS)__
[6ab8697]37
[a000878c]38ICC_CFLAGS = -I$(LIBC_PREFIX)/include -O$(OPTIMIZATION) -imacros $(LIBC_PREFIX)/../../../config.h \
[6ab8697]39 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \
40 -finput-charset=UTF-8 -ffreestanding -fno-builtin -nostdlib -nostdinc \
[a000878c]41 -Wall -Wextra -Wno-clobbered -Wno-unused-parameter -Wmissing-prototypes \
42 -Werror-implicit-function-declaration -Wwrite-strings \
43 -Werror -pipe -g -D__$(ENDIANESS)__
[6ab8697]44
[a000878c]45CLANG_CFLAGS = -I$(LIBC_PREFIX)/include -O$(OPTIMIZATION) -imacros $(LIBC_PREFIX)/../../../config.h \
[6ab8697]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 \
[a000878c]49 -Werror-implicit-function-declaration -Wwrite-strings \
50 -pipe -g -arch $(CLANG_ARCH) -D__$(ENDIANESS)__
[6ab8697]51
[8bd0316]52LFLAGS = -M -N $(SOFTINT_PREFIX)/libsoftint.a
[25b0e6a]53AFLAGS =
[11a4fbf]54
[25b0e6a]55## Setup platform configuration
56#
57
[177e4ea]58-include $(LIBC_PREFIX)/../../../Makefile.common
[94790d01]59-include $(LIBC_PREFIX)/../../../Makefile.config
60-include $(LIBC_PREFIX)/arch/$(UARCH)/Makefile.inc
[25b0e6a]61
[177e4ea]62## Compilation options
[25b0e6a]63#
64
[8786aa5]65JOBFILE = $(LIBC_PREFIX)/../../../tools/jobfile.py
66
[69dc065]67ifeq ($(COMPILER),gcc_cross)
[6ab8697]68 CFLAGS = $(GCC_CFLAGS)
[69dc065]69 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
70endif
71
[67f5fbd9]72ifeq ($(COMPILER),gcc_native)
[6ab8697]73 CFLAGS = $(GCC_CFLAGS)
[fcd7053]74 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
[67f5fbd9]75endif
76
[69dc065]77ifeq ($(COMPILER),icc)
[6ab8697]78 CFLAGS = $(ICC_CFLAGS)
[fcd7053]79 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
[67f5fbd9]80endif
81
[69dc065]82ifeq ($(COMPILER),clang)
[6ab8697]83 CFLAGS = $(CLANG_CFLAGS)
[fcd7053]84 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
[25b0e6a]85endif
Note: See TracBrowser for help on using the repository browser.