]> rtime.felk.cvut.cz Git - pes-rpp/rpp-simulink.git/blob - rpp/rpp/target_tools.mk
Change the license from GPL to proprietary
[pes-rpp/rpp-simulink.git] / rpp / rpp / target_tools.mk
1 # Copyright (C) 2013 Czech Technical University in Prague
2 #
3 # Authors:
4 #     - Carlos Jenkins <carlos@jenkins.co.cr>
5 #
6 # This document contains proprietary information belonging to Czech
7 # Technical University in Prague. Passing on and copying of this
8 # document, and communication of its contents is not permitted
9 # without prior written authorization.
10 #
11 # File : target_tools.mk
12 # Abstract:
13 #     Makefile for CCS toolchain support.
14 #
15 #     This file set variables to CCS tools to support build for this toolchain.
16 #     This file is included by rpp.tmf before declaring the rules for source
17 #     code.
18 #
19 # References:
20 #     "Include a tool specification settings" comment block in rpp.tmf
21 #      Compiler options documentation available in refs/armcl.pdf
22
23
24 include $(START_DIR)/slprj/target_paths.mk
25
26 # RPP options
27 RPP_STATIC_LIB   = "rpp-lib.lib"
28 RPP_OS_LAYER_INC = $(RPP_LIB_ROOT)/os/7.0.2_tms570/include/
29
30 # Options for target source files
31 TARGET_INCS      =
32 TARGET_SRCS      =
33
34 # Compiler command and options
35 CC      = "$(COMPILER_ROOT)/bin/armcl"
36 CFLAGS  = -mv7R4 --code_state=32 --float_support=VFPv3D16 \
37           --abi=eabi --compile_only -O2 --gcc --diag_wrap=on \
38           --diag_warning=225 --display_error_number --enum_type=packed \
39           --include_path="$(RPP_LIB_ROOT)/rpp/include" \
40           --include_path="$(RPP_LIB_ROOT)/lwip/src/include" \
41           --include_path="$(RPP_LIB_ROOT)/lwip/src/include/ipv4" \
42           --include_path="$(RPP_LIB_ROOT)/lwip/src/include/ipv6" \
43           --include_path="$(RPP_OS_LAYER_INC)" \
44           --include_path="$(COMPILER_ROOT)/include"
45
46 CFLAGS          += $(OPTS)
47 CDEBUG           = -g
48 CCOUTPUTFLAG     = --output_file=
49
50 CXX              =
51 CXXFLAGS         =
52 CXXDEBUG         =
53
54 # Linker command and options
55 LD      = $(CC)
56 LDFLAGS = -mv7R4 --code_state=32 --float_support=VFPv3D16 --abi=eabi \
57           -O2 --diag_warning=225 --display_error_number --enum_type=packed \
58           --run_linker -m"$(MODEL).map" --be32 --diag_wrap=on \
59           --stack_size=$(RPP_STACK_SIZE) --heap_size=$(RPP_HEAP_SIZE) \
60           --reread_libs --warn_sections --display_error_number --rom_model \
61           --search_path="$(RPP_LIB_ROOT)" \
62           --library="$(RPP_STATIC_LIB)" \
63           --retain="$(RPP_STATIC_LIB)<sys_intvecs.obj>(.intvecs)" \
64           --search_path="$(COMPILER_ROOT)/lib" \
65           --library="rtsv7R4_T_be_v3D16_eabi.lib" \
66           "$(RPP_LIB_ROOT)/rpp/TMS570LS313xFlashLnk.cmd"
67
68 LDDEBUG          = -g
69 LDOUTPUTFLAG     = --output_file=
70
71 # Archiver command and options
72 AR               = "$(COMPILER_ROOT)/bin/armar"
73 ARFLAGS          = -r
74
75 # Binary file format converter command and options
76 OBJCOPY          = cp
77 OBJCOPYFLAGS     =
78
79 # Specify the output extension from compiler
80 OBJ_EXT          = .obj
81
82 # Specify extension from linker
83 PROGRAM_FILE_EXT = .o
84
85 # Specify extension for final product at end of build
86 EXE_FILE_EXT     = .out