IDE: compiler options: -pg gprof added hint that it only works on 32bit

git-svn-id: trunk@53112 -
This commit is contained in:
mattias 2016-10-14 17:46:39 +00:00
parent 76a051e364
commit d15596f13e
2 changed files with 2 additions and 1 deletions

View File

@ -113,7 +113,7 @@ begin
chkUseExternalDbgSyms.Caption := dlgExtSymb + ' (-Xg)';
chkUseHeaptrc.Caption := dlgCOHeaptrc + ' (-gh)';
chkTrashVariables.Caption := dlgCOTrashVariables + ' (-gt)';
chkGenGProfCode.Caption := dlgGPROF + ' (-pg)';
chkGenGProfCode.Caption := dlgGPROF + ' (-pg, '+lisOnly32bit+')';
chkSymbolsStrip.Caption := dlgCOStrip + ' (-Xs)';
end;

View File

@ -2267,6 +2267,7 @@ resourcestring
dlgCOTrashVariables = 'Trash variables';
dlgCOValgrind = 'Generate code for valgrind';
dlgGPROF = 'Generate code for gprof';
lisOnly32bit = 'only 32bit';
dlgCOStrip = 'Strip symbols from executable';
dlgExtSymb = 'Use external gdb debug symbols file';
dlgLinkSmart = 'Link smart';