资源简介

codeblocks官网下载太慢,这个是带编译器版本16.01 免安装。我从官网下载下来传上来的,csdn速度杠杠的! 官网地址:http://www.codeblocks.org/downloads/26

资源截图

代码片段和文件信息

# -*- python -*-
# Copyright (C) 2009-2014 Free Software Foundation Inc.

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not see .

import sys
import gdb
import os
import os.path

pythondir = ‘/mingw32tdm/share/gcc-4.9.2/python‘
libdir = ‘/mingw32tdm/lib/gcc/mingw32/4.9.2‘

# This file might be loaded when there is no current objfile.  This
# can happen if the user loads it manually.  In this case we don‘t
# update sys.path; instead we just hope the user managed to do that
# beforehand.
if gdb.current_objfile () is not None:
    # Update module path.  We want to find the relative path from libdir
    # to pythondir and then we want to apply that relative path to the
    # directory holding the objfile with which this file is associated.
    # This preserves relocatability of the gcc tree.

    # Do a simple normalization that removes duplicate separators.
    pythondir = os.path.normpath (pythondir)
    libdir = os.path.normpath (libdir)

    prefix = os.path.commonprefix ([libdir pythondir])
    # In some bizarre configuration we might have found a match in the
    # middle of a directory name.
    if prefix[-1] != ‘/‘:
        prefix = os.path.dirname (prefix) + ‘/‘

    # Strip off the prefix.
    pythondir = pythondir[len (prefix):]
    libdir = libdir[len (prefix):]

    # Compute the “..“s needed to get from libdir to the prefix.
    dotdots = (‘..‘ + os.sep) * len (libdir.split (os.sep))

    objfile = gdb.current_objfile ().filename
    dir_ = os.path.join (os.path.dirname (objfile) dotdots pythondir)

    if not dir_ in sys.path:
        sys.path.insert(0 dir_)

# Load the pretty-printers.
from libstdcxx.v6.printers import register_libstdcxx_printers
register_libstdcxx_printers (gdb.current_objfile ())

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件      205312  2016-01-25 21:11  Addr2LineUI.exe
     文件       58368  2016-01-25 21:11  CbLauncher.exe
     文件     1344512  2016-01-28 18:48  cbp2make.exe
     文件      113678  2016-01-25 21:11  cb_console_runner.exe
     文件      532494  2016-01-25 21:11  cb_share_config.exe
     文件     6467598  2016-01-25 21:11  codeblocks.dll
     文件     2093582  2016-01-25 21:11  codeblocks.exe
     文件     1256112  2015-11-04 20:12  dbghelp.dll
     文件       23040  2015-11-15 09:50  exchndl.dll
     文件      216064  2015-11-15 09:50  mgwhelp.dll
     目录           0  2016-02-01 20:00  MinGW\
     目录           0  2016-02-01 19:59  MinGW\bin\
     文件      666126  2014-01-09 22:49  MinGW\bin\addr2line.exe
     文件      692238  2014-01-09 22:49  MinGW\bin\ar.exe
     文件     1285646  2014-01-09 22:49  MinGW\bin\as.exe
     文件      763904  2014-12-08 21:09  MinGW\bin\c++.exe
     文件      665102  2014-01-09 22:49  MinGW\bin\c++filt.exe
     文件      762368  2014-12-08 21:09  MinGW\bin\cpp.exe
     文件      722958  2014-01-09 22:49  MinGW\bin\dlltool.exe
     文件       56334  2014-01-09 22:49  MinGW\bin\dllwrap.exe
     文件       43022  2014-01-09 22:49  MinGW\bin\elfedit.exe
     文件      763904  2014-12-08 21:09  MinGW\bin\g++.exe
     文件       51712  2014-12-08 21:09  MinGW\bin\gcc-ar.exe
     文件       51712  2014-12-08 21:09  MinGW\bin\gcc-nm.exe
     文件       51712  2014-12-08 21:09  MinGW\bin\gcc-ranlib.exe
     文件      761856  2014-12-08 21:09  MinGW\bin\gcc.exe
     文件      445952  2014-12-08 21:09  MinGW\bin\gcov.exe
     文件    30595068  2013-09-15 01:52  MinGW\bin\gdb.exe
     文件      908334  2013-09-15 01:52  MinGW\bin\gdbserver.exe
     文件      732174  2014-01-09 22:49  MinGW\bin\gprof.exe
     文件      964622  2014-01-09 22:49  MinGW\bin\ld.bfd.exe
............此处省略3108个文件信息

评论

共有 条评论