GIDForums  

Go Back   GIDForums > Computer Forums > Computer Software Forum - Linux
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

 
 
Thread Tools Search this Thread Rate Thread
  #21  
Old 22-Nov-2006, 04:28
saadiaomar saadiaomar is offline
New Member
 
Join Date: Nov 2006
Posts: 2
saadiaomar is on a distinguished road

Re: Running Simple.tcl


Hi,
Thanks a lot dave for your help. It seems to be working now.Thankx again.
Saadia
  #22  
Old 14-Jul-2007, 13:43
mouis mouis is offline
New Member
 
Join Date: Jul 2007
Posts: 3
mouis is on a distinguished road

Re: run script command on ns2.26


Hello everyone!

I am newbie in Linux too and (after succeeding installing OpenSUSE 10.2 x64) I am trying to install ns. I've installed ns, I've set the environmental variables as mentioned above, but nam doesn't work. I suppose, as Dave has mentioned, this is a problem caused by installing nam on a x64 version.

ns works perfectly as long as I don't use nam. When I try to use nam I get messages like "bash: nam: command not found".

When I cd into the nam-1.12 directory and enter "make" I get the following messages:

rm -f nam
g++ -o nam \
tkcompat.o tkUnixInit.o xwd.o netview.o netmodel.o edge.o packet.o node.o main.o trace.o queue.o drop.o animation.o agent.o feature.o route.o transform.o paint.o state.o monitor.o anetmodel.o random.o rng.o view.o graphview.o netgraph.o tracehook.o lan.o psview.o group.o editview.o tag.o address.o animator.o wnetmodel.o nam_stream.o enetmodel.o testview.o parser.o trafficsource.o lossmodel.o queuehandle.o gen/version.o gen/nam_tcl.o -L/home/mouis/local/ns-allinone-2.31/tclcl-1.19 -ltclcl -L/home/mouis/local/ns-allinone-2.31/otcl -lotcl -L/home/mouis/local/ns-allinone-2.31/lib -ltk8.4 -L/home/mouis/local/ns-allinone-2.31/lib -ltcl8.4 -lXext -lX11 -lnsl -ldl -lm
nam_stream.o: In function `NamStreamCompressedFile::read(char*, int)':
nam_stream.cc.text+0xf81): undefined reference to `gzread'
nam_stream.o: In function `NamStreamCompressedFile::eof()':
nam_stream.cc.text+0xfa3): undefined reference to `gzeof'
nam_stream.o: In function `NamStreamCompressedFile::close()':
nam_stream.cc.text+0xfbf): undefined reference to `gzclose'
nam_stream.o: In function `NamStreamCompressedFile::tell()':
nam_stream.cc.text+0xfed): undefined reference to `gztell'
nam_stream.o: In function `NamStreamCompressedFile::seek(long, int)':
nam_stream.cc.text+0x1032): undefined reference to `gzseek'
nam_stream.cc.text+0x1052): undefined reference to `gzread'
nam_stream.cc.text+0x1076): undefined reference to `gztell'
nam_stream.cc.text+0x10a4): undefined reference to `gzseek'
nam_stream.o: In function `NamStreamCompressedFile::get_char()':
nam_stream.cc.text+0x10cd): undefined reference to `gzgetc'
nam_stream.o: In function `NamStreamCompressedFile::gets(char*, int)':
nam_stream.cc.text+0x10f9): undefined reference to `gzgets'
nam_stream.o: In function `NamStreamCompressedFile::NamStreamCompressedFile( char const*)':
nam_stream.cc.text+0x113c): undefined reference to `gzopen'
nam_stream.o: In function `NamStreamCompressedFile::NamStreamCompressedFile( char const*)':
nam_stream.cc.text+0x11be): undefined reference to `gzopen'
collect2: ld returned 1 exit status
make: *** [nam] Error 1

Could anyone help me please??? I need to install nam ASAP to work on my master paper...

Thank you in advance,
mouis
  #23  
Old 14-Jul-2007, 14:29
davekw7x davekw7x is offline
Outstanding Member
 
Join Date: Feb 2004
Location: Left Coast, USA
Posts: 5,217
davekw7x is a splendid one to beholddavekw7x is a splendid one to beholddavekw7x is a splendid one to beholddavekw7x is a splendid one to beholddavekw7x is a splendid one to beholddavekw7x is a splendid one to beholddavekw7x is a splendid one to behold

Re: run script command on ns2.26


Quote:
Originally Posted by mouis
...OpenSUSE 10.2 x64... I suppose, as Dave has mentioned, this is a problem caused by installing nam on a x64 version.

I stopped fighting 64-bit Linux distributions because of problems with video drivers, unavailability of Flash drivers and a number of other things (not related to ns). I didn't keep the old installations around except for one on a dual-boot machine that is in another location. I have a number of 64-bit motherboards (with different versions of AMD processors) and I have 32-bit Linux on all (some Fedora, some Centos, some Ubuntu).

So...I can't help with specifics about problems with x64.


However, I see that all of your messages are about functions in zlib. I also see that the messages from your make file don't have anything about "-lz" anywhere, which is what you would see if the configuration program (run from the top ns directory) had been able to find or make the zlib library file, zlib.a

Here's something to try: From your top ns distribution directory, execute cd zlib-1.2.3 (Or whatever version of zlib directory you have.)

Then ./configure and make. If it gives any errors and/or if you don't end up with libz.a in that directory, tell us what you did see.

Note that initially I didn't use the ns allinone distribution. Since my system already had libz.a in /usr/lib, the configuration program was able to find it OK and make the proper entry in the Makefile for nam. However, to help someone else get their installation going, I subsequently reloaded everything using the ns allinone stuff, and that's where I remember having a couple of problems with nam. It is possible that those problems were addressed by later releases of the nam (or zlib) files, but I don't know about that.

Anyhow, I am not sure that I can help any more, but if you try what I suggested, maybe we can figure it out together. (Or maybe we can get some help from someone whose experiences are more recent than mine.)

Regards,

Dave
  #24  
Old 14-Jul-2007, 14:51
mouis mouis is offline
New Member
 
Join Date: Jul 2007
Posts: 3
mouis is on a distinguished road

Re: run script command on ns2.26


Thank you very much for your quick reply Dave!

I just did as told. First cd zlib-1.2.3 and then ./configure, so I got:

Checking for gcc...
Building static library libz.a version 1.2.3 with gcc.
Checking for unistd.h... Yes.
Checking whether to use vs[n]printf() or s[n]printf()... using vs[n]printf()
Checking for vsnprintf() in stdio.h... Yes.
Checking for return value of vsnprintf()... Yes.
Checking for errno.h... Yes.
Checking for mmap support... Yes.

Then I ran make and I got the following messages:

gcc -O3 -DUSE_MMAP -c -o example.o example.c
gcc -O3 -DUSE_MMAP -c -o adler32.o adler32.c
gcc -O3 -DUSE_MMAP -c -o compress.o compress.c
gcc -O3 -DUSE_MMAP -c -o crc32.o crc32.c
gcc -O3 -DUSE_MMAP -c -o gzio.o gzio.c
gcc -O3 -DUSE_MMAP -c -o uncompr.o uncompr.c
gcc -O3 -DUSE_MMAP -c -o deflate.o deflate.c
gcc -O3 -DUSE_MMAP -c -o trees.o trees.c
gcc -O3 -DUSE_MMAP -c -o zutil.o zutil.c
gcc -O3 -DUSE_MMAP -c -o inflate.o inflate.c
gcc -O3 -DUSE_MMAP -c -o infback.o infback.c
gcc -O3 -DUSE_MMAP -c -o inftrees.o inftrees.c
gcc -O3 -DUSE_MMAP -c -o inffast.o inffast.c
ar rc libz.a adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o zutil.o inflate.o infback.o inftrees.o inffast.o
gcc -O3 -DUSE_MMAP -o example example.o -L. libz.a
gcc -O3 -DUSE_MMAP -c -o minigzip.o minigzip.c
gcc -O3 -DUSE_MMAP -o minigzip minigzip.o -L. libz.a

What do you think I should do? Should I keep trying to install nam? Should I try installing ns in pieces or should I give up, install a 32bit version of Linux and then install ns?

Thank you very much for your time and your help, I really appreciate it.

Regards,
Yiannis
  #25  
Old 14-Jul-2007, 16:05
davekw7x davekw7x is offline
Outstanding Member
 
Join Date: Feb 2004
Location: Left Coast, USA
Posts: 5,217
davekw7x is a splendid one to beholddavekw7x is a splendid one to beholddavekw7x is a splendid one to beholddavekw7x is a splendid one to beholddavekw7x is a splendid one to beholddavekw7x is a splendid one to beholddavekw7x is a splendid one to behold

Re: run script command on ns2.26


Quote:
Originally Posted by mouis
I got:
.
.
.

Then I ran make and I got the following messages:
.
.
.


Those messages look OK. (So far, so good, right?)

From your home directory, execute:

whereis libz

If it shows something like "/usr/lib/libz.a" then zlib is OK. Otherwise, go back into the ns libz directory and, as root, execute "make install".

From your home directory, try "whereis libz" again. If libz.a shows up, then zlib is OK.

Once you have determined that zlib os OK, go back to the nam directory, and execute the following:

make clean
./configure
make

Let me know what happens then.
Quote:
Originally Posted by mouis
Should I try installing ns in pieces or should I give up, install a 32bit version of Linux and then install ns?
That depends on whether you had a good reason for wanting the 64-bit version in the first place. I hate to make flat statements like, "Most things won't really run perceptibly better, and some things won't run at all," with 64-bit Linux, but that's my experience. If you have some applications that truly take advantage of the larger address space of a 64-bit architecture, or the (maybe) faster 64-bit operations, that might be a good reason to keep trying. For me, it wasn't worth it at the time. Things may be better now, as Linux and the individual applications and drivers have been updated, and I will (probably) try again some day.

Anyhow, with various 32-bit Linux distributions, I installed ns from the allinone distribution with no problems whatsoever.

Regards,

Dave
  #26  
Old 14-Jul-2007, 18:57
mouis mouis is offline
New Member
 
Join Date: Jul 2007
Posts: 3
mouis is on a distinguished road

Re: run script command on ns2.26


I just followed your instructions Dave and it worked!

I did as you told me and I got no error messages. Nevertheless I still got the message:
"bash: nam: command not found".

So I just added nam directory to my PATH and it worked!!!

I can't express how much I thank you. I've been trying to make ns work for weeks...

As far as 64bit versions are concerned, to be honest I wanted to use 32bit version. A friend of mine had given me a copy of OpenSUSE 10.1 32bit, but it didn't work (still don't know why, probably cd was scratched or not burnt right). So I decided to download OpenSUSE myself and, not knowing much about Linux, I thought it would be better to download the 64bit version since my processor is 64bit. If I knew of the possible problems I would have downloaded the 32bit version from the beginning.

So for now I am OK and I just hope that I won't face many major problems. If I do, I will install 32bit version for sure.

Thank you very much for your advice once again!!! I would still be trying to fix it right now, if it hadn't been for you. (I've been dealing with this almost 7 hours in a row....)

THANKS AGAIN!

Regards,
Yiannis
  #27  
Old 14-Jul-2007, 19:30
davekw7x davekw7x is offline
Outstanding Member
 
Join Date: Feb 2004
Location: Left Coast, USA
Posts: 5,217
davekw7x is a splendid one to beholddavekw7x is a splendid one to beholddavekw7x is a splendid one to beholddavekw7x is a splendid one to beholddavekw7x is a splendid one to beholddavekw7x is a splendid one to beholddavekw7x is a splendid one to behold

Re: run script command on ns2.26


Quote:
Originally Posted by mouis
I just followed your instructions Dave and it worked!
Thanks for the feedback. Sometimes when I am trying to help by 'remote control' I don't do so well. I'm glad you were able to go forward.


Quote:
Originally Posted by mouis
If I knew of the possible problems I would have downloaded the 32bit version from the beginning....
One reason that I keep coming back to this forum is that I always learn something. Apparently at least some of the problems that I had in the past have been corrected. Not everything is as "easy" as we wish, but it is getting better.

The problem with people with a certain amount of experience is that they know too many things that "used to didn't work". New guys come along and don't know about all of the baggage that the old guys are carrying, and fresher approaches often lead to success in doing things that used to be "hard".

Linux is like that. Every release and every distribution (usually) seems to add some new features for ease of installation and/or operation. I am aways amused to hear (some of) the old-timers grumble about changes that make it easier---strange, what? Less of the Linux Mystique as Everyman brings it to the desktop.

Anyhow, for you, now comes the good stuff, right? The tools are in place, and you can let the creative juices flow!

I wish you the best of luck.

Regards,

Dave
  #28  
Old 15-Aug-2007, 17:24
mahadi75 mahadi75 is offline
New Member
 
Join Date: Aug 2007
Posts: 1
mahadi75 is on a distinguished road

Problem to run nam


Dear users,

I m a new user. I m using ns-allinone2.28 under the cygwin environment on winXP sp2. I m facing two problems.

Firstly, after installation i set the environmental variables.

export NS_HOME=/home/XXX/ns-allinone-2.28/
export PATH=$NS_HOME/tcl8.4.5/unix:$NS_HOME/tk8.4.5/unix:$NS_HOME/bin:$PATH
export LD_LIBRARY_PATH=$NS_HOME/tcl8.4.5/unix:$NS_HOME/tk8.4.5/unix:\
$NS_HOME/otcl-1.9:$NS_HOME/lib:$LD_LIBRARY_PATH
export TCL_LIBRARY=$NS_HOME/tcl8.4.5/library

but whenever i closed the cygwin window and again onened the window, i found, the environmental variable is needed to set again.... That is, i cant save the enviromnetal variables on bash profile.


Secondly, i can run simple tcl program (without using nam) using ns command but when i tried to use nam, i found the following message (though i set all environmental variables).

bash: nam: command not found

Could anybody please help me to solve the problem.


Thanks to all.


Mahadi
  #29  
Old 15-Aug-2007, 17:57
davekw7x davekw7x is offline
Outstanding Member
 
Join Date: Feb 2004
Location: Left Coast, USA
Posts: 5,217
davekw7x is a splendid one to beholddavekw7x is a splendid one to beholddavekw7x is a splendid one to beholddavekw7x is a splendid one to beholddavekw7x is a splendid one to beholddavekw7x is a splendid one to beholddavekw7x is a splendid one to behold

Re: Problem to run nam


Quote:
Originally Posted by mahadi75
I m using ... winXP sp2. I m facing two problems

Only two? That may be a world record!

Quote:
Originally Posted by mahadi75
I set the environmental variables...

I don't use ns on Windows XP. I have all of the cygwin tools on Windows XP, but I don't use bash on Windows XP except for certain configuration and installation programs, so I may be able to give a few hints, but there are no guarantees. (Are there ever any guarantees?)

Assuming your home directory is known to bash as /home/XXX, there will be a file in that directory named .bashrc At least I found such a thing after I installed cygwin.

If there is no file named .bashrc, then create one with a text editor.

Put the following new lines at the end of .bashrc
Code:
export NS_HOME=/home/XXX/ns-allinone-2.28 export PATH=$NS_HOME/tcl8.4.5/unix:$NS_HOME/tk8.4.5/unix:$NS_HOME/bin:$PATH export LD_LIBRARY_PATH=$NS_HOME/tcl8.4.5/unix:$NS_HOME/tk8.4.5/unix:\ $NS_HOME/otcl-1.9:$NS_HOME/lib:$LD_LIBRARY_PATH export TCL_LIBRARY=$NS_HOME/tcl8.4.5/library

Now, log out of Windows XP and log back in. (You might not have to do this, but it couldn't hurt, and I sometimes have seen peculiarities when defining environment variables in bash running on Windows.) Anyhow, when you open your bash command window if you execute echo $PATH you should see the new stuff. Also for $LD_LIBRARY and $TCL_LIBRARY.

If it doesn't work, I might have another suggestion or two.

Quote:
Originally Posted by mahadi75
bash: nam: command not found

What is the name of the directory that contains nam.exe? Is that directory on the $PATH?


Regards,

Dave
  #30  
Old 07-Sep-2007, 06:17
Dukelord Dukelord is offline
New Member
 
Join Date: Sep 2007
Posts: 4
Dukelord is on a distinguished road

Re: run script command on ns2.26


Hi Dave..Please I need your help....I followed your instructions in post number 7 and it worked for me....however when I try to run a tcl script, I get the following error...

mavor@Victor:~/Network-Simulator/ns-allinone-2.32-rc2/ns-2.32/tcl/ex> ns
% ns example.tcl
warning: using backward compatibility mode
error when calling class OldSim: example.tcl
%

Can you pls help...

Also I followed yur instructions in post number 25...I use a 64-bit processor on a 64-bit version of OpenSuse 10.2....
when I type ./configure, I get the following;

mavor@Victor:~/Network-Simulator/ns-allinone-2.32-rc2/nam-1.13> su
Password:
Victor:/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/nam-1.13 # make clean
rm -f nam tkcompat.o tkUnixInit.o xwd.o netview.o netmodel.o edge.o packet.o node.o main.o trace.o queue.o drop.o animation.o agent.o feature.o route.o transform.o paint.o state.o monitor.o anetmodel.o random.o rng.o view.o graphview.o netgraph.o tracehook.o lan.o psview.o group.o editview.o tag.o address.o animator.o wnetmodel.o nam_stream.o enetmodel.o testview.o parser.o trafficsource.o lossmodel.o queuehandle.o gen/version.o gen/nam_tcl.o gen/version.c gen/nam_tcl.cc core core.nam
Victor:/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/nam-1.13 # ./configure
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking for ANSI C header files... yes
No .configure file found in current directory
Continuing with default options...
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ANSI C... (cached) none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for ANSI C header files... (cached) yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for string.h... (cached) yes
checking for main in -lXbsd... no
checking for socket in -lsocket... no
checking for gethostbyname in -lnsl... yes
checking for dcgettext in -lintl... no
checking for getnodebyname in -ldnet_stub... no
checking that g++ can handle -O2... no
checking for zlib.h... -I/usr/include
checking for libz1.1.4... -L/usr/lib -lz
checking for X11 header files
checking for X11 library archive
checking for XOpenDisplay in -lX11... yes
checking for XShmAttach in -lXext... yes
checking for tcl.h... -I../include
checking for libtcl8.4... -L../lib -ltcl8.4
checking for init.tcl... ../lib/tcl8.4
checking for tclsh8.4.14... no
checking for tclsh8.4... ../bin/tclsh8.4
checking for tk.h... -I../include
checking for libtk8.4... -L../lib -ltk8.4
checking for tk.tcl... ../lib/tk8.4
checking for libtcldbg... no
checking for otcl.h... -I../otcl
checking for libotcl1.13... -L../otcl -lotcl
checking for tclcl.h... -I../tclcl-1.19
checking for libtclcl... -L../tclcl-1.19 -ltclcl
checking for tcl2c++... ../tclcl-1.19
checking return type of random... long
checking for int8_t... yes
checking for int16_t... yes
checking for int32_t... yes
checking for u_int8_t... yes
checking for u_int16_t... yes
checking for u_int32_t... yes
checking for strtoq... yes
checking for strtoll... yes
checking for long... yes
checking size of long... 8
checking for strtol... yes
checking for __int64_t... no
checking for long long... yes
checking for int64_t... yes
checking which kind of 64-bit int to use... int64_t
checking for snprintf... yes
No explicit static compilation flag; setting V_STATIC to ""
checking for dlopen in -ldl... yes
checking for a BSD-compatible install... /usr/bin/install -c
configure: creating ./config.status
config.status: creating Makefile
config.status: creating autoconf.h
config.status: autoconf.h is unchanged
Victor:/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/nam-1.13 # make
rm -f tkcompat.o; gcc -o tkcompat.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include tkcompat.c
rm -f tkUnixInit.o; gcc -o tkUnixInit.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include tkUnixInit.c
rm -f xwd.o; gcc -o xwd.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include xwd.c
xwd.c: In function ‘ReadColors’:
xwd.c:143: warning: cast to pointer from integer of different size
xwd.c:181: warning: cast to pointer from integer of different size
rm -f netview.o; g++ -o netview.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include netview.cc
rm -f netmodel.o; g++ -o netmodel.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include netmodel.cc
queue.h:77: warning: ‘class Queue’ has virtual functions but non-virtual destructor
rm -f edge.o; g++ -o edge.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include edge.cc
rm -f packet.o; g++ -o packet.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include packet.cc
rm -f node.o; g++ -o node.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include node.cc
queue.h:77: warning: ‘class Queue’ has virtual functions but non-virtual destructor
rm -f main.o; g++ -o main.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include main.cc
rm -f trace.o; g++ -o trace.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include trace.cc
trace.cc: In constructor ‘Trace::Trace(const char*, const char*)’:
trace.cc:112: warning: unused variable ‘pos’
rm -f queue.o; g++ -o queue.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include queue.cc
queue.h:77: warning: ‘class Queue’ has virtual functions but non-virtual destructor
rm -f drop.o; g++ -o drop.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include drop.cc
rm -f animation.o; g++ -o animation.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include animation.cc
rm -f agent.o; g++ -o agent.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include agent.cc
rm -f feature.o; g++ -o feature.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include feature.cc
rm -f route.o; g++ -o route.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include route.cc
rm -f transform.o; g++ -o transform.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include transform.cc
rm -f paint.o; g++ -o paint.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include paint.cc
rm -f state.o; g++ -o state.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include state.cc
rm -f monitor.o; g++ -o monitor.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include monitor.cc
rm -f anetmodel.o; g++ -o anetmodel.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include anetmodel.cc
queue.h:77: warning: ‘class Queue’ has virtual functions but non-virtual destructor
rm -f random.o; g++ -o random.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include random.cc
rm -f rng.o; g++ -o rng.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include rng.cc
rm -f view.o; g++ -o view.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include view.cc
rm -f graphview.o; g++ -o graphview.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include graphview.cc
rm -f netgraph.o; g++ -o netgraph.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include netgraph.cc
rm -f tracehook.o; g++ -o tracehook.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include tracehook.cc
rm -f lan.o; g++ -o lan.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include lan.cc
rm -f psview.o; g++ -o psview.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include psview.cc
rm -f group.o; g++ -o group.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include group.cc
rm -f editview.o; g++ -o editview.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include editview.cc
editview.cc: In constructor ‘EditView::EditView(const char*, NetModel*)’:
editview.cc:85: warning: format ‘%-u’ expects type ‘unsigned int’, but argument 3 has type ‘long int’
editview.cc: In constructor ‘EditView::EditView(const char*, NetModel*, int, int)’:
editview.cc:108: warning: format ‘%-u’ expects type ‘unsigned int’, but argument 3 has type ‘long int’
rm -f tag.o; g++ -o tag.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include tag.cc
rm -f address.o; g++ -o address.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include address.cc
rm -f animator.o; g++ -o animator.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include animator.cc
rm -f wnetmodel.o; g++ -o wnetmodel.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include wnetmodel.cc
queue.h:77: warning: ‘class Queue’ has virtual functions but non-virtual destructor
rm -f nam_stream.o; g++ -o nam_stream.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include nam_stream.cc
rm -f enetmodel.o; g++ -o enetmodel.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include enetmodel.cc
queue.h:77: warning: ‘class Queue’ has virtual functions but non-virtual destructor
rm -f testview.o; g++ -o testview.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include testview.cc
rm -f parser.o; g++ -o parser.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include parser.cc
rm -f trafficsource.o; g++ -o trafficsource.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include trafficsource.cc
rm -f lossmodel.o; g++ -o lossmodel.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include lossmodel.cc
rm -f queuehandle.o; g++ -o queuehandle.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include queuehandle.cc
rm -f gen/version.c
/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/bin/tclsh8.4 bin/string2c.tcl version < VERSION > gen/version.c
rm -f gen/version.o; gcc -o gen/version.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include gen/version.c
rm -f gen/nam_tcl.cc
/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/bin/tclsh8.4 bin/tcl-expand.tcl tcl/nam-lib.tcl | ../tclcl-1.19/tcl2c++ et_nam > gen/nam_tcl.cc
rm -f gen/nam_tcl.o; g++ -o gen/nam_tcl.o -c -Wall -DTCL_TK -DNO_VOID -DNDEBUG -DUSE_SHM -DHAVE_LIBTCLCL -DHAVE_TCLCL_H -DHAVE_LIBOTCL1_13 -DHAVE_OTCL_H -DHAVE_LIBTK8_4 -DHAVE_TK_H -DHAVE_LIBTCL8_4 -DHAVE_TCL_H -DHAVE_LIBZ1_1_4 -DHAVE_ZLIB_H -I. -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/include -I/usr/include gen/nam_tcl.cc
rm -f nam
g++ -o nam \
tkcompat.o tkUnixInit.o xwd.o netview.o netmodel.o edge.o packet.o node.o main.o trace.o queue.o drop.o animation.o agent.o feature.o route.o transform.o paint.o state.o monitor.o anetmodel.o random.o rng.o view.o graphview.o netgraph.o tracehook.o lan.o psview.o group.o editview.o tag.o address.o animator.o wnetmodel.o nam_stream.o enetmodel.o testview.o parser.o trafficsource.o lossmodel.o queuehandle.o gen/version.o gen/nam_tcl.o -L/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/tclcl-1.19 -ltclcl -L/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/otcl -lotcl -L/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/lib -ltk8.4 -L/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/lib -ltcl8.4 -L/usr/lib -lz -lXext -lX11 -lnsl -ldl -lm
/usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../x86_64-suse-linux/bin/ld: skipping incompatible /usr/lib/libz.so when searching for -lz
/usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../x86_64-suse-linux/bin/ld: skipping incompatible /usr/lib/libz.a when searching for -lz
/usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../x86_64-suse-linux/bin/ld: skipping incompatible /usr/lib/libnsl.so when searching for -lnsl
/usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../x86_64-suse-linux/bin/ld: skipping incompatible /usr/lib/libnsl.a when searching for -lnsl
/usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../x86_64-suse-linux/bin/ld: skipping incompatible /usr/lib/libdl.so when searching for -ldl
/usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../x86_64-suse-linux/bin/ld: skipping incompatible /usr/lib/libdl.a when searching for -ldl
/usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../x86_64-suse-linux/bin/ld: skipping incompatible /usr/lib/libm.so when searching for -lm
/usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../x86_64-suse-linux/bin/ld: skipping incompatible /usr/lib/libm.a when searching for -lm
/usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../x86_64-suse-linux/bin/ld: skipping incompatible /usr/lib/libc.so when searching for -lc
/usr/lib64/gcc/x86_64-suse-linux/4.1.2/../../../../x86_64-suse-linux/bin/ld: skipping incompatible /usr/lib/libc.a when searching for -lc
Victor:/home/mavor/Network-Simulator/ns-allinone-2.32-rc2/nam-1.13 #



CAN YOU PLEASE HELP ME DAVE?

Thanks
 
 

Recent GIDBlogProgramming ebook direct download available by crystalattice

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Web stats fcolor Web Design Forum 10 12-Jul-2007 09:48
Need Free Website Templates sam_dezine Web Design Forum 8 06-Sep-2006 04:25
Who Is A Web Designer ? alicehopkins Web Design Forum 1 13-Jun-2006 03:56
HTML Code amgujral Web Design Forum 0 07-Apr-2006 10:46
Two virtual hosts, cgi script behaves differently on each blimbo Apache Web Server Forum 0 04-Aug-2004 10:35

Network Sites: GIDNetwork · GIDWebHosts · GIDSearch · Learning Journal by J de Silva, The

All times are GMT -6. The time now is 04:33.


vBulletin, Copyright © 2000 - 2009, Jelsoft Enterprises Ltd.