目录
弹出密钥环输入框
https://zhuanlan.zhihu.com/p/71924384
安装破解插件之后打不开
问题1:
将jetbrains-agent.jar
拖入到IDE后,点击快捷键方式没有反应。通过命令打开IDE提示错误:
FATAL ERROR in native method: processing of -javaagent failed, processJavaStart failed
找到一些资料(windows):
https://blog.csdn.net/hnzmdpan/article/details/119845850
http://e.betheme.net/article/show-208908.html?action=onClick
通过打印启动脚本里的VM_OPTIONS变量,发现确实有-javaagent这项参数.
通过追溯VM_OPTIONS变量的赋值过程,查找vmoptions文件:
根据代码可知VM_OPTIONS变量是由VM_OPTIONS_FILE与USER_VM_OPTIONS_FILE合并而来的。
问题2:
找不到主类:-Xms256m
将两个vm_options文件里的-Xms256m选项去掉之后,执行脚本就能成功的打开ide了。但奇怪的是之后我将这个参数又加回去了,竟然ide还是能正常打开。
函数无法跳转问题
https://blog.csdn.net/m0_56036452/article/details/118302829
右击项目,mark as source root
clion the break point will not be hit
https://hexo.yuanjh.cn/hexo/9dc73b8b/
一般是1)编译参数-g没有加上(可能编译过于复杂,逻辑判断导致没有加上。)2.可执行程序做了stripped处理
remote debug时没有任何反应
可能一种情况就是两端的程序不一致,另一端的程序是stripped的。
打开超大工程报错:WARN - #c.i.o.v.i.l.NativeFileWatcherImpl No space left on device和 WARN - #c.i.o.v.i.l.NativeFileWatcherImpl - The current inotify(7) watch limit is too low.
sudo sysctl fs.inotify.max_user_watches=524288
sudo sysctl -p
相同项目到另外一台电脑无法正确识别CMakeLists.txt里配置的目标
报错:It was created with incompatible generator ‘Unix Makefiles‘
https://blog.csdn.net/qq_40421793/article/details/124263916
0 条评论