由买买提看人间百态

topics

全部话题 - 话题: gmake
1 (共1页)
p**v
发帖数: 853
1
OS: Sun Solaris,
更新一个文件后gmake时,显示这个文件 has modification time in the future。
但是用make就没事,是系统的问题呢还是gmake有问题?
另外,运行一个程序,显示执行时间为负值,这又是怎么回事呢?
BTW, 在LINUX下执行就输出正确。
Thanks for your advice!
k******y
发帖数: 159
2
不知道是我这装的有问题还是4.1就没有gmake
h**o
发帖数: 548
3
来自主题: Programming版 - 怎么决定是用gmake 还是 make?
不知道 为什么有时侯 用gmake 有时侯 用make 编译
m*******m
发帖数: 182
4
来自主题: Unix版 - Help about installing Cxterm5.0!!!!
This is a gmake option. Make it run gmake instead of make,
e.g. make an alias, put gmake path ahead of make, etc.
d*******t
发帖数: 36
5
I would like to install cxterm-5.2.2 in my Ultra 10 with solaris 9.
I compile it and system give following error message:
gmake all-recursive
gmake[1]: Entering directory `/home/Jianqiao/cxterm/cxterm-5.2.2'
Making all in cxterm
gmake[2]: Entering directory `/home/Jianqiao/cxterm/cxterm-5.2.2/cxterm'
gcc -g -O2 -o cxterm.bin button.o HZbuiltn.o HZinMthd.o HZutil.o screen.o
util.o charproc.o HZchList.o HZInput.o input.o scrollbar.o VTPrsTbl.o cursor.o
HZfilter.o HZpopup.o main.o tabs.o data.o
y****i
发帖数: 5690
6
【 以下文字转载自 Programming 讨论区,原文如下 】
发信人: yongqi (恐龙), 信区: Programming
标 题: Re: [转载] Install GCC on AIX
发信站: Unknown Space - 未名空间 (Mon Nov 17 15:26:22 2003) WWW-POST
I tried again:
first tried to reinstall gmake using --prefix option. there are some errors on
compile but it got installed. I guess still not correctly.
Then used the gmake to install gcc. configured OK using --prefix option. Then
build using gmake bootstrap-lean but failed with foloowing errors:
cc: 1501-230 Internal compiler error;
b*g
发帖数: 644
7
俺已经用g++ run了简单的程序.
可为什么见有的同志要设什么makefile之类的东西,
还用gmake来编译. gmake又是什么呢?
另外COMMAND nm是做什么用的,好象可以用来打开file.o文件.
f**********8
发帖数: 6
8
Please send your resume to a***[email protected] if interested.
Position: Software Engineer, Platform
Cyphort develops appliance and cloud based solutions that protect cloud
infrastructure against targeted attacks, corporate espionage and IP theft.
Our innovative approach detects armored malware, performs behavioral
clustering, and correlation algorithms for contextual threat prevention. We
are looking for smart people who collaborate, innovate and make great
security products. Whatever your role, y... 阅读全帖
f**********8
发帖数: 6
9
Please send your resume to a***[email protected] if interested.
Position: Software Engineer, Platform
Cyphort develops appliance and cloud based solutions that protect cloud
infrastructure against targeted attacks, corporate espionage and IP theft.
Our innovative approach detects armored malware, performs behavioral
clustering, and correlation algorithms for contextual threat prevention. We
are looking for smart people who collaborate, innovate and make great
security products. Whatever your role, y... 阅读全帖
k******y
发帖数: 159
10
Solved, 重新装一遍就好了
x****g
发帖数: 32
11
来自主题: Linux版 - freebsd使用一个季度
Differences:
1) FreeBSD is a whole system(kernal + user land) while Liunx is a kernal.
2) kernel is seperated from application
3) Upgrade the system is easy. Did your application break when you
upgrade
your linux distribution?
4) More stable than Linux
5) vi is not vim; make is not gmake. it is UNIX
6) simpler configruation, no run levels
7) no native flash player. Flash 7 works fine. Flash 9 doesn't work
8) aircrack-ng doesn't work
9) Freebsd ports are good. b
w***g
发帖数: 5958
12
【 以下文字转载自 Programming 讨论区 】
发信人: wdong (cybra), 信区: Programming
标 题: Makefile中怎么处理没有扩展名的文件?
发信站: BBS 未名空间站 (Wed Sep 23 15:21:13 2009, 美东)
比如foo.cpp生成foo.o,我可以写下面这样的rule:
.cpp.o:
$(CXX) -c -o $@ $^
但是从foo.o生成foo就不知道怎么写了。 gmake默认的rule应该类似
$(CC) -o $@ $^
怎么样才能把这个替换成我自己的rule呢?
l*******G
发帖数: 1191
13
If your program runs in Linux only, then it is called Linux programming. &#
160;Shell is just one case of it.  Shell has nothing to do with c, most
languages can write programs and run in Linux, except .net  objective
c, basic
Many use vi or emacs to write program and then gmake to compile project 
;. For java, use netbeans or eclipse. perl, shell, python etc no need to
compile at all.
l***g
发帖数: 1035
14
来自主题: Programming版 - 关于Makefile的一个问题
enah.. i was wrong. just tested out gmake with gcc on linux
p****s
发帖数: 32405
15
来自主题: Programming版 - 怎么决定是用gmake 还是 make?
linux下?
先type which make看看跟什么绑一块
makefile里也可以自定义
w***g
发帖数: 5958
16
比如foo.cpp生成foo.o,我可以写下面这样的rule:
.cpp.o:
$(CXX) -c -o $@ $^
但是从foo.o生成foo就不知道怎么写了。 gmake默认的rule应该类似
$(CC) -o $@ $^
怎么样才能把这个替换成我自己的rule呢?
d****p
发帖数: 685
17
There is virtually no diff in coding itself though you may have to write
more strict c++ code when under unix since visual studio's language
extension really hides a lot of "faulty" code.
What you may need to get familiar with is a set of tools: gmake, gdb, dbx, g
++, vi, shell, valgrind, etc.
Suggest you pick a old version of Sun CC to force you to write solid code.
p***o
发帖数: 1252
18
来自主题: Programming版 - GNU make problem of Solaris
Are you sure you are using the GNU make?
It's usually called 'gmake' instead of 'make' on Solaris.

the
such
seen
make
S*A
发帖数: 7142
19
来自主题: Programming版 - 请教一个makefile 小问题
你这个 $(COMPILE.c) $(OUTPUT_OPTION) 都要自己定义吧,
都不像是 gmake 预先定义的宏。
P****r
发帖数: 140
20
yes,solaris 8 has gcc and gmake,
m*i
发帖数: 7
21
来自主题: Unix版 - what is wrong with makefile?
try use gmake
p**h
发帖数: 99
22
来自主题: Unix版 - write makefile
here the manual for 'gmake':
http://www.cl.cam.ac.uk/texinfodoc/make_toc.html
it will take some time to learn all the tricks inside. but it isnot hard.
D****N
发帖数: 430
23
来自主题: Unix版 - Help on 'make'
Funny. My make is located at /usr/bin instead of /usr/local/bin
did you check to see if you've a /usr/bin/make and ldd that?
The libraries are there probably, but ldd won't know more than that..
You didn't say:
-Which platform is this? linux? Solaris2.4? 2.5?
-Can you run make at all?
Best thing to do seems to be getting a new version of make or see if you have
something like gmake which is just the same thing as gnu make...
h**h
发帖数: 132
24
来自主题: Unix版 - Help about installing Cxterm5.0!!!!
I have the same problem, but both solutios dont work for me
I did install gnu make, is that the same thing as gmake you are talking about?
o***z
发帖数: 133
25
if you modify the file via sth like an afs client
you may need to synchronize your local clock with that of the server
p**v
发帖数: 853
26
how to synchronize the local clock with the server?
thanks.
o***z
发帖数: 133
27
i use socketwatch in windows
in unix you can run ntp (or other time sync service of your choice)
h***s
发帖数: 19
28
来自主题: Unix版 - gmake help
Anyone ever encountered the following problem?
File 'lib_vm.a(PEZW.o)' has modification time in the future (2010-02-22 ...)
> 2003-06-27 ...
Clock skew detected. Your build may be incomplete.
I checked the server clock, corroct. recompiled everything. This is is only
possible error.
How to deal with this?
Many thanks.
c*r
发帖数: 278
29
来自主题: Unix版 - gmake help
may not need to do anything. It is "may be incomplete".
Oftentime it is complete.
To be safe, change the modification time of the file with "touch".
p****m
发帖数: 19
30
来自主题: Unix版 - gcc in mac OSX
I downloaded gcc and gmake, but when I compile the program, it says "stdio.h
p****m
发帖数: 19
31
来自主题: Unix版 - gcc in mac OSX
my fault, I meant when I gmake another c program, it showed this error.
d*b
发帖数: 21830
32
gmake可以fortran/c++何起来编译的,你搞dll不招人骂么?
d*b
发帖数: 21830
33
gmake可以fortran/c++何起来编译的,你搞dll不招人骂么?
1 (共1页)