
debug
Lambda_eta
这个作者很懒,什么都没留下…
展开
-
No version of NDK matched the requested version 21.0.6113669. Versions available locally: 21.3.65281
No version of NDK matched the requested version 21.0.6113669. Versions available locally: 21.3.65281471.在Android studio中,选择file->project structure。在弹出的窗口中选择SDK location,在Android NDK location选择路径2.但是可能无法选择路径,因此可以直接在项目的local.properties中添加ndk.dir=<.原创 2020-12-02 14:07:07 · 3572 阅读 · 0 评论 -
远程连接MYSQL提示Host is not allowed to connect to this MySQL server
如果你想连接你的mysql的时候发生这个错误:ERROR 1130: Host ‘192.168.1.3’ is not allowed to connect to this MySQL server改表法。可能是你的帐号不允许从远程登陆,只能在localhost。这个时候只要在localhost的那台电脑,登入mysql后,更改 “mysql” 数据库里的 “user” 表里的 “ho...转载 2019-07-02 15:04:12 · 1237 阅读 · 0 评论 -
redis配置文件使用相对路径
在配置redis的配置文件时,发现logfile配置为"./redis/redis.log"时,无法正确显示。后来发现配置文件中的相对路径必须与dir项结合使用。pidfile redis.pidlogfile "redis.log"dir ./redisdir设定工作目录为当前目录的redis目录,pidfile和logfile为相对于工作目录的相对路径。如果当前目录为~那么pi...原创 2019-07-02 11:46:05 · 4323 阅读 · 1 评论 -
relocation R_X86_64_32 against `.rodata' can not be used when making a PIE object; recompile with -f
今天安装一个包的时候出现了错误提示。relocation R_X86_64_32 against `.rodata' can not be used when making a PIE object; recompile with -fPIC直接make clean然后再make就安装成功了。...原创 2019-07-02 10:23:04 · 4180 阅读 · 1 评论 -
vimplus打开文件报错Error detected while processing function lfMru#record:
报错:Error detected while processing function lfMru#record:解决方法:来到home文件夹~$ sudo chmod 777 .LfCache/~$ sudo chmod 777 .LfCache/tempMru 推测是由于其中的插件没有权限导致的。使用sudo vim就不会出错。...原创 2019-06-25 11:27:56 · 2064 阅读 · 0 评论 -
安装nginx时出现In function ‘ngx_murmur_hash2’等错误
报错:src/core/ngx_murmurhash.c: In function ‘ngx_murmur_hash2’:src/core/ngx_murmurhash.c:37:11: error: this statement may fall through [-Werror=implicit-fallthrough=] h ^= data[2] << 16...原创 2019-06-25 10:02:03 · 13285 阅读 · 6 评论 -
fdfs的storage启动失败
我是在home目录下,存的设置文件,启动tracker还是成功的,但是执行fdfs_storaged storage.conf就出现了问题[2019-06-18 15:51:26] ERROR - file: shared_func.c, line: 968, file /storage.conf not exist[2019-06-18 15:51:26] ERROR - file: ...原创 2019-06-18 15:59:27 · 12873 阅读 · 1 评论 -
Qt中cannot jump from switch statement to this case label与jump bypasses variable initialization
不能从switch语句跳转到这个case标签跳过旁路变量的初始化当时我是这么写的switch(val){ case 1: ... break; case 2: int b = 1; ... break; case 3: ... break; default: break;}在case 3和default有标题的2个错误。最后发现是我在分支里面初...原创 2019-06-13 15:23:34 · 5676 阅读 · 5 评论 -
解决vs控制台一闪而过的问题
将子系统改为控制台即可。也可以在主函数的最后加上system(“pause”);原创 2019-04-22 08:34:51 · 1529 阅读 · 0 评论 -
Ubuntu update报错sh: 1: /usr/lib/cnf-update-db: not found
原因是之前把python3的软连接改成了python在/usr/bin里sudo cp python python3就可以了原创 2020-11-10 16:23:45 · 6569 阅读 · 5 评论