IRIX and Software

How to run a parallel program on IRIS?

I am new to IRIS and having some difficulty in running a simple prarallel program.

Kindly help in this regard.

What ever link I am giving it is giving the same error. Details of my system and the errors which I get are as follows
**************************************
Origin3000 678% uname -aR
IRIX64 Origin3000 6.5 6.5.30m 07202013 IP35
**************************************
Origin3000 679% cat hello.f90
!c Fortran example
program hello
include 'mpif.h'
integer rank, size, ierror, tag, status(MPI_STATUS_SIZE)

call MPI_INIT(ierror)
call MPI_COMM_SIZE(MPI_COMM_WORLD, size, ierror)
call MPI_COMM_RANK(MPI_COMM_WORLD, rank, ierror)
print*, 'node', rank, ': Hello world'
call MPI_FINALIZE(ierror)
end
**********************************************
Origin3000 680% f90 -mp hello.f90
ld32: ERROR 33 : Unresolved text symbol "mpi_init_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_comm_size_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_comm_rank_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_finalize_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: INFO 152: Output file removed because of error.
*******************************************************
Origin3000 681% f90 -mp -v hello.f90
/usr/lib32/cmplrs/mfef90 -G8 -TARG:t5_ll_sc_bug=on -TENV:PIC -m1 -mp -show -TARG:abi=n32:isa=mips4 -TARG:proc=r10000 -O2 -include=/usr/include -dsm -FE:cmdline=/tmp/ctmL.AAAa08CY7 -rii./rii_files/hello.rii -fB,/tmp/ctmB.BAAa08CY7 -fC,hello.T -fD,hello.l -ffree -LANG:=F90 hello.f90
f90: update_instantiation_info_file ./rii_files/hello.rii
/usr/lib32/cmplrs/be -PHASE:w:c -G8 -TARG:t5_ll_sc_bug=on -TENV:PIC -m1 -show -TARG:abi=n32:isa=mips4 -TARG:proc=r10000 -O2 -dsm -dsm_clone -LANG:=f90 -fB,/tmp/ctmB.BAAa08CY7 -fo,hello.o hello.f90
Compiling hello.f90 (/tmp/ctmB.BAAa08CY7) -- Back End
Compiling MAIN__(0)

/usr/lib32/cmplrs/dsm_prelink -dsm_clone hello.o
/usr/lib32/cmplrs/ld32 -call_shared -no_unresolved -transitive_link -elf -_SYSTYPE_SVR4 -show -mips4 -n32 -L/usr/lib32/mips4/r10000 -L/usr/lib32/mips4 -L/usr/lib32 /usr/lib32/mips4/crt1.o -hides /usr/lib32/mips4/dsmcrt.o -init _dsm_crt_init hello.o -dont_warn_unused -lmp -lfortran -lffio -lftn -lm -Bdynamic -lc /usr/lib32/mips4/crtn.o -warn_unused
ld32: ERROR 33 : Unresolved text symbol "mpi_init_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_comm_size_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_comm_rank_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_finalize_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: INFO 152: Output file removed because of error.
f90 ERROR: /usr/lib32/cmplrs/ld32 returned non-zero status 2
************************************************************************
Origin3000 682% f90 -mp -L/usr/lib32/mips4/libmpi.so -v hello.f90
f90 WARNING: -L/usr/lib32/mips4/libmpi.so does not refer to a valid directory
/usr/lib32/cmplrs/mfef90 -G8 -TARG:t5_ll_sc_bug=on -TENV:PIC -m1 -mp -show -TARG:abi=n32:isa=mips4 -TARG:proc=r10000 -O2 -include=/usr/include -dsm -FE:cmdline=/tmp/ctmL.AAAa08BKC -rii./rii_files/hello.rii -fB,/tmp/ctmB.BAAa08BKC -fC,hello.T -fD,hello.l -ffree -LANG:=F90 hello.f90
f90: update_instantiation_info_file ./rii_files/hello.rii
/usr/lib32/cmplrs/be -PHASE:w:c -G8 -TARG:t5_ll_sc_bug=on -TENV:PIC -m1 -show -TARG:abi=n32:isa=mips4 -TARG:proc=r10000 -O2 -dsm -dsm_clone -LANG:=f90 -fB,/tmp/ctmB.BAAa08BKC -fo,hello.o hello.f90
Compiling hello.f90 (/tmp/ctmB.BAAa08BKC) -- Back End
Compiling MAIN__(0)

/usr/lib32/cmplrs/dsm_prelink -dsm_clone hello.o
/usr/lib32/cmplrs/ld32 -call_shared -no_unresolved -transitive_link -elf -_SYSTYPE_SVR4 -L/usr/lib32/mips4/libmpi.so -show -mips4 -n32 -L/usr/lib32/mips4/r10000 -L/usr/lib32/mips4 -L/usr/lib32 /usr/lib32/mips4/crt1.o -hides /usr/lib32/mips4/dsmcrt.o -init _dsm_crt_init hello.o -dont_warn_unused -lmp -lfortran -lffio -lftn -lm -Bdynamic -lc /usr/lib32/mips4/crtn.o -warn_unused
ld32: ERROR 33 : Unresolved text symbol "mpi_init_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_comm_size_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_comm_rank_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_finalize_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: INFO 152: Output file removed because of error.
f90 ERROR: /usr/lib32/cmplrs/ld32 returned non-zero status 2
***************************************************************************


whether the flags are -mp or -mpio or something else it gives the same error.

Thanking You,
Phani
rphanim wrote: I am new to IRIS and having some difficulty in running a simple prarallel program.

Kindly help in this regard.

What ever link I am giving it is giving the same error. Details of my system and the errors which I get are as follows
**************************************
Origin3000 678% uname -aR
IRIX64 Origin3000 6.5 6.5.30m 07202013 IP35
**************************************
Origin3000 679% cat hello.f90
!c Fortran example
program hello
include 'mpif.h'
integer rank, size, ierror, tag, status(MPI_STATUS_SIZE)

call MPI_INIT(ierror)
call MPI_COMM_SIZE(MPI_COMM_WORLD, size, ierror)
call MPI_COMM_RANK(MPI_COMM_WORLD, rank, ierror)
print*, 'node', rank, ': Hello world'
call MPI_FINALIZE(ierror)
end
**********************************************
Origin3000 680% f90 -mp hello.f90
ld32: ERROR 33 : Unresolved text symbol "mpi_init_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_comm_size_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_comm_rank_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_finalize_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: INFO 152: Output file removed because of error.
*******************************************************
Origin3000 681% f90 -mp -v hello.f90
/usr/lib32/cmplrs/mfef90 -G8 -TARG:t5_ll_sc_bug=on -TENV:PIC -m1 -mp -show -TARG:abi=n32:isa=mips4 -TARG:proc=r10000 -O2 -include=/usr/include -dsm -FE:cmdline=/tmp/ctmL.AAAa08CY7 -rii./rii_files/hello.rii -fB,/tmp/ctmB.BAAa08CY7 -fC,hello.T -fD,hello.l -ffree -LANG:=F90 hello.f90
f90: update_instantiation_info_file ./rii_files/hello.rii
/usr/lib32/cmplrs/be -PHASE:w:c -G8 -TARG:t5_ll_sc_bug=on -TENV:PIC -m1 -show -TARG:abi=n32:isa=mips4 -TARG:proc=r10000 -O2 -dsm -dsm_clone -LANG:=f90 -fB,/tmp/ctmB.BAAa08CY7 -fo,hello.o hello.f90
Compiling hello.f90 (/tmp/ctmB.BAAa08CY7) -- Back End
Compiling MAIN__(0)

/usr/lib32/cmplrs/dsm_prelink -dsm_clone hello.o
/usr/lib32/cmplrs/ld32 -call_shared -no_unresolved -transitive_link -elf -_SYSTYPE_SVR4 -show -mips4 -n32 -L/usr/lib32/mips4/r10000 -L/usr/lib32/mips4 -L/usr/lib32 /usr/lib32/mips4/crt1.o -hides /usr/lib32/mips4/dsmcrt.o -init _dsm_crt_init hello.o -dont_warn_unused -lmp -lfortran -lffio -lftn -lm -Bdynamic -lc /usr/lib32/mips4/crtn.o -warn_unused
ld32: ERROR 33 : Unresolved text symbol "mpi_init_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_comm_size_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_comm_rank_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_finalize_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: INFO 152: Output file removed because of error.
f90 ERROR: /usr/lib32/cmplrs/ld32 returned non-zero status 2
************************************************************************
Origin3000 682% f90 -mp -L/usr/lib32/mips4/libmpi.so -v hello.f90
f90 WARNING: -L/usr/lib32/mips4/libmpi.so does not refer to a valid directory
/usr/lib32/cmplrs/mfef90 -G8 -TARG:t5_ll_sc_bug=on -TENV:PIC -m1 -mp -show -TARG:abi=n32:isa=mips4 -TARG:proc=r10000 -O2 -include=/usr/include -dsm -FE:cmdline=/tmp/ctmL.AAAa08BKC -rii./rii_files/hello.rii -fB,/tmp/ctmB.BAAa08BKC -fC,hello.T -fD,hello.l -ffree -LANG:=F90 hello.f90
f90: update_instantiation_info_file ./rii_files/hello.rii
/usr/lib32/cmplrs/be -PHASE:w:c -G8 -TARG:t5_ll_sc_bug=on -TENV:PIC -m1 -show -TARG:abi=n32:isa=mips4 -TARG:proc=r10000 -O2 -dsm -dsm_clone -LANG:=f90 -fB,/tmp/ctmB.BAAa08BKC -fo,hello.o hello.f90
Compiling hello.f90 (/tmp/ctmB.BAAa08BKC) -- Back End
Compiling MAIN__(0)

/usr/lib32/cmplrs/dsm_prelink -dsm_clone hello.o
/usr/lib32/cmplrs/ld32 -call_shared -no_unresolved -transitive_link -elf -_SYSTYPE_SVR4 -L/usr/lib32/mips4/libmpi.so -show -mips4 -n32 -L/usr/lib32/mips4/r10000 -L/usr/lib32/mips4 -L/usr/lib32 /usr/lib32/mips4/crt1.o -hides /usr/lib32/mips4/dsmcrt.o -init _dsm_crt_init hello.o -dont_warn_unused -lmp -lfortran -lffio -lftn -lm -Bdynamic -lc /usr/lib32/mips4/crtn.o -warn_unused
ld32: ERROR 33 : Unresolved text symbol "mpi_init_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_comm_size_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_comm_rank_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_finalize_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: INFO 152: Output file removed because of error.
f90 ERROR: /usr/lib32/cmplrs/ld32 returned non-zero status 2
***************************************************************************


whether the flags are -mp or -mpio or something else it gives the same error.

Thanking You,
Phani


The Operating system is called IRIX actually.. IRIS is the default hostname..

Those are linker errors obviously you have some version of MPI installed or it would get to the linker stage..
You need to link against the MPI libraries. try a -lmpi or maybe -lmpich on the command line..
Try reading the documentation on MPI.. The linker errors are NOT IRIX specific and would be the almost the same for any O/S you attempted that on..
Whichever version you have.. OpenMPI (not recommended) or MPICH (recommended)

You could add some more information to the MPI section of the wiki when you are finished.
http://www.nekochan.net/wiki/MPI

Welcome to the forums.


Regan
死の神はりんごだけ食べる

開いた括弧は必ず閉じる -- あるプログラマー

:Tezro: :Tezro: :Onyx2R: :Onyx2RE: :Onyx2: :O3x04R: :O3x0: :O200: :Octane: :Octane2: :O2: :O2: :Indigo2IMP: :PI: :PI: :1600SW: :1600SW: :Indy: :Indy: :Indy: :Indy: :Indy:
:hpserv: J5600, 2 x Mac, 3 x SUN, Alpha DS20E, Alpha 800 5/550, 3 x RS/6000, Amiga 4000 VideoToaster, Amiga4000 -030, 733MHz Sam440 AmigaOS 4.1 update 1.

Sold: :Indy: :Indy: :Indy: :Indigo: Tandem Himalaya S-Series Nonstop S72000 ServerNet.

Twitter @PymbleSoftware
Current Apps (iOS) -> https://itunes.apple.com/au/artist/pymb ... d553990081
(Android) https://play.google.com/store/apps/deve ... +Ltd&hl=en
(Onyx2) Cortex ---> http://www.facebook.com/pages/Cortex-th ... 11?sk=info
(0300s) Minnie ---> http://www.facebook.com/pages/Minnie-th ... 02?sk=info
Github ---> https://github.com/pymblesoftware
Thank you for inviting me to forums.

I tried using -lmpi and -lmpi it gives the following errors

*******************
Origin3000 683% f90 -lmpi -v hello.f90
/usr/lib32/cmplrs/mfef90 -G8 -TARG:t5_ll_sc_bug=on -TENV:PIC -m1 -show -TARG:abi=n32:isa=mips4 -TARG:proc=r10000 -O2 -include=/usr/include -FE:cmdline=/tmp/ctmL.AAAa08AGF -fB,/tmp/ctmB.BAAa08AGF -fC,hello.T -fD,hello.l -ffree -LANG:=F90 hello.f90
/usr/lib32/cmplrs/be -PHASE:w:c -G8 -TARG:t5_ll_sc_bug=on -TENV:PIC -m1 -show -TARG:abi=n32:isa=mips4 -TARG:proc=r10000 -O2 -LANG:=f90 -fB,/tmp/ctmB.BAAa08AGF -fo,hello.o hello.f90
Compiling hello.f90 (/tmp/ctmB.BAAa08AGF) -- Back End
Compiling MAIN__(0)

/usr/lib32/cmplrs/ld32 -call_shared -no_unresolved -transitive_link -elf -_SYSTYPE_SVR4 -show -mips4 -n32 -L/usr/lib32/mips4/r10000 -L/usr/lib32/mips4 -L/usr/lib32 /usr/lib32/mips4/crt1.o -lmpi hello.o -dont_warn_unused -lfortran -lffio -lftn -lm -Bdynamic -lc /usr/lib32/mips4/crtn.o -warn_unused
ld32: WARNING 84 : /usr/lib32/mips4/libmpi.so is not used for resolving any symbol.
ld32: ERROR 33 : Unresolved text symbol "mpi_init_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_comm_size_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_comm_rank_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_finalize_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: INFO 152: Output file removed because of error.
f90 ERROR: /usr/lib32/cmplrs/ld32 returned non-zero status 2
*****************************************************************
Origin3000 684% f90 -lmpich -v hello.f90
/usr/lib32/cmplrs/mfef90 -G8 -TARG:t5_ll_sc_bug=on -TENV:PIC -m1 -show -TARG:abi=n32:isa=mips4 -TARG:proc=r10000 -O2 -include=/usr/include -FE:cmdline=/tmp/ctmL.AAAa08Cji -fB,/tmp/ctmB.BAAa08Cji -fC,hello.T -fD,hello.l -ffree -LANG:=F90 hello.f90
/usr/lib32/cmplrs/be -PHASE:w:c -G8 -TARG:t5_ll_sc_bug=on -TENV:PIC -m1 -show -TARG:abi=n32:isa=mips4 -TARG:proc=r10000 -O2 -LANG:=f90 -fB,/tmp/ctmB.BAAa08Cji -fo,hello.o hello.f90
Compiling hello.f90 (/tmp/ctmB.BAAa08Cji) -- Back End
Compiling MAIN__(0)

/usr/lib32/cmplrs/ld32 -call_shared -no_unresolved -transitive_link -elf -_SYSTYPE_SVR4 -show -mips4 -n32 -L/usr/lib32/mips4/r10000 -L/usr/lib32/mips4 -L/usr/lib32 /usr/lib32/mips4/crt1.o -lmpich hello.o -dont_warn_unused -lfortran -lffio -lftn -lm -Bdynamic -lc /usr/lib32/mips4/crtn.o -warn_unused
ld32: FATAL 9 : I/O error (-lmpich): No such file or directory
f90 ERROR: /usr/lib32/cmplrs/ld32 returned non-zero status 32
**************************************************************************
the Flag -lmpich is not accepting..

Phnai
rphanim wrote: Thank you for inviting me to forums.

I tried using -lmpi and -lmpi it gives the following errors

*******************
Origin3000 683% f90 -lmpi -v hello.f90
/usr/lib32/cmplrs/mfef90 -G8 -TARG:t5_ll_sc_bug=on -TENV:PIC -m1 -show -TARG:abi=n32:isa=mips4 -TARG:proc=r10000 -O2 -include=/usr/include -FE:cmdline=/tmp/ctmL.AAAa08AGF -fB,/tmp/ctmB.BAAa08AGF -fC,hello.T -fD,hello.l -ffree -LANG:=F90 hello.f90
/usr/lib32/cmplrs/be -PHASE:w:c -G8 -TARG:t5_ll_sc_bug=on -TENV:PIC -m1 -show -TARG:abi=n32:isa=mips4 -TARG:proc=r10000 -O2 -LANG:=f90 -fB,/tmp/ctmB.BAAa08AGF -fo,hello.o hello.f90
Compiling hello.f90 (/tmp/ctmB.BAAa08AGF) -- Back End
Compiling MAIN__(0)

/usr/lib32/cmplrs/ld32 -call_shared -no_unresolved -transitive_link -elf -_SYSTYPE_SVR4 -show -mips4 -n32 -L/usr/lib32/mips4/r10000 -L/usr/lib32/mips4 -L/usr/lib32 /usr/lib32/mips4/crt1.o -lmpi hello.o -dont_warn_unused -lfortran -lffio -lftn -lm -Bdynamic -lc /usr/lib32/mips4/crtn.o -warn_unused
ld32: WARNING 84 : /usr/lib32/mips4/libmpi.so is not used for resolving any symbol.
ld32: ERROR 33 : Unresolved text symbol "mpi_init_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_comm_size_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_comm_rank_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: ERROR 33 : Unresolved text symbol "mpi_finalize_" -- 1st referenced by hello.o.
Use linker option -v to see when and which objects, archives and dsos are loaded.
ld32: INFO 152: Output file removed because of error.
f90 ERROR: /usr/lib32/cmplrs/ld32 returned non-zero status 2
*****************************************************************
Origin3000 684% f90 -lmpich -v hello.f90
/usr/lib32/cmplrs/mfef90 -G8 -TARG:t5_ll_sc_bug=on -TENV:PIC -m1 -show -TARG:abi=n32:isa=mips4 -TARG:proc=r10000 -O2 -include=/usr/include -FE:cmdline=/tmp/ctmL.AAAa08Cji -fB,/tmp/ctmB.BAAa08Cji -fC,hello.T -fD,hello.l -ffree -LANG:=F90 hello.f90
/usr/lib32/cmplrs/be -PHASE:w:c -G8 -TARG:t5_ll_sc_bug=on -TENV:PIC -m1 -show -TARG:abi=n32:isa=mips4 -TARG:proc=r10000 -O2 -LANG:=f90 -fB,/tmp/ctmB.BAAa08Cji -fo,hello.o hello.f90
Compiling hello.f90 (/tmp/ctmB.BAAa08Cji) -- Back End
Compiling MAIN__(0)

/usr/lib32/cmplrs/ld32 -call_shared -no_unresolved -transitive_link -elf -_SYSTYPE_SVR4 -show -mips4 -n32 -L/usr/lib32/mips4/r10000 -L/usr/lib32/mips4 -L/usr/lib32 /usr/lib32/mips4/crt1.o -lmpich hello.o -dont_warn_unused -lfortran -lffio -lftn -lm -Bdynamic -lc /usr/lib32/mips4/crtn.o -warn_unused
ld32: FATAL 9 : I/O error (-lmpich): No such file or directory
f90 ERROR: /usr/lib32/cmplrs/ld32 returned non-zero status 32
**************************************************************************
the Flag -lmpich is not accepting..

Phnai


Try putting it on the end of the line.. Linkers are kinda stupid in the way they operate: they don't backtrack and they're not multipass..

Read this:
http://iqc.uwaterloo.ca/library/SGI_boo ... /ch02.html


Regan
死の神はりんごだけ食べる

開いた括弧は必ず閉じる -- あるプログラマー

:Tezro: :Tezro: :Onyx2R: :Onyx2RE: :Onyx2: :O3x04R: :O3x0: :O200: :Octane: :Octane2: :O2: :O2: :Indigo2IMP: :PI: :PI: :1600SW: :1600SW: :Indy: :Indy: :Indy: :Indy: :Indy:
:hpserv: J5600, 2 x Mac, 3 x SUN, Alpha DS20E, Alpha 800 5/550, 3 x RS/6000, Amiga 4000 VideoToaster, Amiga4000 -030, 733MHz Sam440 AmigaOS 4.1 update 1.

Sold: :Indy: :Indy: :Indy: :Indigo: Tandem Himalaya S-Series Nonstop S72000 ServerNet.

Twitter @PymbleSoftware
Current Apps (iOS) -> https://itunes.apple.com/au/artist/pymb ... d553990081
(Android) https://play.google.com/store/apps/deve ... +Ltd&hl=en
(Onyx2) Cortex ---> http://www.facebook.com/pages/Cortex-th ... 11?sk=info
(0300s) Minnie ---> http://www.facebook.com/pages/Minnie-th ... 02?sk=info
Github ---> https://github.com/pymblesoftware
Thank You Very much for you kind and fruitful reply. It works when we add the flags in the last.

Thats really great of you.

I was struggling from yesterday by using all combinations and everytime the same error.

Regards,
Phani.
rphanim wrote: Thank You Very much for you kind and fruitful reply. It works when we add the flags in the last.

Thats really great of you.

I was struggling from yesterday by using all combinations and everytime the same error.

Regards,
Phani.


No problem.

Regan
死の神はりんごだけ食べる

開いた括弧は必ず閉じる -- あるプログラマー

:Tezro: :Tezro: :Onyx2R: :Onyx2RE: :Onyx2: :O3x04R: :O3x0: :O200: :Octane: :Octane2: :O2: :O2: :Indigo2IMP: :PI: :PI: :1600SW: :1600SW: :Indy: :Indy: :Indy: :Indy: :Indy:
:hpserv: J5600, 2 x Mac, 3 x SUN, Alpha DS20E, Alpha 800 5/550, 3 x RS/6000, Amiga 4000 VideoToaster, Amiga4000 -030, 733MHz Sam440 AmigaOS 4.1 update 1.

Sold: :Indy: :Indy: :Indy: :Indigo: Tandem Himalaya S-Series Nonstop S72000 ServerNet.

Twitter @PymbleSoftware
Current Apps (iOS) -> https://itunes.apple.com/au/artist/pymb ... d553990081
(Android) https://play.google.com/store/apps/deve ... +Ltd&hl=en
(Onyx2) Cortex ---> http://www.facebook.com/pages/Cortex-th ... 11?sk=info
(0300s) Minnie ---> http://www.facebook.com/pages/Minnie-th ... 02?sk=info
Github ---> https://github.com/pymblesoftware