环境:VMware 10 + Redhat Linux 6。
VMware Tool 共享代码目录。
Eclipse for C/C++ (CDT, JDK 1.8)编辑代码:
创建“Makefile Project with Exsiting Code”工程,指定代码位置:
源代码中文乱码问题:
针对当前编辑文件:Edit→Set Encoding。源代码文件如果是ANSI格式的,则选择“GBK”。
针对Project:Project→Properties→Resource。
先从Eclipse中删除旧的Project。
然后在文件系统,工程目录下面删除.project、.cproject、.setting等文件或目录,这三个文件由Eclipse创建维护。
为代码创建索引,方便以后查找变量/函数定义、调用者等等。IDE的主要功能。这一点不同于ctags/gtags使用正则表达式识别标志符,Eclipse的indexer更像 Visual Studio的语法解析器,会尝试理解C++代码。而SourceInsight似乎介于二者之间。
编译后更新index
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中去除的目录/文件:
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 (调试集群代码才需要)
Window → Preference → C++ → Editor → Indexer → Skip files larger than 100 MB
例如gbase/sql/sql_lex.h的编码应为utf-8,默认为GBK时会出很多index错误
大多数用户设置只需要设置一次,然后导出到配置文件,新建的工程直接导入就可以了。
File → Export → General → Preferences
File → Import → General → Preferences
check "Link With Editor"
make fast:
Preference → Editor → Content Assist → Delay (ms) = 100
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
修改默认值:
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错误。
方法1(推荐):打开workspace后,设置选项: Window → Preferences → General → Workspace → Workspace Name (shown in window title)
方法2:add "-showlocation" to eclipse.ini file located inside the eclipse folder
vi键绑定插件:
$ vi ~/.vrapperrc
set incsearch
set clipboart=unnamedplus
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.
安装suclipse后,右键点击文件→ Compare With,比较窗口一边可以显示中文(workspace file,设置了GBK编码),一边显示乱码(从svn下载的文件)。
解决方法:设置eclipse中C源码文件的默认encoding为GBK编码:
Window → Preference → General → Content Types → C Source File:Default Encoding: GBK
默认执行Eclipse应用程序,.bashrc不会自动应用,在用户不重新登录Linux桌面的情况下,如何使.bashrc变更应用到Eclipse环境呢?
在eclipse目录下新建一个shell脚本,命名为run_eclipse.sh,内容为:
#! /bin/bash
bash -i -c "eclipse主程序路径"
通过运行run_eclipse.sh启动Eclipse可以达到上述目的。
新建一个“C/C++Attach to Application”类型的“Debug Configuration”,调试使用gdb,这里将调试配置命名为“gbase_debug”。
禁止自动Build:“Build (if …) before…”选择“Disable auto build”。
调试时,选择上面创建调试配置。从进程列表中选择需要附加的进程“gbased”。
切换到调试试图:
选中变量,右键弹出菜单,选择“Add Watch Expression”,将变量先加入“Expression”列表中:
“Expression”列表中右键变量,弹出菜单选择“Add WatchPoint(C/C++)”,弹出窗口按需要设置监视条件。
添加数据断点后,该断点将在自动加入“Breakpoint”列表。
当被监视变量发生变化时,程序自动中断。