上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 123 下一页
摘要: 一、标准预定义宏The standard predefined macros are specified by the relevant language standards, so they are available with all compilers that implement those 阅读全文
posted @ 2017-06-13 15:12 zengkefu 阅读(426) 评论(0) 推荐(0) 编辑
摘要: http://laoar.net/ 阅读全文
posted @ 2017-06-13 15:10 zengkefu 阅读(173) 评论(0) 推荐(0) 编辑
摘要: https://www.ibm.com/developerworks/cn/linux/l-gcc-hacks/ GCC 和 Linux 是出色的组合。尽管它们是独立的软件,但是 Linux 完全依靠 GCC 在新的体系结构上运行。Linux 还利用 GCC 中的特性(称为扩展)实现更多功能和优化。 阅读全文
posted @ 2017-06-13 15:06 zengkefu 阅读(474) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/lisuyun/p/4169395.html http://blog.csdn.net/kai_gai/article/details/45689247 http://blog.csdn.net/lijiuyangzilsc/article/detail 阅读全文
posted @ 2017-06-13 15:00 zengkefu 阅读(183) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/mydo/article/details/3738336 GNUC的一大特色(却不被初学者所知)就是__attribute__机制。__attribute__可以设置函数属性(FunctionAttribute)、变量属性(Variable Attribut 阅读全文
posted @ 2017-06-13 14:50 zengkefu 阅读(4782) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/loveisasea/article/details/46292715 http://blog.csdn.net/loveisasea/article/details/46292715 rust官方学习文档: 1.http://doc.rust-lang.o 阅读全文
posted @ 2017-06-12 21:40 zengkefu 阅读(488) 评论(0) 推荐(0) 编辑
摘要: 参考 https://rustdt.github.io/ https://github.com/RustDT/RustDT/blob/latest/documentation/UserGuide.md#user-guide https://stackoverflow.com/questions/33 阅读全文
posted @ 2017-06-12 21:37 zengkefu 阅读(3063) 评论(0) 推荐(0) 编辑
摘要: This web page provides 32-bit and 64-bit binaries of gdb for Windows for download. Equation Solution build the debugger from GNU gdb. It is a free sof 阅读全文
posted @ 2017-06-12 11:06 zengkefu 阅读(561) 评论(0) 推荐(0) 编辑
摘要: 首先,三个的官方网站分别是: minGW:http://www.mingw.org cygwin: http://www.cygwin.com gnuwin32: https://sourceforge.net/projects/getgnuwin32/ minGW给那些习惯于再Linux上开发的人 阅读全文
posted @ 2017-06-12 10:57 zengkefu 阅读(638) 评论(0) 推荐(0) 编辑
摘要: http://tdm-gcc.tdragon.net/download 阅读全文
posted @ 2017-06-12 10:49 zengkefu 阅读(609) 评论(0) 推荐(0) 编辑
摘要: https://www.gnu.org/software/binutils/ 阅读全文
posted @ 2017-06-12 10:47 zengkefu 阅读(215) 评论(0) 推荐(0) 编辑
摘要: https://gcc.gnu.org/install/binaries.html Installing GCC We are often asked about pre-compiled versions of GCC. While we cannot provide these for all 阅读全文
posted @ 2017-06-12 10:42 zengkefu 阅读(210) 评论(0) 推荐(0) 编辑
摘要: http://crosstool-ng.github.io/ 阅读全文
posted @ 2017-06-12 10:35 zengkefu 阅读(196) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/typa01_kk/article/category/1274941 阅读全文
posted @ 2017-06-11 23:01 zengkefu 阅读(135) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/column/details/tensorflow.html 阅读全文
posted @ 2017-06-11 22:02 zengkefu 阅读(139) 评论(0) 推荐(0) 编辑
摘要: http://www.nagain.com/activity/article/4/ http://blog.csdn.net/snsn1984/article/details/8593380 阅读全文
posted @ 2017-06-11 21:58 zengkefu 阅读(821) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/qoakzmxncb/archive/2013/04/18/3029105.html 在XCode中,我们经常会看到这些编译选项(如下图),有些人可能会有些茫然,本文将对GCC4.2、LLVM GCC 4.2、LLVM compliler 2.0三个编译 阅读全文
posted @ 2017-06-11 21:38 zengkefu 阅读(1515) 评论(1) 推荐(1) 编辑
摘要: Cross GCC Cygwin GCC Linux GCC MacOSX GCC MinGW GCC Solaris GCC Clang 阅读全文
posted @ 2017-06-11 21:25 zengkefu 阅读(193) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/typa01_kk/article/details/49252513 阅读全文
posted @ 2017-06-11 21:00 zengkefu 阅读(707) 评论(0) 推荐(0) 编辑
摘要: 信号是一种软中断,是一种处理异步事件的方法。一般来说,操作系统都支持许多信号。尤其是UNIX,比较重要应用程序一般都会处理信号。UNIX定义了许 多信号,比如SIGINT表示中断字符信号,也就是Ctrl+C的信号,SIGBUS表示硬件故障的信号;SIGCHLD表示子进程状态改变信号; SIGKILL 阅读全文
posted @ 2017-06-11 20:21 zengkefu 阅读(712) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/CareySon/archive/2013/02/01/SqlOSSchedule.html http://blog.csdn.net/fredrickhu/article/details/8260131 阅读全文
posted @ 2017-06-11 13:18 zengkefu 阅读(302) 评论(0) 推荐(0) 编辑
摘要: Appendices Published: April 27, 2005 On This Page Appendix A: SQL Server for Oracle Professionals Appendix B: Getting the Best Out of SQL Server 2000 阅读全文
posted @ 2017-06-11 13:06 zengkefu 阅读(561) 评论(0) 推荐(0) 编辑
摘要: https://technet.microsoft.com/en-us/library/aa998171(v=exchg.65).aspx 阅读全文
posted @ 2017-06-11 12:57 zengkefu 阅读(240) 评论(0) 推荐(0) 编辑
摘要: http://www.sqlpanda.com/2013/07/learning-note-sql-server-vs.html This is my learning note base on the “SQL Server Essentials for Oracle DBAs Jump Star 阅读全文
posted @ 2017-06-11 12:53 zengkefu 阅读(214) 评论(0) 推荐(0) 编辑
摘要: Posted by Padma Chitturi in Uncategorized. Leave a Comment Hi Folks, It has been such a long time that I have written on SQL Server. Let’s go for a tr 阅读全文
posted @ 2017-06-11 12:11 zengkefu 阅读(305) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 123 下一页