VirtualBox

source: vbox/trunk/tools/kBuildTools/VBoxXGccX86RedHatLinux.kmk@ 104429

Last change on this file since 104429 was 98443, checked in by vboxsync, 18 months ago

tools/*.kmk: Automatic scm cleanups. bugref:10348

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.6 KB
Line 
1# $Id: VBoxXGccX86RedHatLinux.kmk 98443 2023-02-02 13:03:05Z vboxsync $
2## @file
3# kBuild Tool Config - GCC Cross compiler for CentOS 3 x86.
4#
5
6#
7# Copyright (C) 2013-2023 Oracle and/or its affiliates.
8#
9# This file is part of VirtualBox base platform packages, as
10# available from https://www.virtualbox.org.
11#
12# This program is free software; you can redistribute it and/or
13# modify it under the terms of the GNU General Public License
14# as published by the Free Software Foundation, in version 3 of the
15# License.
16#
17# This program is distributed in the hope that it will be useful, but
18# WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20# General Public License for more details.
21#
22# You should have received a copy of the GNU General Public License
23# along with this program; if not, see <https://www.gnu.org/licenses>.
24#
25# SPDX-License-Identifier: GPL-3.0-only
26#
27
28TOOL_VBoxXGccX86RedHatLinux := GCC Cross compiler for CentOS 3 x86.
29
30# Tool Specific Properties:
31ifndef TOOL_VBoxXGccX86RedHatLinux_PREFIX
32 TOOL_VBoxXGccX86RedHatLinux_PREFIX := i386-redhat-linux-
33endif
34ifndef PATH_TOOL_VBoxXGccX86RedHatLinux
35 PATH_TOOL_VBoxXGccX86RedHatLinux := $(lastword $(sort $(wildcard $(KBUILD_DEVTOOLS_HST)/i386-redhat-linux/*)))
36 ifeq ($(PATH_TOOL_VBoxXGccX86RedHatLinux),)
37 PATH_TOOL_VBoxXGccX86RedHatLinux := $(lastword $(sort $(wildcard $(KBUILD_DEVTOOLS_HST_ALT)/i386-redhat-linux/*)))
38 endif
39endif
40TOOL_VBoxXGccX86RedHatLinux_PREFIX := $(REDIRECT) -E COMPILER_PATH=$(PATH_TOOL_VBoxXGccX86RedHatLinux)/bin/ -- $(PATH_TOOL_VBoxXGccX86RedHatLinux)/bin/$(TOOL_VBoxXGccX86RedHatLinux_PREFIX)
41
42TOOL_VBoxXGccX86RedHatLinux_CC ?= $(TOOL_VBoxXGccX86RedHatLinux_PREFIX)gcc$(HOSTSUFF_EXE)
43TOOL_VBoxXGccX86RedHatLinux_CXX ?= $(TOOL_VBoxXGccX86RedHatLinux_PREFIX)g++$(HOSTSUFF_EXE)
44TOOL_VBoxXGccX86RedHatLinux_AS ?= $(TOOL_VBoxXGccX86RedHatLinux_PREFIX)gcc$(HOSTSUFF_EXE)
45TOOL_VBoxXGccX86RedHatLinux_AR ?= $(TOOL_VBoxXGccX86RedHatLinux_PREFIX)ar$(HOSTSUFF_EXE)
46TOOL_VBoxXGccX86RedHatLinux_LD ?= $(TOOL_VBoxXGccX86RedHatLinux_PREFIX)gcc$(HOSTSUFF_EXE) -Wl,-rpath-link,$(PATH_TOOL_VBoxXGccX86RedHatLinux)/i386-redhat-linux/lib
47TOOL_VBoxXGccX86RedHatLinux_LD_SYSMOD ?= $(TOOL_VBoxXGccX86RedHatLinux_PREFIX)ld$(HOSTSUFF_EXE)
48
49TOOL_VBoxXGccX86RedHatLinux_LD_SONAME ?= -Wl,-soname=$(firstword $($(1)_SONAME.$(KBUILD_TARGET).$(KBUILD_TYPE)) $($(1)_SONAME.$(KBUILD_TARGET)) $($(1)_SONAME.$(KBUILD_TYPE)) $($(1)_SONAME) $(notdir $(2)))
50TOOL_VBoxXGccX86RedHatLinux_LD_MAP ?= -Wl,-Map -Wl,$(1) -Wl,--cref
51TOOL_VBoxXGccX86RedHatLinux_LD_SYSMOD_MAP ?= -Map $(1) --cref
52TOOL_VBoxXGccX86RedHatLinux_LDFLAGS.dll ?= -shared
53TOOL_VBoxXGccX86RedHatLinux_LDFLAGS.sysmod ?= -r
54
55ifdef SLKRUNS
56 TOOL_VBoxXGccX86RedHatLinux_CC += -fmessage-length=0
57 TOOL_VBoxXGccX86RedHatLinux_CXX += -fmessage-length=0
58endif
59
60# General Properties used by kBuild:
61TOOL_VBoxXGccX86RedHatLinux_COBJSUFF ?= .o
62TOOL_VBoxXGccX86RedHatLinux_CFLAGS ?= -g
63TOOL_VBoxXGccX86RedHatLinux_CFLAGS.debug ?= -O0
64TOOL_VBoxXGccX86RedHatLinux_CFLAGS.release ?= -O2
65TOOL_VBoxXGccX86RedHatLinux_CFLAGS.profile ?= -O2
66TOOL_VBoxXGccX86RedHatLinux_CINCS ?=
67TOOL_VBoxXGccX86RedHatLinux_CDEFS ?=
68
69TOOL_VBoxXGccX86RedHatLinux_CXXOBJSUFF ?= .o
70TOOL_VBoxXGccX86RedHatLinux_CXXOBJSUFF ?= .o
71TOOL_VBoxXGccX86RedHatLinux_CXXFLAGS ?= -g
72TOOL_VBoxXGccX86RedHatLinux_CXXFLAGS.debug ?= -O0
73TOOL_VBoxXGccX86RedHatLinux_CXXFLAGS.release ?= -O2
74TOOL_VBoxXGccX86RedHatLinux_CXXFLAGS.profile ?= -O2
75TOOL_VBoxXGccX86RedHatLinux_CXXINCS ?=
76TOOL_VBoxXGccX86RedHatLinux_CXXDEFS ?=
77
78TOOL_VBoxXGccX86RedHatLinux_ASFLAGS ?= -g -x assembler-with-cpp
79TOOL_VBoxXGccX86RedHatLinux_ASOBJSUFF ?= .o
80
81TOOL_VBoxXGccX86RedHatLinux_ARFLAGS ?= cr
82TOOL_VBoxXGccX86RedHatLinux_ARLIBSUFF ?= .a
83TOOL_VBoxXGccX86RedHatLinux_LDFLAGS ?=
84TOOL_VBoxXGccX86RedHatLinux_LDFLAGS.debug ?= -g
85TOOL_VBoxXGccX86RedHatLinux_LDFLAGS.release ?= -s
86
87TOOL_VBoxXGccX86RedHatLinux_COMPILE_C_OUTPUT =
88TOOL_VBoxXGccX86RedHatLinux_COMPILE_C_DEPEND =
89TOOL_VBoxXGccX86RedHatLinux_COMPILE_C_DEPORD =
90define TOOL_VBoxXGccX86RedHatLinux_COMPILE_C_CMDS
91 $(QUIET)$(TOOL_VBoxXGccX86RedHatLinux_CC) -c \
92 $(flags) $(qaddprefix sh,-I, $(incs)) $(qaddprefix sh,-D, $(defs)) \
93 -Wp,-MD,$(dep) -Wp,-MT,$(obj) -Wp,-MP \
94 -o $(obj) \
95 $(abspath $(source))
96endef
97
98TOOL_VBoxXGccX86RedHatLinux_COMPILE_CXX_OUTPUT =
99TOOL_VBoxXGccX86RedHatLinux_COMPILE_CXX_DEPEND =
100TOOL_VBoxXGccX86RedHatLinux_COMPILE_CXX_DEPORD =
101define TOOL_VBoxXGccX86RedHatLinux_COMPILE_CXX_CMDS
102 $(QUIET)$(TOOL_VBoxXGccX86RedHatLinux_CXX) -c \
103 $(flags) $(qaddprefix sh,-I, $(incs)) $(qaddprefix sh,-D, $(defs)) \
104 -Wp,-MD,$(dep) -Wp,-MT,$(obj) -Wp,-MP \
105 -o $(obj) \
106 $(abspath $(source))
107endef
108
109TOOL_VBoxXGccX86RedHatLinux_COMPILE_AS_OUTPUT =
110TOOL_VBoxXGccX86RedHatLinux_COMPILE_AS_DEPEND =
111TOOL_VBoxXGccX86RedHatLinux_COMPILE_AS_DEPORD =
112define TOOL_VBoxXGccX86RedHatLinux_COMPILE_AS_CMDS
113 $(QUIET)$(TOOL_VBoxXGccX86RedHatLinux_AS) -c \
114 $(flags) $(qaddprefix sh,-I, $(incs)) $(qaddprefix sh,-D, $(defs)) \
115 -Wp,-MD,$(dep) -Wp,-MT,$(obj) -Wp,-MP \
116 -o $(obj) \
117 $(abspath $(source))
118endef
119
120TOOL_VBoxXGccX86RedHatLinux_LINK_LIBRARY_OUTPUT = $(out).ar-script
121TOOL_VBoxXGccX86RedHatLinux_LINK_LIBRARY_DEPEND = $(othersrc)
122TOOL_VBoxXGccX86RedHatLinux_LINK_LIBRARY_DEPORD =
123define TOOL_VBoxXGccX86RedHatLinux_LINK_LIBRARY_CMDS
124 $(QUIET)$(APPEND) $(out).ar-script 'CREATE $(out)'
125 $(QUIET)$(APPEND) -n $(out).ar-script \
126 $(foreach o,$(objs), 'ADDMOD $(o)') \
127 $(foreach o,$(othersrc), 'ADDLIB $(o)')
128 $(QUIET)$(APPEND) $(out).ar-script 'SAVE'
129 $(QUIET)$(APPEND) $(out).ar-script 'END'
130 $(QUIET)$(REDIRECT) -rti $(out).ar-script -- $(TOOL_VBoxXGccX86RedHatLinux_AR) -M
131endef
132
133TOOL_VBoxXGccX86RedHatLinux_LINK_PROGRAM_OUTPUT = $(outbase).map
134TOOL_VBoxXGccX86RedHatLinux_LINK_PROGRAM_DEPEND = $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib)))
135TOOL_VBoxXGccX86RedHatLinux_LINK_PROGRAM_DEPORD =
136define TOOL_VBoxXGccX86RedHatLinux_LINK_PROGRAM_CMDS
137 $(QUIET)$(TOOL_VBoxXGccX86RedHatLinux_LD) $(flags) -o $(out) $(objs) \
138 $(foreach p,$(libpath), -L$(p)) \
139 $(foreach lib,$(libs), $(if $(findstring $(lib),$(subst /,x,$(lib))), -l$(patsubst lib%,%,$(basename $(lib))), $(lib))) \
140 $(call TOOL_VBoxXGccX86RedHatLinux_LD_MAP,$(outbase).map)
141endef
142
143TOOL_VBoxXGccX86RedHatLinux_LINK_DLL_OUTPUT = $(outbase).map
144TOOL_VBoxXGccX86RedHatLinux_LINK_DLL_DEPEND = $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib)))
145TOOL_VBoxXGccX86RedHatLinux_LINK_DLL_DEPORD =
146define TOOL_VBoxXGccX86RedHatLinux_LINK_DLL_CMDS
147 $(QUIET)$(TOOL_VBoxXGccX86RedHatLinux_LD) $(TOOL_VBoxXGccX86RedHatLinux_LDFLAGS.dll) $(flags) -o $(out) \
148 $(if $(filter-out win32 os2, $(KBUILD_TARGET)),$(call TOOL_VBoxXGccX86RedHatLinux_LD_SONAME,$(target),$(out))) \
149 $(objs) \
150 $(foreach p,$(libpath), -L$(p)) \
151 $(foreach lib,$(libs), $(if $(findstring $(lib),$(subst /,x,$(lib))), -l$(patsubst lib%,%,$(basename $(lib))), $(lib))) \
152 $(call TOOL_VBoxXGccX86RedHatLinux_LD_MAP,$(outbase).map)
153endef
154
155TOOL_VBoxXGccX86RedHatLinux_LINK_SYSMOD_OUTPUT = $(outbase).map
156TOOL_VBoxXGccX86RedHatLinux_LINK_SYSMOD_DEPEND = $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib)))
157TOOL_VBoxXGccX86RedHatLinux_LINK_SYSMOD_DEPORD =
158define TOOL_VBoxXGccX86RedHatLinux_LINK_SYSMOD_CMDS
159 $(QUIET)$(TOOL_VBoxXGccX86RedHatLinux_LD_SYSMOD) $(TOOL_VBoxXGccX86RedHatLinux_LDFLAGS.sysmod) $(flags) -o $(out) $(objs) \
160 $(foreach p,$(libpath), -L$(p)) \
161 $(foreach lib,$(libs), $(if $(findstring $(lib),$(subst /,x,$(lib))), -l$(patsubst lib%,%,$(basename $(lib))), $(lib))) \
162 $(call TOOL_VBoxXGccX86RedHatLinux_LD_SYSMOD_MAP,$(outbase).map)
163endef
164
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use