Thread: [Tecomp-user] Installation problem
Status: Beta
Brought to you by:
helmut_brandl
From: Wolfgang J. <wj...@so...> - 2009-11-23 17:22:10
|
Hello, today I downloaded Tecomp (version 0.20) for the first time and tried to instal it at a Sun/Solaris platform. 'gmake' issues soon the message g++ -O3 -Wall -DCY_ASSERTIONLEVEL_NO -I../tools -I../../cal/src/general -I../../cal/src/container \ -c -o../../gen_dir/obj/feature_name_o.o feature_name.cpp /usr/ccs/bin/as: error: no input filename given usage: /usr/ccs/bin/as [-V] [-Q{y,n}] [-q] [-s] [-S] [-K {pic,PIC}] [-o objfile] [-L] [-T] [-P [[-Yc,path] [-Ipath] [-Dname] [-Dname=def] [-Uname]]...] [-m [-Ym,path]] [-n] [-ul] [-xF] [-m32] [-m64] [-xarch={v7,v8,v8a,v8plus,v8plusa,v8plusb,v9,v9a,v9b,sparc,sparcvis, sparcvis2,sparcfmaf,sparcima}] [-xcode={pic13,pic32}] file.s... gmake[2]: *** [../../gen_dir/obj/feature_name_o.o] Error 1 As I understand the message, the bug is with the "-o" option not separated by white space from its parameter. I did not find any related command in the various 'makefile's . So, what can I do? With regards Wolfgang Jansen -- Dr. Wolfgang Jansen University of Potsdam, Germany Institute of Computer Science Tel: +49 331 / 977 3047 mailto: wj...@so... |
From: Wolfgang J. <wj...@so...> - 2009-11-23 17:52:12
|
Hello, maybe you get the message a second time (I apologize if so). Today I downloaded Tecomp (version 0.20) for the first time and tried to instal it at a Sun/Solaris platform. 'gmake' issues soon the message: g++ -O3 -Wall -DCY_ASSERTIONLEVEL_NO -I../tools -I../../cal/src/general -I../../cal/src/container \ -c -o../../gen_dir/obj/feature_name_o.o feature_name.cpp /usr/ccs/bin/as: error: no input filename given usage: /usr/ccs/bin/as [-V] [-Q{y,n}] [-q] [-s] [-S] [-K {pic,PIC}] [-o objfile] [-L] [-T] [-P [[-Yc,path] [-Ipath] [-Dname] [-Dname=def] [-Uname]]...] [-m [-Ym,path]] [-n] [-ul] [-xF] [-m32] [-m64] [-xarch={v7,v8,v8a,v8plus,v8plusa,v8plusb,v9,v9a,v9b,sparc,sparcvis, sparcvis2,sparcfmaf,sparcima}] [-xcode={pic13,pic32}] file.s... gmake[2]: *** [../../gen_dir/obj/feature_name_o.o] Error 1 As I understand the message, the bug is the "-o" option not separated by white space from its parameter. I did not find any related command in the various 'makefile's . So, what can I do? With regards Wolfgang Jansen -- Dr. Wolfgang Jansen University of Potsdam, Germany Institute of Computer Science Tel: +49 331 / 977 3047 mailto: wj...@so... |
From: Helmut B. <hel...@gm...> - 2009-11-23 17:49:44
|
Hello Wolfgang, there is a directory cal/build which contains some common includes to the makefiles. The used include file which causes the problem is probably rules.mk. You could try to insert a blank between the -o and the filename in the corresponding rules (there is more than one rule). In the meantime, I will try to check, if my unix will accept the blank (I was thinking that a blank is *not* allowed here). If the blank is accepted, I will include an updated version in the next release. Please give feedback, if the insertion of blanks resolves the problem. By the way: Does your Sun/Solaris have a SPARC processor (i.e. a big endian processor). Up to now I have only been able to test tecomp on little endian machines like the Intel with various OSes. Tecomp is designed to work on big endian machines as well. However an explicit test would be very valuable. Kind regards Helmut Wolfgang Jansen wrote: > Hello, > > today I downloaded Tecomp (version 0.20) for the first time > and tried to instal it at a Sun/Solaris platform. > 'gmake' issues soon the message > > g++ -O3 -Wall -DCY_ASSERTIONLEVEL_NO -I../tools > -I../../cal/src/general -I../../cal/src/container \ > -c -o../../gen_dir/obj/feature_name_o.o feature_name.cpp > /usr/ccs/bin/as: error: no input filename given > usage: /usr/ccs/bin/as [-V] [-Q{y,n}] [-q] [-s] > [-S] [-K {pic,PIC}] [-o objfile] [-L] [-T] > [-P [[-Yc,path] [-Ipath] [-Dname] [-Dname=def] [-Uname]]...] > [-m [-Ym,path]] [-n] [-ul] [-xF] > [-m32] [-m64] > > [-xarch={v7,v8,v8a,v8plus,v8plusa,v8plusb,v9,v9a,v9b,sparc,sparcvis, > sparcvis2,sparcfmaf,sparcima}] > [-xcode={pic13,pic32}] file.s... > gmake[2]: *** [../../gen_dir/obj/feature_name_o.o] Error 1 > > As I understand the message, the bug is with the "-o" option not > separated by white space from its parameter. > I did not find any related command in the various 'makefile's . > So, what can I do? > > With regards > Wolfgang Jansen > |
From: Helmut B. <hel...@gm...> - 2009-11-23 17:58:15
Attachments:
rules.mk
|
Wolfgang, if the mailing list allows attachments, you can find an updated file rules.mk as an attachment. If not, I could send you the file directly. It seems that gcc accepts a blank between the -o option and the filename. Helmut Helmut Brandl wrote: > Hello Wolfgang, > > there is a directory cal/build which contains some common includes to > the makefiles. The used include file which causes the problem is > probably rules.mk. > > You could try to insert a blank between the -o and the filename in the > corresponding rules (there is more than one rule). In the meantime, I > will try to check, if my unix will accept the blank (I was thinking that > a blank is *not* allowed here). > > If the blank is accepted, I will include an updated version in the next > release. > > Please give feedback, if the insertion of blanks resolves the problem. > > By the way: Does your Sun/Solaris have a SPARC processor (i.e. a big > endian processor). Up to now I have only been able to test tecomp on > little endian machines like the Intel with various OSes. Tecomp is > designed to work on big endian machines as well. However an explicit > test would be very valuable. > > Kind regards > Helmut > > > Wolfgang Jansen wrote: >> Hello, >> >> today I downloaded Tecomp (version 0.20) for the first time >> and tried to instal it at a Sun/Solaris platform. >> 'gmake' issues soon the message >> >> g++ -O3 -Wall -DCY_ASSERTIONLEVEL_NO -I../tools >> -I../../cal/src/general -I../../cal/src/container \ >> -c -o../../gen_dir/obj/feature_name_o.o feature_name.cpp >> /usr/ccs/bin/as: error: no input filename given >> usage: /usr/ccs/bin/as [-V] [-Q{y,n}] [-q] [-s] >> [-S] [-K {pic,PIC}] [-o objfile] [-L] [-T] >> [-P [[-Yc,path] [-Ipath] [-Dname] [-Dname=def] [-Uname]]...] >> [-m [-Ym,path]] [-n] [-ul] [-xF] >> [-m32] [-m64] >> >> [-xarch={v7,v8,v8a,v8plus,v8plusa,v8plusb,v9,v9a,v9b,sparc,sparcvis, >> sparcvis2,sparcfmaf,sparcima}] >> [-xcode={pic13,pic32}] file.s... >> gmake[2]: *** [../../gen_dir/obj/feature_name_o.o] Error 1 >> >> As I understand the message, the bug is with the "-o" option not >> separated by white space from its parameter. >> I did not find any related command in the various 'makefile's . >> So, what can I do? >> >> With regards >> Wolfgang Jansen >> > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Tecomp-user mailing list > Tec...@li... > https://lists.sourceforge.net/lists/listinfo/tecomp-user > |