~ubuntu-branches/ubuntu/trusty/codeblocks/trusty-proposed

« back to all changes in this revision

Viewing changes to src/plugins/compilergcc/compilerLCC.cpp

  • Committer: Package Import Robot
  • Author(s): Vincent Cheng
  • Date: 2013-05-06 00:20:02 UTC
  • mfrom: (6.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130506002002-ngc7bwkewnak8fja
Tags: 12.11-3
* Upload to unstable.
* Update watch file, thanks to Bart Martens.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * This file is part of the Code::Blocks IDE and licensed under the GNU General Public License, version 3
3
3
 * http://www.gnu.org/licenses/gpl-3.0.html
4
4
 *
5
 
 * $Revision: 6084 $
6
 
 * $Id: compilerLCC.cpp 6084 2010-01-14 08:15:48Z mortenmacfly $
7
 
 * $HeadURL: svn+ssh://jenslody@svn.berlios.de/svnroot/repos/codeblocks/trunk/src/plugins/compilergcc/compilerLCC.cpp $
 
5
 * $Revision$
 
6
 * $Id$
 
7
 * $HeadURL$
8
8
 */
9
9
 
10
10
#ifdef __WXMSW__
49
49
    m_Programs.CPP     = _T("lcc.exe");
50
50
    m_Programs.LD      = _T("lcclnk.exe");
51
51
    m_Programs.DBG     = _T("cdb.exe");
 
52
    m_Programs.DBGconfig = wxEmptyString;
52
53
    m_Programs.LIB     = _T("lcclib.exe");
53
54
    m_Programs.WINDRES = _T("lrc.exe");
54
55
    m_Programs.MAKE    = _T("make.exe");
63
64
    m_Switches.needDependencies        = true;
64
65
    m_Switches.forceCompilerUseQuotes  = false;
65
66
    m_Switches.forceLinkerUseQuotes    = false;
66
 
    m_Switches.logging                 = clogSimple; // clogFull;
 
67
    m_Switches.logging                 = CompilerSwitches::defaultLogging;
67
68
    m_Switches.libPrefix               = _T("");
68
69
    m_Switches.libExtension            = _T("lib");
69
70
    m_Switches.linkerNeedsLibPrefix    = false;