
GNU
chaosllgao
这个作者很懒,什么都没留下…
展开
-
How can an MSVC program call an MinGW DLL?
MSVC and MinGW DLL Interlinking FAQ<!--var PUpage="76001073"; var PUprop="geocities"; // --><!-- var thGetOv="http://themis.geocities.yahoo.com/themis/h.php"; var thCanURL="http://us.ge转载 2009-02-27 14:12:00 · 684 阅读 · 0 评论 -
Using C/C++ libraries with Automake and Autoconf
From: http://www.openismus.com/documents/linux/using_libraries/using_librariesUsing C/C++ libraries with Automake and AutoconfContentsIntroductionCFLAGS and LIBSconfigure.ac转载 2012-05-14 15:55:23 · 688 阅读 · 0 评论 -
Building C/C++ libraries with Automake and Autoconf
From: http://www.openismus.com/documents/linux/building_libraries/building_librariesBuilding C/C++ libraries with Automake and AutoconfContentsIntroductionlibtoolDirectory st转载 2012-05-14 15:56:04 · 908 阅读 · 1 评论 -
Using Automake and Autoconf with C++
From: http://www.openismus.com/documents/linux/automake/automakeUsing Automake and Autoconf with C++ContentsIntroductionmake and configureautomake and autoconfSubdire转载 2012-05-14 15:26:26 · 760 阅读 · 0 评论 -
一个 autoconf / automake 例子 --- 静态库、动态库 多源文件
From: http://hi.baidu.com/fambalaya/blog/item/8347f1b4a784627b8bd4b2d4.html###这是一个 autoconf / automake 的 "Hello World"gztt.ll@gmail.com主要步骤是- 准备工程目录结构和程序- autoscan 生成 configure.sca转载 2012-05-11 14:55:20 · 672 阅读 · 0 评论 -
关于.dll.a文件的几个小知识点
(1)http://old.nabble.com/libstdc%2B%2B.dll.a:-No-such-file-or-directory(gcc-4.4.0)-td27186916.html libstdc++.dll.a: No such file or directory(gcc-4.4.0) Because d:/msys/mingw/lib/gcc/mingw原创 2010-03-14 00:39:00 · 5752 阅读 · 0 评论 -
关于MinGW下.dll.a文件的作用
.dll.a文件的最初用意其实是MinGW下的DLL文件的imp-lib,即与VC下DLL文件附带了一个引入库.lib类似。在VC下编程,当要使用DLL文件时,在开发时必须要有.lib文件才能链接通过。.dll.a文件就是这样的作用。 但是,MinGW/Cygwin确提供了直接与.dll文件链接的作用,就是可以不需要imp-lib库文件,只要DLL文件存在,也可以链接成功。这样就导致原创 2010-03-14 14:45:00 · 17402 阅读 · 0 评论 -
MSVC vs. MinGW 之 (lib,dll,def,obj,exe) vs (a,dll,def,o,exe)
From: http://hi.baidu.com/kaien_space/blog/item/ae765e0aa3de501695ca6bb9.html MinGW:c -> o gcc -c a.cc -> exe gcc a.c libs.o -o a.exe (从主程序a.c,附加libs,生成a.exe)o -> exe转载 2010-03-12 18:38:00 · 969 阅读 · 0 评论 -
GCC4.4.0环境变量设置
C_INCLUDE_PATH=%MINGW_HOME%/include;%MINGW_HOME%/lib/gcc/mingw32/4.4.0/include CPLUS_INCLUDE_PATH=%MINGW_HOME%/lib/gcc/mingw32/4.4.0/include/c++;%MINGW_HOME%/lib/gcc/mingw32/4.4.0/include/c++原创 2010-03-12 15:26:00 · 624 阅读 · 0 评论 -
GCC4.4.0在MinGW下中文显示乱码的问题
新版的gcc 4.4.0默认是多国语言的,但是在win下面是直接输出的utf8字符,所以变成乱码了。 将环境比变量LANG随便设置一下,例如LANG=en,就可以改为英文显示。原创 2010-03-12 14:14:00 · 1609 阅读 · 0 评论 -
GCC版本不兼容导致的链接错误:undefined reference to `SomeFunction'
今天在编译的时候,用到了bzip2,但是在头文件及库文件都完好且路径设置正确的情况下仍然出现链接错误 ColinT1.c:(.text+0x76): undefined reference to `BZ2_bzDecompressInitColinT1.c:(.text+0x94): undefined reference to `BZ2_bzlibVersioncollect2:原创 2009-03-13 14:41:00 · 3640 阅读 · 0 评论 -
Generating an SSL certificate on Windows without IIS
From: http://luke.breuer.com/time/item/Generating_an_SSL_certificate_on_Windows_without_IIS/634.aspxGenerating an SSL certificate on Windows without IISLuke Breuer2009-09-30 22:26转载 2012-09-19 14:17:09 · 695 阅读 · 0 评论