青春无悔
发布时间:2014-11-14 20:57:04
出现如下错误:undefined reference to 'pthread_create'undefined reference to 'pthread_join'问题原因: pthread 库不是 Linux 系统默认的库,连接时需要使用静态库 libpthread.a,所以在使用pthread_create()创建线程,以及调用 pthread_atfork()函数建立fork处理程序时,需要链接该库。.........【阅读全文】
发布时间:2014-11-13 17:11:50
文章来源:http://blog.csdn.net/candyliuxj/article/details/64292081.QString转char *先将QString转换为QByteArray,再将QByteArray转换为char *。注意:不能用下面的转换形式char *mm = str.toLatin1().data();。因为这样的话,str.toLatin1()得到的QByteArray类型结果就不能保存,最后转换,mm的值就为空.........【阅读全文】
发布时间:2014-11-11 17:55:48
Makefile点击(此处)折叠或打开all: rtc_appCROSS_COMPILE = arm-linux-gnueabihf-src := $(shell ls *.c)rtc_app: $(src)????$(CROSS_COMPILE)gcc -static -o $@ $^???.........【阅读全文】
发布时间:2014-11-11 17:55:22
在common/console.c添加 int scanf(const char* fmt, ...){ int i = 0; unsigned char c; va_list args; char buffer[128]; #ifndef CONFIG_PRE_CONSOLE_BUFFER if (!gd->have_console)  .........【阅读全文】
发布时间:2014-11-11 17:20:19
Makefile点击(此处)折叠或打开all: rtc_appCROSS_COMPILE = arm-linux-gnueabihf-src := $(shell ls *.c)rtc_app: $(src) $(CROSS_COMPILE)gcc -static -o $@ $^ .........【阅读全文】