]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - decoder/build/linux/makefile.dev
Import OpenCSD v0.14.2
[FreeBSD/FreeBSD.git] / decoder / build / linux / makefile.dev
1 ########################################################
2 # Copyright 2018 ARM Limited. All rights reserved.
3
4 # Redistribution and use in source and binary forms, with or without modification, 
5 # are permitted provided that the following conditions are met:
6
7 # 1. Redistributions of source code must retain the above copyright notice, 
8 # this list of conditions and the following disclaimer.
9
10 # 2. Redistributions in binary form must reproduce the above copyright notice, 
11 # this list of conditions and the following disclaimer in the documentation 
12 # and/or other materials provided with the distribution. 
13
14 # 3. Neither the name of the copyright holder nor the names of its contributors 
15 # may be used to endorse or promote products derived from this software without 
16 # specific prior written permission. 
17
18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS' AND 
19 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
20 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
21 # IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 
22 # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 
23 # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 
24 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 
25 # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 
27 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
28
29 #################################################################################
30
31 ## Set up some addtional parameters for development environment builds. ##
32
33 ## define arch/build sub-dirs for non installed dev builds
34 ifndef ARCH
35 ARCH := $(shell dpkg-architecture -q DEB_HOST_GNU_CPU || echo not)
36 endif
37
38 # platform bit size variant
39 ifeq ($(ARCH),x86)
40    MFLAG:="-m32"
41    BIT_VARIANT=32
42 else ifeq ($(ARCH),x86_64)
43    MFLAG:="-m64"
44    BIT_VARIANT=64
45 else ifeq ($(ARCH),arm)
46    BIT_VARIANT=-arm
47 else ifeq ($(ARCH),arm64)
48    BIT_VARIANT=-arm64
49 else ifeq ($(ARCH),aarch64)
50    BIT_VARIANT=-arm64
51 else ifeq ($(ARCH),aarch32)
52    BIT_VARIANT=-arm
53 endif
54
55 CXXFLAGS += $(MFLAG)
56 CFLAGS += $(MFLAG)
57 LDFLAGS += $(MFLAG)
58
59 ifdef GCCDIR
60 GCCVER:= $(shell $(CROSS_COMPILE)gcc -dumpversion | cut -c 1-3)
61 PLAT_DIR=builddir/linux$(BIT_VARIANT)/GCC_$(GCCVER)
62 else
63 PLAT_DIR=linux$(BIT_VARIANT)/$(BUILD_VARIANT)
64 endif
65
66 # include the main makefile
67 include makefile