ChinaUnix.net
相关文章推荐:

makefile 库文件

我拿oracle中自带的改都不对头,那位大哥能告诉我,到底该怎么写呢?

by ukyohy - Oracle - 2003-09-22 14:12:33 阅读(1068) 回复(2)

相关讨论

export CC=gcc export CFLAGS=-g -Wall -Werror-implicit-function-declaration INCLDIR= -I. -I/opt/oracle/product/9.2.0/precomp/public -I/opt/oracle/product/9.2.0/rdbms/public -I/opt/oracle/product/9.2.0/rdbms/demo -I/opt/oracle/product/9.2.0/plsql/public -I/opt/oracle/product/9.2.0/network/public -I/home/oracle/phs/include DFLAGS= -DPRECOMP -DLINUX -D_GNU_SOURCE -DSLTS_ENABLE -DSLMXMX_ENABLE -D_RE...

by zxmzhf - C/C++ - 2004-03-25 16:39:45 阅读(2315) 回复(7)

我的主目录是ex1,下面有一个c1.cpp的源文件,两个子目录c1和c2,下面有文件c1.h,c1.cpp和c2.h,c2.cpp,如果要生成一个动态libex1.so,各个目录下的makefile.am及主目录下的configure.in应该怎麽写?能否同时生成动态和静态(.a)?如果可以该怎麽写?最好能给写个基本的,谢谢!

by wangsf_vrlab - C/C++ - 2004-11-27 11:15:57 阅读(618) 回复(0)

cc=@cc@ AR=@AR@ 请问@...@是什么意思。

by paminy - Shell - 2008-09-11 09:29:18 阅读(972) 回复(4)

在linux下可否直接手工编写Makfile文件,生成makefile文件后直接执行make命令这样得到的.o和.so文件有什么区别吗? 菜鸟在此谢过!!

by heiheiyan11 - C/C++ - 2007-11-26 09:17:17 阅读(1491) 回复(7)

小弟以前从来没有玩过写makefile文件,然后找了一本书来看看。 使用automake来生成makefile,结果在执行aclocal出现一下问题: perl: warning: Setting locale failed. : : perl: warning: Please check that your locale settings: : : LANGUAGE = "zh_CN:zh:en_US:en", : : LC_ALL = (unset), : : LANG = "en_US" : : are supported and installed on your system. : : perl: warning: Falling bac...

by francybright - C/C++ - 2007-11-14 16:04:18 阅读(921) 回复(0)

[fw@localhost c-files]$ make target makefile:2: *** missing separator. Stop. 这是何等原因啊?

by fwloveme - C/C++ - 2007-09-15 10:03:55 阅读(956) 回复(1)

大家用qmake来写makfile文件吗,我是新手,值得去用这个吗?给点建议。

by letwave - C/C++ - 2006-11-11 23:24:37 阅读(894) 回复(1)

我有一个chld.c 文件,开始如下: #include #include #include #include #include #include #include #include #include #include #include #include #include #include "info.h" MYSQL mysql_app; MYSQL mysql_main; 我写了一个简单的makefile如下: chld : chld.o ...

by linux68 - Shell - 2006-09-08 11:26:26 阅读(734) 回复(0)

请问大侠:在linux下编译.pc文件makefile怎么编写,pc中除了数据操作语言,还需socket连接服务器。

by monkeyesa - Oracle - 2006-04-10 13:25:58 阅读(1042) 回复(3)

test.h 存放在/usr/include/test目录下 #include int i=9; test.c #include int main() { printf("%d\n",i); return 0; } 这个makefile文件怎么写???怎么配置环境变量?

by bluesprit980203 - C/C++ - 2005-12-21 10:17:42 阅读(686) 回复(3)