Changeset 3391 for trunk/kBuild/tools/GXX3PLAIN.kmk
- Timestamp:
- Jun 30, 2020, 10:08:15 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/tools/GXX3PLAIN.kmk
r3258 r3391 35 35 36 36 # Tool Specific Properties 37 TOOL_GXX3PLAIN_CC ?= gcc$(HOSTSUFF_EXE) 38 TOOL_GXX3PLAIN_CXX ?= g++$(HOSTSUFF_EXE) 39 TOOL_GXX3PLAIN_PCH ?= $(TOOL_GXX3PLAIN_CXX) 40 TOOL_GXX3PLAIN_AS ?= gcc$(HOSTSUFF_EXE) 41 TOOL_GXX3PLAIN_AR ?= ar$(HOSTSUFF_EXE) 42 TOOL_GXX3PLAIN_RANLIB ?= ranlib$(HOSTSUFF_EXE) 43 TOOL_GXX3PLAIN_LD ?= g++$(HOSTSUFF_EXE) 44 TOOL_GXX3PLAIN_LD_SYSMOD ?= ld$(HOSTSUFF_EXE) 45 TOOL_GXX3PLAIN_LD_SYSMOD.os2 ?= g++$(HOSTSUFF_EXE) 37 ifndef TOOL_GXX3PLAIN_PREFIX 38 TOOL_GXX3PLAIN_PREFIX := 39 endif 40 ifndef TOOL_GXX3PLAIN_SUFFIX 41 TOOL_GXX3PLAIN_SUFFIX := $(HOSTSUFF_EXE) 42 endif 43 TOOL_GXX3PLAIN_CC ?= $(TOOL_GXX3PLAIN_PREFIX)gcc$(TOOL_GXX3PLAIN_SUFFIX) 44 TOOL_GXX3PLAIN_CXX ?= $(TOOL_GXX3PLAIN_PREFIX)g++$(TOOL_GXX3PLAIN_SUFFIX) 45 TOOL_GXX3PLAIN_PCH ?= $(TOOL_GXX3PLAIN_CXX) 46 TOOL_GXX3PLAIN_AS ?= $(TOOL_GXX3PLAIN_PREFIX)gcc$(TOOL_GXX3PLAIN_SUFFIX) 47 TOOL_GXX3PLAIN_AR ?= $(TOOL_GXX3PLAIN_PREFIX)ar$(TOOL_GXX3PLAIN_SUFFIX) 48 TOOL_GXX3PLAIN_RANLIB ?= $(TOOL_GXX3PLAIN_PREFIX)ranlib$(TOOL_GXX3PLAIN_SUFFIX) 49 TOOL_GXX3PLAIN_LD ?= $(TOOL_GXX3PLAIN_PREFIX)g++$(TOOL_GXX3PLAIN_SUFFIX) 50 TOOL_GXX3PLAIN_LD_SYSMOD ?= $(TOOL_GXX3PLAIN_PREFIX)ld$(TOOL_GXX3PLAIN_SUFFIX) 51 TOOL_GXX3PLAIN_LD_SYSMOD.os2 ?= $(TOOL_GXX3PLAIN_PREFIX)g++$(TOOL_GXX3PLAIN_SUFFIX) 46 52 TOOL_GXX3PLAIN_LDFLAGS.dll.os2 ?= -Zdll 47 53 TOOL_GXX3PLAIN_LDFLAGS.dll.darwin ?= -dynamiclib
Note:
See TracChangeset
for help on using the changeset viewer.