一、基本配置

环境:VMware 10 + Redhat Linux 6。

img

VMware Tool 共享代码目录。

img

Eclipse for C/C++ (CDT, JDK 1.8)编辑代码:

创建“Makefile Project with Exsiting Code”工程,指定代码位置:

img

img

源代码中文乱码问题:

针对当前编辑文件:Edit→Set Encoding。源代码文件如果是ANSI格式的,则选择“GBK”。

img

针对Project:Project→Properties→Resource。

img

二、配置秘技

彻底删除旧的的工程配置

先从Eclipse中删除旧的Project。

然后在文件系统,工程目录下面删除.project、.cproject、.setting等文件或目录,这三个文件由Eclipse创建维护。

新建“Makefile Project with Exsiting Code”类型Project。

img

CDT Indexer

为代码创建索引,方便以后查找变量/函数定义、调用者等等。IDE的主要功能。这一点不同于ctags/gtags使用正则表达式识别标志符,Eclipse的indexer更像 Visual Studio的语法解析器,会尝试理解C++代码。而SourceInsight似乎介于二者之间。

Use built files. (including the generated config.h)

编译后更新index

去除与gbased单机无关的代码

client/gcluster的代码会引起indexer混乱,因为它们会undefine GBASESERVER宏,并定义HAVEGCLUSTER宏。

排除目录/文件方法

去除目录:Project Explorer → right click → Resource Configurations → Exclude from Build…

去单个文件:Project Explorer → right click → Properties → C/C++ Build → Exclude resource from build…

以下为需要从indexer中去除的目录/文件:

snippet.txt
gbase/client: GBASE_CLIENT defined in this directory override GBASE_SERVER
gbase/gbase-test: lot's of Windows things
gbase/sql/gcluster: gcluster code
gbase/storage/gcluster: gcluster code
gbase/storage/express/cluster: TABLE difinition collision with mysql
gbase/include/config-win.h: Windows things

宏定义

使indexer只对gbased单机代码创建索引

Project → Properties → C/C++ General → Path and Symbols → Symbols → GBASE_SERVER

Project → Properties → C/C++ General → Path and Symbols → Symbols → HAVE_GCLUSTER (调试集群代码才需要)

img

支持大索引文件

Window → Preference → C++ → Editor → Indexer → Skip files larger than 100 MB

支持长文件

Window → Preference → C++ → Editor → scalability → Enable scalability mode when … 50000

img

文件的编码不正确会导致index找不到定义

例如gbase/sql/sql_lex.h的编码应为utf-8,默认为GBK时会出很多index错误

创建调试配置

Export/Import Preference

大多数用户设置只需要设置一次,然后导出到配置文件,新建的工程直接导入就可以了。

File → Export → General → Preferences

File → Import → General → Preferences

Outline

check "Link With Editor"

Content Assist

make fast:

Preference → Editor → Content Assist → Delay (ms) = 100

Editor

disable spell checking:

Preference → General → Editor → Text Editors → Spelling → Enable spell checking (X)

show trailing whitespaces:

Preference → General → Editor → Text Editors → Show whitespace characters → show trailing whitespaces

Encoding

修改默认值:

Preference → General → Workspace → Text File Encoding → UTF-8/GBK

设置单个文件:

Edit → Set Encoding… → UTF-8/GBK

注意:encoding设置不正确会影响index准确性。例如gbase/sql/sql_lex.h的编码应为utf-8,默认为GBK时会出很多index错误。

在eclipse窗口标题中显示workspace name,以便alt-tab切换。

方法1(推荐):打开workspace后,设置选项: Window → Preferences → General → Workspace → Workspace Name (shown in window title)

方法2:add "-showlocation" to eclipse.ini file located inside the eclipse folder

vrapper

vi键绑定插件:

  1. 设置incremental search
  2. 使用system clipboard (+buffer)

$ vi ~/.vrapperrc

set incsearch

set clipboart=unnamedplus

让subclipse识别working copy

If you have been working without Subclipse (e.g. using TortoiseSVN or some other client), and then install it, and are wondering why it doesn't recognize that your project is in SVN, you will have to go to Team > Share Project.Subclipse will then see that it's in SVN and then start working.

subclipse compare/diff 中文乱码的问题

安装suclipse后,右键点击文件→ Compare With,比较窗口一边可以显示中文(workspace file,设置了GBK编码),一边显示乱码(从svn下载的文件)。

解决方法:设置eclipse中C源码文件的默认encoding为GBK编码:

Window → Preference → General → Content Types → C Source File:Default Encoding: GBK

Eclipse 启动自动应用.bashrc

默认执行Eclipse应用程序,.bashrc不会自动应用,在用户不重新登录Linux桌面的情况下,如何使.bashrc变更应用到Eclipse环境呢?

在eclipse目录下新建一个shell脚本,命名为run_eclipse.sh,内容为:

#! /bin/bash

bash -i -c "eclipse主程序路径"

通过运行run_eclipse.sh启动Eclipse可以达到上述目的。

Eclipse可视化调试

新建一个“C/C++Attach to Application”类型的“Debug Configuration”,调试使用gdb,这里将调试配置命名为“gbase_debug”。

禁止自动Build:“Build (if …) before…”选择“Disable auto build”。

img

调试时,选择上面创建调试配置。从进程列表中选择需要附加的进程“gbased”。

img

切换到调试试图:

img

Eclipse数据断点

选中变量,右键弹出菜单,选择“Add Watch Expression”,将变量先加入“Expression”列表中:

img

“Expression”列表中右键变量,弹出菜单选择“Add WatchPoint(C/C++)”,弹出窗口按需要设置监视条件。

img

添加数据断点后,该断点将在自动加入“Breakpoint”列表。

img

当被监视变量发生变化时,程序自动中断。

三、远程调试gbased

img

点击“New…”建立远程连接器,一般用“SSH Only”即可。

img

img

img

img