Ruby 2.x 源代码学习:ubuntu 环境 下载,编译,调试 ruby 源代码
下载 Ruby 源代码
# git clone https://github.com/ruby/ruby.git
生成 configure
# autoconf
configure
# ./configure
make
# make install
为了方便调试,可以在 Makefile 文件中去掉 optflags 优化选项
使用 Idea CLION 跨平台 C/C++ IDE 查看和调试代码
从官网下载 CLION 安装包(for linux),解压安装
以源代码形式(import from source)导入 ruby 源代码,导入过程IDE会自动检测 .c 和 .h 文件
导入完成后,Clion 会自动创建一个 Run/Debug Configuration,将 executable 设定为 /usr/local/bin/ruby(make install 默认安装路径)
编辑 Run/Debug Configuration 去掉 build 动作(我们不需要在 IDE 里面编译)
现在就可以在源代码中设置断点并调试
相关推荐
PMJ0 2020-10-13
longzhiwen 2020-09-06
yangxingstar 2020-08-31
LUCIEN0 2020-08-17
huangzihao00 2020-08-17
Jan 2020-08-17
AndesStay 2020-06-12
afengxg 2020-06-09
zamesking 2020-06-09
afengxg 2020-06-09
何志文 2020-06-09
teresalxm 2020-06-05
何志文 2020-05-16
何志文 2020-05-11
fsl 2020-05-04
JOO 2020-04-26
倩 2020-04-22
afanti 2020-04-19
始终不够 2020-04-10