mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-19 06:55:23 +02:00

Two of the fixes, 43614 and 43756, involved changing property files only, which validates the extra work of externalizing strings from the start! For 43616, I simply took the advice of the bug reporter and added the '-' in front of the RM macro in the clean target and the include directives in the makefile. The largest part of the fix involves 43220. Until just now, this was a critical bug in bugzilla, so I addressed it. It has just been downgraded to an enhancement request. There is now a new entry widget in the linker options for user objects. The makefile will simply add these to the final build target's command. Most of the work was done in the plugin file and the build model to handle the new "type" of option.
49 lines
1.8 KiB
Properties
49 lines
1.8 KiB
Properties
pluginName=C/C++ Managed Builder UI
|
|
providerName=Eclipse.org
|
|
|
|
# The Wizards
|
|
MngCWizard.name=Managed Make C Project
|
|
MngCWizard.description=Create a new C project and let Eclipse create and manage the makefile
|
|
MngCCWizard.name=Managed Make C++ Project
|
|
MngCCWizard.description=Create a new C++ project and let Eclipse create and manage the makefile
|
|
|
|
# Build Model Names
|
|
ConfigName.Rel=Release
|
|
ConfigName.Dbg=Debug
|
|
ToolName.preprocessor = Preprocessor
|
|
ToolName.compiler = Compiler
|
|
ToolName.archiver = Archiver
|
|
ToolName.linker = Linker
|
|
OptionCategory.Preproc = Preprocessor
|
|
OptionCategory.Dirs = Directories
|
|
OptionCategory.General = General
|
|
OptionCategory.Optimize=Optimization
|
|
OptionCategory.Debug=Debugging
|
|
OptionCategory.Warn=Warnings
|
|
OptionCategory.Misc=Miscellaneous
|
|
OptionCategory.Libs=Libraries
|
|
|
|
Option.Posix.PreprocOnly=Preprocess only (-E)
|
|
Option.Posix.Nostdinc=Do not search system directories (-nostdinc)
|
|
|
|
Option.Posix.DefSym=Defined symbols (-D)
|
|
Option.Posix.UndefSym=Undefined symbols (-U)
|
|
|
|
Option.Posix.Optimize.None=None (-O0)
|
|
Option.Posix.Optimize.Optimize=Optimize (-O1)
|
|
Option.Posix.Optimize.More=Optimize more (-O2)
|
|
Option.Posix.Optimize.Most=Optimize most (-O3)
|
|
|
|
Option.Posix.Verbose=Verbose (-v)
|
|
Option.OtherFlags=Other flags
|
|
|
|
Option.Posix.Linker.NoStartFiles=Do not use standard start files (-nostartfiles)
|
|
Option.Posix.Linker.NoDefLibs=Do not use default libraries (-nodefaultlibs)
|
|
Option.Posix.Linker.NoStdLibs=No startup or default libs (-nostdlib)
|
|
Option.Posix.Linker.Strip=Remove symbol table (-s)
|
|
Option.Posix.Linker.Static=No shared libraries (-static)
|
|
Option.Posix.Linker.XLinker=Other options (-Xlinker [option])
|
|
Option.Posix.Linker.Flags=Linker flags
|
|
Option.Posix.Libs=Libraries (-l)
|
|
Option.Posix.Libsearch=Library search path (-L)
|
|
Option.Posix.UserObjs=Other objects
|