Issues in Installing OpenSees2.2.2 and tcl/tk8.5.11

Forum for OpenSees users to post questions, comments, etc. on the use of the OpenSees interpreter, OpenSees.exe

Moderators: silvia, selimgunay, Moderators

anitha
Posts: 26
Joined: Mon Jun 16, 2014 12:36 am
Location: cdac

Issues in Installing OpenSees2.2.2 and tcl/tk8.5.11

Post by anitha »

Dear all,
Please suggest me to remove below mentioned errors while installing OpenSees2.2.2 with tcl/tk8.5.11...As per fmk I've included the -D_tcl85 in CFLAGS of makefile.def... after tat also i'm getting this error...Pls help me in this regard....
-I/home/anita/OpenSource/OpenSees/OTHER/SuperLU_3.0/SRC -c commands.cpp -o commands.o
commands.cpp:43:17: fatal error: tcl.h: No such file or directory
#include <tcl.h>
^
compilation terminated.
make[2]: *** [commands.o] Error 1
make[2]: Leaving directory `/home/anita/OpenSource/OpenSees/SRC/tcl'
make[1]: *** [tk] Error 2
make[1]: Leaving directory `/home/anita/OpenSource/OpenSees/SRC/modelbuilder/tcl'
make: *** [all] Error 2
fmk
Site Admin
Posts: 5884
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Re: Issues in Installing OpenSees2.2.2 and tcl/tk8.5.11

Post by fmk »

is this a windows or linux build .. i am going to guess linux or variant theroeof.
1) it should be -D_TCL85
2) that though is not the problem, have you installed TCL and if so where? if not you must. if you have or when you do you need to set up so that the tccl.h file is in the includes paths.
depending on the Makfile.def you started with it can be as simple as setting the line with TCL_INCLUDES= to point to thie directorty containing the tcl.h file.
anitha
Posts: 26
Joined: Mon Jun 16, 2014 12:36 am
Location: cdac

Re: Issues in Installing OpenSees2.2.2 and tcl/tk8.5.11

Post by anitha »

Thank you sir for ur reply....
1)I'm installing in linux operating system
2) After adding -D_TCL85 in CFLAGS also i'm getting error.
3) here i've sent a makefile.def...where i'm getting wrong in installing suggest me...
############################################################################
#
# Program: OpenSees
#
# Purpose: A Top-level Makefile to create the libraries needed
# to use the OpenSees framework. Works for Linux 7.1 and
# above, modified to use the OpenGl libraries.
#
# Written: fmk
# Created: 10/99
#
# Send bug reports, comments or suggestions to fmckenna@ce.berkeley.edu
#
############################################################################

# %---------------------------------%
# | SECTION 1: PROGRAM |
# %---------------------------------%
#
# Specify the location and name of the OpenSees interpreter program
# that will be created (if this all works!)

OpenSees_PROGRAM = $(HOME)/bin/OpenSees

# %---------------------------------%
# | SECTION 2: MAKEFILE CONSTANTS |
# %---------------------------------%
#
# Specify the constants the are used as control structure variables in the Makefiles.

#OPERATING_SYSTEM = LINUX

#GRAPHICS = UsingOpenGL, UsingX11
GRAPHICS = UsingOpenGL

#PROGRAMMING_MODE = SEQUENTIAL, THREADS OR DISTRIBUTED_MPI
PROGRAMMING_MODE = SEQUENTIAL

#COMPILER = GCC, KAI
COMPILER = GCC

#DEBUG_MODE = DEBUG, NO_DEBUG
DEBUG_MODE = NO_DEBUG

#RELIABILITY = YES_RELIABILITY, NO_RELIABILITY
RELIABILITY = YES_RELIABILITY

# %---------------------------------%
# | SECTION 3: PATHS |
# %---------------------------------%
#
# Note: if vendor supplied BLAS and LAPACK libraries or if you have
# any of the libraries already leave the directory location blank AND
# remove the directory from DIRS.

BASE = /usr/local
HOME = /home/anita/OpenSource
FE = $(HOME)/OpenSees/SRC

BLASdir = $(HOME)/OpenSees/OTHER/BLAS
CBLASdir = $(HOME)/OpenSees/OTHER/CBLAS
LAPACKdir = $(HOME)/OpenSees/OTHER/LAPACK
ARPACKdir = $(HOME)/OpenSees/OTHER/ARPACK
UMFPACKdir = $(HOME)/OpenSees/OTHER/UMFPACK
METISdir = $(HOME)/OpenSees/OTHER/METIS
SRCdir = $(HOME)/OpenSees/SRC

ifeq ($(PROGRAMMING_MODE), THREADS)
SUPERLUdir = $(HOME)/OpenSees/OTHER/SuperLU_MT
else
SUPERLUdir = $(HOME)/OpenSees/OTHER/SuperLU_3.0/SRC
endif



DIRS = $(BLASdir) $(CBLASdir) $(LAPACKdir) \
$(SUPERLUdir) $(ARPACKdir) $(UMFPACKdir) $(SRCdir) $(METISdir)

# %-------------------------------------------------------%
# | SECTION 4: LIBRARIES |
# | |
# | The following section defines the libraries that will |
# | be created and/or linked with when the libraries are |
# | being created or linked with. |
# %-------------------------------------------------------%
#
# Note: if vendor supplied BLAS and LAPACK libraries leave the
# libraries blank. You have to get your own copy of the tcl/tk
# library!!
#
# Note: For libraries that will be created (any in DIRS above)
# make sure the directory exsists where you want the library to go!

FE_LIBRARY = $(HOME)/lib/libOpenSees.a
NDARRAY_LIBRARY = $(HOME)/lib/libndarray.a # BJ_UCD jeremic@ucdavis.edu
MATMOD_LIBRARY = $(HOME)/lib/libmatmod.a # BJ_UCD jeremic@ucdavis.edu
BJMISC_LIBRARY = $(HOME)/lib/libBJmisc.a # BJ_UCD jeremic@ucdavis.edu
LAPACK_LIBRARY = $(HOME)/lib/libLapack.a
BLAS_LIBRARY = $(HOME)/lib/libBlas.a
SUPERLU_LIBRARY = $(HOME)/lib/libSuperLU.a
CBLAS_LIBRARY = $(HOME)/lib/libCBlas.a
ARPACK_LIBRARY = $(HOME)/lib/libArpack.a
UMFPACK_LIBRARY = $(HOME)/lib/libUmfpack.a
METIS_LIBRARY = $(HOME)/lib/libMetis.a
TCL_LIBRARY = /home/anita/OpenSource/tk8.5.11/unix/lib/libtk8.5.so /home/anita/OpenSource/tcl8.5.11/unix/lib/libtcl8.5.so
BLITZ_LIBRARY =


ifeq ($(GRAPHICS), UsingX11)
GRAPHIC_LIBRARY = /usr/X11R6/lib/libX11.a
else
GRAPHIC_LIBRARY = /usr/lib/libGL.a /usr/X11R6/lib/libX11.a /usr/X11R6/lib/libXext.a \
/usr/lib/libGLU.a
endif

ifeq ($(RELIABILITY), YES_RELIABILITY)
RELIABILITY_LIBRARY = $(HOME)/lib/libReliability.a
else
RELIABILITY_LIBRARY =
endif


# WATCH OUT .. These libraries are removed when 'make wipe' is invoked.
WIPE_LIBS = $(FE_LIBRARY) \
$(LAPACK_LIBRARY) \
$(BLAS_LIBRARY) \
$(CBLAS_LIBRARY) \
$(SUPERLU_LIBRARY) \
$(ARPACK_LIBRARY) \
$(UMFPACK_LIBRARY) \
$(METIS_LIBRARY) \
$(RELIABILITY_LIBRARY)

# %---------------------------------------------------------%
# | SECTION 5: COMPILERS |
# | |
# | The following macros specify compilers, linker/loaders, |
# | the archiver, and their options. You need to make sure |
# | these are correct for your system. |
# %---------------------------------------------------------%

# Compilers
CC++ = /usr/bin/g++
CC = /usr/bin/gcc
FC = /usr/bin/g77

AR = ar
ARFLAGS = cqls
RANLIB = ranlib
RANLIBFLAGS =

#GRAPHICS = UsingOpenGL, UsingX11
ifeq ($(GRAPHICS), UsingOpenGL)
GRAPHIC_FLAG = -D_GLX
else
GRAPHIC_FLAG = -D_X11
endif

ifeq ($(PROGRAMMING_MODE), THREADS)
PROGRAMMING_FLAG = -D_THREADS -D_PTHREAD
else
PROGRAMMING_FLAG =
endif

ifeq ($(DEBUG_MODE), DEBUG)
DEBUG_FLAG = -D_G3DEBUG
else
DEBUG_FLAG =
endif

ifeq ($(RELIABILITY), YES_RELIABILITY)
RELIABILITY_FLAG = -D_RELIABILITY
else
RELIABILITY_FLAG =
endif


# Compiler Flags
#
# NOTES:
# C++ FLAGS TAKE need _UNIX or _WIN32 for preprocessor dircetives
# - the _WIN32 for the Windows95/98 or NT operating system.
# C FLAGS used -DUSE_VENDOR_BLAS (needed in SuperLU) if UNIX in C++ FLAGS
#


ifeq ($(DEBUG_MODE), DEBUG)

C++FLAGS = -Wall -funroll-loops -fcse-follow-jumps \
-fthread-jumps -fcse-skip-blocks -frerun-cse-after-loop \
-felide-constructors \
-fcaller-saves -ffloat-store -fforce-addr \
-fschedule-insns -fschedule-insns2 -D_LINUX -D_UNIX -D_TCL85 \
$(GRAPHIC_FLAG) $(RELIABILITY_FLAG) $(DEBUG_FLAG) $(PROGRAMMING_FLAG) \
-fexpensive-optimizations \
-fforce-addr -fforce-mem -finline-functions \
-fkeep-inline-functions \
-fno-function-cse -fno-inline -fno-peephole \
-fschedule-insns -fschedule-insns2 \
-fstrength-reduce -fthread-jumps -g -pg \
-ffloat-store -D_RELIABILITY

CFLAGS = -Wall -pg $(GRAPHIC_FLAG) $(RELIABILITY_FLAG) $(DEBUG_FLAG) $(PROGRAMMING_FLAG)
FFLAGS = -Wall

# Linker
LINKER = $(CC++)
LINKFLAGS = -g -pg

else

# modified as optimizaton currently causing problems with Steel01 code
C++FLAGS = -Wall -O3 -D_UNIX -ftemplate-depth-30 -D_LINUX -D_TCL85 \
$(GRAPHIC_FLAG) $(RELIABILITY_FLAG) $(DEBUG_FLAG) $(PROGRAMMING_FLAG) \
-ffloat-store

CFLAGS = -Wall -O3 $(GRAPHIC_FLAG) $(RELIABILITY_FLAG) $(DEBUG_FLAG) $(PROGRAMMING_FLAG)
FFLAGS = -Wall -O

# Linker
LINKER = $(CC++)
LINKFLAGS =

endif

ifeq ($(COMPILER), KAI)

CC++ = /usr/local/KAI/KCC_BASE/bin/KCC
CC = /usr/local/KAI/KCC_BASE/bin/KCC
FC = /usr/bin/g77

C++FLAGS = -D_KAI -D_UNIX -D_LINUX +K1 +K3 -O3 -D_TCL85 \
$(GRAPHIC_FLAG) $(RELIABILITY_FLAG) $(DEBUG_FLAG) $(PROGRAMMING_FLAG)
--display_error_number --backend -ffloat-store

CFLAGS = -D_KAI -D_UNIX -D_LINUX $(GRAPHIC_FLAG) $(RELIABILITY_FLAG) \
$(DEBUG_FLAG) $(PROGRAMMING_FLAG) +K3 -O3 --c
FFLAGS = -Wall -O

LINKER = $(CC++)
LINKFLAGS =

endif


# Misc
MAKE = make
CD = cd
ECHO = echo
RM = rm
RMFLAGS = -f
SHELL = /bin/sh

# %---------------------------------------------------------%
# | SECTION 6: COMPILATION |
# | |
# | The following macros specify the macros used in |
# | to compile the source code into object code. |
# %---------------------------------------------------------%

.SUFFIXES:
.SUFFIXES: .C .c .f .f90 .cpp .o .cpp

#
# %------------------%
# | Default command. |
# %------------------%
#
.DEFAULT:
@$(ECHO) "Unknown target $@, try: make help"
#
# %-------------------------------------------%
# | Command to build .o files from .f files. |
# %-------------------------------------------%
#

.cpp.o:
@$(ECHO) Making $@ from $<
$(CC++) $(C++FLAGS) $(INCLUDES) -c $< -o $@

.C.o:
@$(ECHO) Making $@ from $<
$(CC++) $(C++FLAGS) $(INCLUDES) -c $< -o $@
.c.o:
@$(ECHO) Making $@ from $<
$(CC) $(CFLAGS) -c $< -o $@
.f.o:
@$(ECHO) Making $@ from $<
$(FC) $(FFLAGS) -c $< -o $@

# %---------------------------------------------------------%
# | SECTION 7: OTHER LIBRARIES |
# | |
# | The following macros specify other libraries that must |
# | be linked with when creating executables. These are |
# | platform specific and typically order does matter!! |
# %---------------------------------------------------------%
MACHINE_LINKLIBS = -L$(BASE)/lib \
-L$(HOME)/lib

MACHINE_NUMERICAL_LIBS = -lm \
$(ARPACK_LIBRARY) \
$(SUPERLU_LIBRARY) \
$(UMFPACK_LIBRARY) $(METIS_LIBRARY) \
$(LAPACK_LIBRARY) $(BLAS_LIBRARY) $(CBLAS_LIBRARY) \
$(GRAPHIC_LIBRARY) $(RELIABILITY_LIBRARY) -lg2c -ldl


ifeq ($(PROGRAMMING_MODE), THREADS)
MACHINE_SPECIFIC_LIBS = -lpthread
else
MACHINE_SPECIFIC_LIBS =
endif

# %---------------------------------------------------------%
# | SECTION 8: INCLUDE FILES |
# | |
# | The following macros specify include files needed for |
# | compilation. |
# %---------------------------------------------------------%
MACHINE_INCLUDES = -I/usr/include \
-I$(BASE)/include \
-I/usr/include/cxx \
-I$(HOME)/include -I$(HOME)/blitz \
-I$(UMFPACKdir) -I$(SUPERLUdir)


# this file contains all the OpenSees/SRC includes
include $(FE)/Makefile.incl

TCL_INCLUDES = -I /home/anita/OpenSource/tcl8.5.11/unix/include/tcl.h -I /home/anita/OpenSource/tk8.5.11/unix/include/tk.h

INCLUDES = $(TCL_INCLUDES) $(FE_INCLUDES) $(MACHINE_INCLUDES)
fmk
Site Admin
Posts: 5884
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Re: Issues in Installing OpenSees2.2.2 and tcl/tk8.5.11

Post by fmk »

i need the error messages not your Makefile.def.
i hope you started with a Makefile.def.EC2-XXX
anitha
Posts: 26
Joined: Mon Jun 16, 2014 12:36 am
Location: cdac

Re: Issues in Installing OpenSees2.2.2 and tcl/tk8.5.11

Post by anitha »

Respected sir,
i started with a Makefile.def.LINUX...
And the error obtained is
Making TclSectionTester.o from TclSectionTester.cpp
/usr/bin/g++ -Wall -O3 -D_UNIX -ftemplate-depth-30 -D_LINUX -D_TCL85 -D_GLX -D_RELIABILITY -ffloat-store -I /home/anita/OpenSource/tcl8.5.11/unix/include/tcl.h -I /home/anita/OpenSource/tk8.5.11/unix/include/tk.h -I/home/anita/OpenSource/OpenSees/SRC/matrix -I/home/anita/OpenSource/OpenSees/SRC/nDarray -I/home/anita/OpenSource/OpenSees/SRC/tagged -I/home/anita/OpenSource/OpenSees/SRC/damage -I/home/anita/OpenSource/OpenSees/SRC/tcl -I/home/anita/OpenSource/OpenSees/SRC/material -I/home/anita/OpenSource/OpenSees/SRC/material/wall -I/home/anita/OpenSource/OpenSees/SRC/material/uniaxial -I/home/anita/OpenSource/OpenSees/SRC/material/uniaxial/fedeas -I/home/anita/OpenSource/OpenSees/SRC/material/uniaxial/drain -I/home/anita/OpenSource/OpenSees/SRC/material/uniaxial/snap -I/home/anita/OpenSource/OpenSees/SRC/material/uniaxial/PY -I/home/anita/OpenSource/OpenSees/SRC/material/uniaxial/limitState -I/home/anita/OpenSource/OpenSees/SRC/material/uniaxial/limitState/limitCurve -I/home/anita/OpenSource/OpenSees/SRC/material/uniaxial/backbone -I/home/anita/OpenSource/OpenSees/SRC/material/state -I/home/anita/OpenSource/OpenSees/SRC/material/state/stiffness -I/home/anita/OpenSource/OpenSees/SRC/material/state/unloading -I/home/anita/OpenSource/OpenSees/SRC/material/state/strength -I/home/anita/OpenSource/OpenSees/SRC/material/nD -I/home/anita/OpenSource/OpenSees/SRC/material/nD/soil -I/home/anita/OpenSource/OpenSees/SRC/material/nD/feap -I/home/anita/OpenSource/OpenSees/SRC/material/nD/Template3Dep -I/home/anita/OpenSource/OpenSees/SRC/material/nD/NewTemplate3Dep -I/home/anita/OpenSource/OpenSees/SRC/material/nD/FiniteDeformation -I/home/anita/OpenSource/OpenSees/SRC/material/nD/FiniteDeformation/fdFlow -I/home/anita/OpenSource/OpenSees/SRC/material/nD/FiniteDeformation/fdYield -I/home/anita/OpenSource/OpenSees/SRC/material/nD/FiniteDeformation/fdEvolution -I/home/anita/OpenSource/OpenSees/SRC/material/nD/cyclicSoil -I/home/anita/OpenSource/OpenSees/SRC/material/section -I/home/anita/OpenSource/OpenSees/SRC/material/section/repres/cell -I/home/anita/OpenSource/OpenSees/SRC/material/section/repres/patch -I/home/anita/OpenSource/OpenSees/SRC/material/section/repres/reinfBar -I/home/anita/OpenSource/OpenSees/SRC/material/section/repres/reinfLayer -I/home/anita/OpenSource/OpenSees/SRC/material/section/repres/section -I/home/anita/OpenSource/OpenSees/SRC/material/section/fiber -I/home/anita/OpenSource/OpenSees/SRC/material/section/integration -I/home/anita/OpenSource/OpenSees/SRC/material/section/yieldSurface -I/home/anita/OpenSource/OpenSees/SRC/material/yieldSurface/evolution -I/home/anita/OpenSource/OpenSees/SRC/material/yieldSurface/plasticHardeningMaterial -I/home/anita/OpenSource/OpenSees/SRC/material/yieldSurface/yieldSurfaceBC -I/home/anita/OpenSource/OpenSees/SRC/material/ce234 -I/home/anita/OpenSource/OpenSees/SRC/recorder -I/home/anita/OpenSource/OpenSees/SRC/recorder/response -I/home/anita/OpenSource/OpenSees/SRC/handler -I/home/anita/OpenSource/OpenSees/SRC/database -I/home/anita/OpenSource/OpenSees/SRC/renderer -I/home/anita/OpenSource/OpenSees/SRC/convergenceTest -I/home/anita/OpenSource/OpenSees/SRC/utility -I/home/anita/OpenSource/OpenSees/SRC/actor -I/home/anita/OpenSource/OpenSees/SRC/actor/channel -I/home/anita/OpenSource/OpenSees/SRC/actor/message -I/home/anita/OpenSource/OpenSees/SRC/actor/machineBroker -I/home/anita/OpenSource/OpenSees/SRC/actor/objectBroker -I/home/anita/OpenSource/OpenSees/SRC/actor/actor -I/home/anita/OpenSource/OpenSees/SRC/actor/shadow -I/home/anita/OpenSource/OpenSees/SRC/actor/address -I/home/anita/OpenSource/OpenSees/SRC/tagged/storage -I/home/anita/OpenSource/OpenSees/SRC/domain -I/home/anita/OpenSource/OpenSees/SRC/domain/domain -I/home/anita/OpenSource/OpenSees/SRC/domain/domain/single -I/home/anita/OpenSource/OpenSees/SRC/domain/component -I/home/anita/OpenSource/OpenSees/SRC/domain/component/storage -I/home/anita/OpenSource/OpenSees/SRC/domain/domain/partitioned -I/home/anita/OpenSource/OpenSees/SRC/domain/partitioner -I/home/anita/OpenSource/OpenSees/SRC/domain/loadBalancer -I/home/anita/OpenSource/OpenSees/SRC/domain/subdomain -I/home/anita/OpenSource/OpenSees/SRC/domain/region -I/home/anita/OpenSource/OpenSees/SRC/domain/node -I/home/anita/OpenSource/OpenSees/SRC/domain/load -I/home/anita/OpenSource/OpenSees/SRC/domain/pattern -I/home/anita/OpenSource/OpenSees/SRC/domain/groundMotion -I/home/anita/OpenSource/OpenSees/SRC/domain/constraints -I/home/anita/OpenSource/OpenSees/SRC/domain/region -I/home/anita/OpenSource/OpenSees/SRC/element -I/home/anita/OpenSource/OpenSees/SRC/element/beam2d -I/home/anita/OpenSource/OpenSees/SRC/element/beam3d -I/home/anita/OpenSource/OpenSees/SRC/element/truss -I/home/anita/OpenSource/OpenSees/SRC/element/fortran -I/home/anita/OpenSource/OpenSees/SRC/element/feap -I/home/anita/OpenSource/OpenSees/SRC/element/zeroLength -I/home/anita/OpenSource/OpenSees/SRC/element/fourNodeQuad -I/home/anita/OpenSource/OpenSees/SRC/element/beamWithHinges -I/home/anita/OpenSource/OpenSees/SRC/element/dispBeamColumn -I/home/anita/OpenSource/OpenSees/SRC/element/dispBeamColumnInt -I/home/anita/OpenSource/OpenSees/SRC/element/forceBeamColumn -I/home/anita/OpenSource/OpenSees/SRC/element/generic -I/home/anita/OpenSource/OpenSees/SRC/element/elasticBeamColumn -I/home/anita/OpenSource/OpenSees/SRC/element/8nbrick -I/home/anita/OpenSource/OpenSees/SRC/element/20nbrick -I/home/anita/OpenSource/OpenSees/SRC/element/27nbrick -I/home/anita/OpenSource/OpenSees/SRC/element/upU -I/home/anita/OpenSource/OpenSees/SRC/element/UP_ucdavis -I/home/anita/OpenSource/OpenSees/SRC/element/UP-ucsd -I/home/anita/OpenSource/OpenSees/SRC/element/TotalLagrangianFD20NodeBrick -I/home/anita/OpenSource/OpenSees/SRC/element/brick -I/home/anita/OpenSource/OpenSees/SRC/element/shell -I/home/anita/OpenSource/OpenSees/SRC/element/joint -I/home/anita/OpenSource/OpenSees/SRC/element/elastomericBearing -I/home/anita/OpenSource/OpenSees/SRC/element/frictionBearing -I/home/anita/OpenSource/OpenSees/SRC/element/frictionBearing/frictionModel -I/home/anita/OpenSource/OpenSees/SRC/element/adapter -I/home/anita/OpenSource/OpenSees/SRC/element/twoNodeLink -I/home/anita/OpenSource/OpenSees/SRC/element/updatedLagrangianBeamColumn -I/home/anita/OpenSource/OpenSees/SRC/analysis -I/home/anita/OpenSource/OpenSees/SRC/analysis/analysis -I/home/anita/OpenSource/OpenSees/SRC/analysis/handler -I/home/anita/OpenSource/OpenSees/SRC/analysis/numberer -I/home/anita/OpenSource/OpenSees/SRC/analysis/algorithm -I/home/anita/OpenSource/OpenSees/SRC/analysis/algorithm/eigenAlgo -I/home/anita/OpenSource/OpenSees/SRC/analysis/algorithm/equiSolnAlgo -I/home/anita/OpenSource/OpenSees/SRC/analysis/algorithm/equiSolnAlgo/accelerator -I/home/anita/OpenSource/OpenSees/SRC/analysis/algorithm/domainDecompAlgo -I/home/anita/OpenSource/OpenSees/SRC/analysis/model -I/home/anita/OpenSource/OpenSees/SRC/analysis/model/simple -I/home/anita/OpenSource/OpenSees/SRC/analysis/method -I/home/anita/OpenSource/OpenSees/SRC/analysis/fe_ele -I/home/anita/OpenSource/OpenSees/SRC/analysis/fe_ele/penalty -I/home/anita/OpenSource/OpenSees/SRC/analysis/fe_ele/lagrange -I/home/anita/OpenSource/OpenSees/SRC/analysis/fe_ele/transformation -I/home/anita/OpenSource/OpenSees/SRC/analysis/dof_grp -I/home/anita/OpenSource/OpenSees/SRC/analysis/integrator -I/home/anita/OpenSource/OpenSees/SRC/modelbuilder -I/home/anita/OpenSource/OpenSees/SRC/modelbuilder/triangle -I/home/anita/OpenSource/OpenSees/SRC/modelbuilder/tcl -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/eigenSOE -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/slowMatrix -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/bandSPD -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/profileSPD -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/fullGEN -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/bandGEN -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/sparseGEN -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/sparseSYM -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/petsc -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/umfGEN -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/diagonal -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/cg -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/BJsolvers -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/itpack -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/mumps -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/eigenSOE -I/home/anita/OpenSource/OpenSees/SRC/graph/graph -I/home/anita/OpenSource/OpenSees/SRC/graph/numberer -I/home/anita/OpenSource/OpenSees/SRC/graph/partitioner -I/home/anita/OpenSource/OpenSees/SRC/element/nonlinearBeamColumn/element -I/home/anita/OpenSource/OpenSees/SRC/element/nonlinearBeamColumn/fiber -I/home/anita/OpenSource/OpenSees/SRC/element/nonlinearBeamColumn/matrixutil -I/home/anita/OpenSource/OpenSees/SRC/element/nonlinearBeamColumn/quadrule -I/home/anita/OpenSource/OpenSees/SRC/coordTransformation -I/home/anita/OpenSource/OpenSees/SRC/optimization -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/analysis -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/analysis/system -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/convergenceCheck -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/curvature -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/designPoint -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/direction -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/gFunction -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/hessianApproximation -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/meritFunction -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/misc -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/randomNumber -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/rootFinding -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/sensitivity -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/stepSize -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/transformation -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/telm -I/home/anita/OpenSource/OpenSees/SRC/reliability/domain -I/home/anita/OpenSource/OpenSees/SRC/reliability/domain/components -I/home/anita/OpenSource/OpenSees/SRC/reliability/domain/distributions -I/home/anita/OpenSource/OpenSees/SRC/reliability/domain/filter -I/home/anita/OpenSource/OpenSees/SRC/reliability/domain/modulatingFunction -I/home/anita/OpenSource/OpenSees/SRC/reliability/domain/spectrum -I/home/anita/OpenSource/OpenSees/SRC/reliability/domain/limitStateFunction -I/home/anita/OpenSource/OpenSees/SRC/reliability/optimization -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/telm -I/home/anita/OpenSource/OpenSees/SRC/reliability/FEsensitivity -I/home/anita/OpenSource/OpenSees/SRC/reliability/tcl -I/home/anita/OpenSource/OpenSees/SRC/unittest -I/home/anita/OpenSource/OpenSees/SRC/api -I/home/anita/OpenSource/OpenSees/SRC -I/home/anita/OpenSource/OpenSees/OTHER/SuperLU_3.0/SRC -I/home/anita/OpenSource/OpenSees/SRC/package -I/home/anita/OpenSource/OpenSees/SRC/../OTHER/AMD -I/usr/include -I/include -I/usr/include/cxx -I/home/anita/OpenSource/include -I/home/anita/OpenSource/blitz -I/home/anita/OpenSource/OpenSees/OTHER/UMFPACK -I/home/anita/OpenSource/OpenSees/OTHER/SuperLU_3.0/SRC -c TclSectionTester.cpp -o TclSectionTester.o
cc1plus: warning: /home/anita/OpenSource/tcl8.5.11/unix/include/tcl.h: not a directory [enabled by default]
cc1plus: warning: /home/anita/OpenSource/tk8.5.11/unix/include/tk.h: not a directory [enabled by default]
In file included from /home/anita/OpenSource/OpenSees/SRC/nDarray/BJtensor.h:73:0,
from /home/anita/OpenSource/OpenSees/SRC/nDarray/Tensor.h:38,
from /home/anita/OpenSource/OpenSees/SRC/matrix/Vector.h:47,
from /home/anita/OpenSource/OpenSees/SRC/domain/component/DomainComponent.h:44,
from /home/anita/OpenSource/OpenSees/SRC/material/Material.h:40,
from /home/anita/OpenSource/OpenSees/SRC/material/section/SectionForceDeformation.h:40,
from TclSectionTester.cpp:36:
/home/anita/OpenSource/OpenSees/SRC/nDarray/nDarray.h:288:29: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
void print(char *name = "t", char *msg = "Hi there#") const;
^
/home/anita/OpenSource/OpenSees/SRC/nDarray/nDarray.h:288:46: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
void print(char *name = "t", char *msg = "Hi there#") const;
^
/home/anita/OpenSource/OpenSees/SRC/nDarray/nDarray.h:289:33: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
void printshort(char *msg = "Hi there#") const;
^
In file included from /home/anita/OpenSource/OpenSees/SRC/nDarray/BJtensor.h:74:0,
from /home/anita/OpenSource/OpenSees/SRC/nDarray/Tensor.h:38,
from /home/anita/OpenSource/OpenSees/SRC/matrix/Vector.h:47,
from /home/anita/OpenSource/OpenSees/SRC/domain/component/DomainComponent.h:44,
from /home/anita/OpenSource/OpenSees/SRC/material/Material.h:40,
from /home/anita/OpenSource/OpenSees/SRC/material/section/SectionForceDeformation.h:40,
from TclSectionTester.cpp:36:
/home/anita/OpenSource/OpenSees/SRC/nDarray/BJmatrix.h:83:43: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
void error(char *msg1, char *msg2 = ""); // private function
^
/home/anita/OpenSource/OpenSees/SRC/nDarray/BJmatrix.h:107:55: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
void write_standard(char *filename, char *msg = "");
^
TclSectionTester.cpp: In function ‘int TclSectionTester_setSection(ClientData, Tcl_Interp*, int, const char**)’:
TclSectionTester.cpp:116:75: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
Tcl_SetResult(interp, "WARNING builder has been destroyed", TCL_STATIC);
^
TclSectionTester.cpp:122:88: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
Tcl_SetResult(interp, "WARNING bad command - want: uniaxialTest matID?", TCL_STATIC);
^
TclSectionTester.cpp:129:98: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
Tcl_SetResult(interp, "WARNING could not read sectionID: uniaxialTest sectionID?", TCL_STATIC);
^
TclSectionTester.cpp:143:81: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
Tcl_SetResult(interp, "WARNING no material found with sectionID", TCL_STATIC);
^
TclSectionTester.cpp: In function ‘int TclSectionTester_setStrainSection(ClientData, Tcl_Interp*, int, const char**)’:
TclSectionTester.cpp:159:75: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
Tcl_SetResult(interp, "WARNING builder has been destroyed", TCL_STATIC);
^
TclSectionTester.cpp:165:89: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
Tcl_SetResult(interp, "WARNING bad command - want: strainNdTest strain?", TCL_STATIC);
^
TclSectionTester.cpp:174:94: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
Tcl_SetResult(interp, "WARNING could not read strain: strainNdTest strain?", TCL_STATIC);
^
TclSectionTester.cpp: In function ‘int TclSectionTester_getStressSection(ClientData, Tcl_Interp*, int, const char**)’:
TclSectionTester.cpp:202:93: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
Tcl_SetResult(interp, "WARNING no active Section - use uniaxialTest command", TCL_STATIC);
^
TclSectionTester.cpp: In function ‘int TclSectionTester_getTangSection(ClientData, Tcl_Interp*, int, const char**)’:
TclSectionTester.cpp:219:93: warning: deprecated conversion from string constant to ‘char*’ [-Wwrite-strings]
Tcl_SetResult(interp, "WARNING no active Section - use uniaxialTest command", TCL_STATIC);
^
make[2]: Entering directory `/home/anita/OpenSource/OpenSees/SRC/tcl'
Making commands.o from commands.cpp
/usr/bin/g++ -Wall -O3 -D_UNIX -ftemplate-depth-30 -D_LINUX -D_TCL85 -D_GLX -D_RELIABILITY -ffloat-store -I /home/anita/OpenSource/tcl8.5.11/unix/include/tcl.h -I /home/anita/OpenSource/tk8.5.11/unix/include/tk.h -I/home/anita/OpenSource/OpenSees/SRC/matrix -I/home/anita/OpenSource/OpenSees/SRC/nDarray -I/home/anita/OpenSource/OpenSees/SRC/tagged -I/home/anita/OpenSource/OpenSees/SRC/damage -I/home/anita/OpenSource/OpenSees/SRC/tcl -I/home/anita/OpenSource/OpenSees/SRC/material -I/home/anita/OpenSource/OpenSees/SRC/material/wall -I/home/anita/OpenSource/OpenSees/SRC/material/uniaxial -I/home/anita/OpenSource/OpenSees/SRC/material/uniaxial/fedeas -I/home/anita/OpenSource/OpenSees/SRC/material/uniaxial/drain -I/home/anita/OpenSource/OpenSees/SRC/material/uniaxial/snap -I/home/anita/OpenSource/OpenSees/SRC/material/uniaxial/PY -I/home/anita/OpenSource/OpenSees/SRC/material/uniaxial/limitState -I/home/anita/OpenSource/OpenSees/SRC/material/uniaxial/limitState/limitCurve -I/home/anita/OpenSource/OpenSees/SRC/material/uniaxial/backbone -I/home/anita/OpenSource/OpenSees/SRC/material/state -I/home/anita/OpenSource/OpenSees/SRC/material/state/stiffness -I/home/anita/OpenSource/OpenSees/SRC/material/state/unloading -I/home/anita/OpenSource/OpenSees/SRC/material/state/strength -I/home/anita/OpenSource/OpenSees/SRC/material/nD -I/home/anita/OpenSource/OpenSees/SRC/material/nD/soil -I/home/anita/OpenSource/OpenSees/SRC/material/nD/feap -I/home/anita/OpenSource/OpenSees/SRC/material/nD/Template3Dep -I/home/anita/OpenSource/OpenSees/SRC/material/nD/NewTemplate3Dep -I/home/anita/OpenSource/OpenSees/SRC/material/nD/FiniteDeformation -I/home/anita/OpenSource/OpenSees/SRC/material/nD/FiniteDeformation/fdFlow -I/home/anita/OpenSource/OpenSees/SRC/material/nD/FiniteDeformation/fdYield -I/home/anita/OpenSource/OpenSees/SRC/material/nD/FiniteDeformation/fdEvolution -I/home/anita/OpenSource/OpenSees/SRC/material/nD/cyclicSoil -I/home/anita/OpenSource/OpenSees/SRC/material/section -I/home/anita/OpenSource/OpenSees/SRC/material/section/repres/cell -I/home/anita/OpenSource/OpenSees/SRC/material/section/repres/patch -I/home/anita/OpenSource/OpenSees/SRC/material/section/repres/reinfBar -I/home/anita/OpenSource/OpenSees/SRC/material/section/repres/reinfLayer -I/home/anita/OpenSource/OpenSees/SRC/material/section/repres/section -I/home/anita/OpenSource/OpenSees/SRC/material/section/fiber -I/home/anita/OpenSource/OpenSees/SRC/material/section/integration -I/home/anita/OpenSource/OpenSees/SRC/material/section/yieldSurface -I/home/anita/OpenSource/OpenSees/SRC/material/yieldSurface/evolution -I/home/anita/OpenSource/OpenSees/SRC/material/yieldSurface/plasticHardeningMaterial -I/home/anita/OpenSource/OpenSees/SRC/material/yieldSurface/yieldSurfaceBC -I/home/anita/OpenSource/OpenSees/SRC/material/ce234 -I/home/anita/OpenSource/OpenSees/SRC/recorder -I/home/anita/OpenSource/OpenSees/SRC/recorder/response -I/home/anita/OpenSource/OpenSees/SRC/handler -I/home/anita/OpenSource/OpenSees/SRC/database -I/home/anita/OpenSource/OpenSees/SRC/renderer -I/home/anita/OpenSource/OpenSees/SRC/convergenceTest -I/home/anita/OpenSource/OpenSees/SRC/utility -I/home/anita/OpenSource/OpenSees/SRC/actor -I/home/anita/OpenSource/OpenSees/SRC/actor/channel -I/home/anita/OpenSource/OpenSees/SRC/actor/message -I/home/anita/OpenSource/OpenSees/SRC/actor/machineBroker -I/home/anita/OpenSource/OpenSees/SRC/actor/objectBroker -I/home/anita/OpenSource/OpenSees/SRC/actor/actor -I/home/anita/OpenSource/OpenSees/SRC/actor/shadow -I/home/anita/OpenSource/OpenSees/SRC/actor/address -I/home/anita/OpenSource/OpenSees/SRC/tagged/storage -I/home/anita/OpenSource/OpenSees/SRC/domain -I/home/anita/OpenSource/OpenSees/SRC/domain/domain -I/home/anita/OpenSource/OpenSees/SRC/domain/domain/single -I/home/anita/OpenSource/OpenSees/SRC/domain/component -I/home/anita/OpenSource/OpenSees/SRC/domain/component/storage -I/home/anita/OpenSource/OpenSees/SRC/domain/domain/partitioned -I/home/anita/OpenSource/OpenSees/SRC/domain/partitioner -I/home/anita/OpenSource/OpenSees/SRC/domain/loadBalancer -I/home/anita/OpenSource/OpenSees/SRC/domain/subdomain -I/home/anita/OpenSource/OpenSees/SRC/domain/region -I/home/anita/OpenSource/OpenSees/SRC/domain/node -I/home/anita/OpenSource/OpenSees/SRC/domain/load -I/home/anita/OpenSource/OpenSees/SRC/domain/pattern -I/home/anita/OpenSource/OpenSees/SRC/domain/groundMotion -I/home/anita/OpenSource/OpenSees/SRC/domain/constraints -I/home/anita/OpenSource/OpenSees/SRC/domain/region -I/home/anita/OpenSource/OpenSees/SRC/element -I/home/anita/OpenSource/OpenSees/SRC/element/beam2d -I/home/anita/OpenSource/OpenSees/SRC/element/beam3d -I/home/anita/OpenSource/OpenSees/SRC/element/truss -I/home/anita/OpenSource/OpenSees/SRC/element/fortran -I/home/anita/OpenSource/OpenSees/SRC/element/feap -I/home/anita/OpenSource/OpenSees/SRC/element/zeroLength -I/home/anita/OpenSource/OpenSees/SRC/element/fourNodeQuad -I/home/anita/OpenSource/OpenSees/SRC/element/beamWithHinges -I/home/anita/OpenSource/OpenSees/SRC/element/dispBeamColumn -I/home/anita/OpenSource/OpenSees/SRC/element/dispBeamColumnInt -I/home/anita/OpenSource/OpenSees/SRC/element/forceBeamColumn -I/home/anita/OpenSource/OpenSees/SRC/element/generic -I/home/anita/OpenSource/OpenSees/SRC/element/elasticBeamColumn -I/home/anita/OpenSource/OpenSees/SRC/element/8nbrick -I/home/anita/OpenSource/OpenSees/SRC/element/20nbrick -I/home/anita/OpenSource/OpenSees/SRC/element/27nbrick -I/home/anita/OpenSource/OpenSees/SRC/element/upU -I/home/anita/OpenSource/OpenSees/SRC/element/UP_ucdavis -I/home/anita/OpenSource/OpenSees/SRC/element/UP-ucsd -I/home/anita/OpenSource/OpenSees/SRC/element/TotalLagrangianFD20NodeBrick -I/home/anita/OpenSource/OpenSees/SRC/element/brick -I/home/anita/OpenSource/OpenSees/SRC/element/shell -I/home/anita/OpenSource/OpenSees/SRC/element/joint -I/home/anita/OpenSource/OpenSees/SRC/element/elastomericBearing -I/home/anita/OpenSource/OpenSees/SRC/element/frictionBearing -I/home/anita/OpenSource/OpenSees/SRC/element/frictionBearing/frictionModel -I/home/anita/OpenSource/OpenSees/SRC/element/adapter -I/home/anita/OpenSource/OpenSees/SRC/element/twoNodeLink -I/home/anita/OpenSource/OpenSees/SRC/element/updatedLagrangianBeamColumn -I/home/anita/OpenSource/OpenSees/SRC/analysis -I/home/anita/OpenSource/OpenSees/SRC/analysis/analysis -I/home/anita/OpenSource/OpenSees/SRC/analysis/handler -I/home/anita/OpenSource/OpenSees/SRC/analysis/numberer -I/home/anita/OpenSource/OpenSees/SRC/analysis/algorithm -I/home/anita/OpenSource/OpenSees/SRC/analysis/algorithm/eigenAlgo -I/home/anita/OpenSource/OpenSees/SRC/analysis/algorithm/equiSolnAlgo -I/home/anita/OpenSource/OpenSees/SRC/analysis/algorithm/equiSolnAlgo/accelerator -I/home/anita/OpenSource/OpenSees/SRC/analysis/algorithm/domainDecompAlgo -I/home/anita/OpenSource/OpenSees/SRC/analysis/model -I/home/anita/OpenSource/OpenSees/SRC/analysis/model/simple -I/home/anita/OpenSource/OpenSees/SRC/analysis/method -I/home/anita/OpenSource/OpenSees/SRC/analysis/fe_ele -I/home/anita/OpenSource/OpenSees/SRC/analysis/fe_ele/penalty -I/home/anita/OpenSource/OpenSees/SRC/analysis/fe_ele/lagrange -I/home/anita/OpenSource/OpenSees/SRC/analysis/fe_ele/transformation -I/home/anita/OpenSource/OpenSees/SRC/analysis/dof_grp -I/home/anita/OpenSource/OpenSees/SRC/analysis/integrator -I/home/anita/OpenSource/OpenSees/SRC/modelbuilder -I/home/anita/OpenSource/OpenSees/SRC/modelbuilder/triangle -I/home/anita/OpenSource/OpenSees/SRC/modelbuilder/tcl -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/eigenSOE -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/slowMatrix -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/bandSPD -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/profileSPD -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/fullGEN -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/bandGEN -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/sparseGEN -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/sparseSYM -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/petsc -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/umfGEN -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/diagonal -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/cg -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/BJsolvers -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/itpack -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/mumps -I/home/anita/OpenSource/OpenSees/SRC/system_of_eqn/eigenSOE -I/home/anita/OpenSource/OpenSees/SRC/graph/graph -I/home/anita/OpenSource/OpenSees/SRC/graph/numberer -I/home/anita/OpenSource/OpenSees/SRC/graph/partitioner -I/home/anita/OpenSource/OpenSees/SRC/element/nonlinearBeamColumn/element -I/home/anita/OpenSource/OpenSees/SRC/element/nonlinearBeamColumn/fiber -I/home/anita/OpenSource/OpenSees/SRC/element/nonlinearBeamColumn/matrixutil -I/home/anita/OpenSource/OpenSees/SRC/element/nonlinearBeamColumn/quadrule -I/home/anita/OpenSource/OpenSees/SRC/coordTransformation -I/home/anita/OpenSource/OpenSees/SRC/optimization -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/analysis -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/analysis/system -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/convergenceCheck -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/curvature -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/designPoint -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/direction -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/gFunction -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/hessianApproximation -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/meritFunction -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/misc -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/randomNumber -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/rootFinding -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/sensitivity -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/stepSize -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/transformation -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/telm -I/home/anita/OpenSource/OpenSees/SRC/reliability/domain -I/home/anita/OpenSource/OpenSees/SRC/reliability/domain/components -I/home/anita/OpenSource/OpenSees/SRC/reliability/domain/distributions -I/home/anita/OpenSource/OpenSees/SRC/reliability/domain/filter -I/home/anita/OpenSource/OpenSees/SRC/reliability/domain/modulatingFunction -I/home/anita/OpenSource/OpenSees/SRC/reliability/domain/spectrum -I/home/anita/OpenSource/OpenSees/SRC/reliability/domain/limitStateFunction -I/home/anita/OpenSource/OpenSees/SRC/reliability/optimization -I/home/anita/OpenSource/OpenSees/SRC/reliability/analysis/telm -I/home/anita/OpenSource/OpenSees/SRC/reliability/FEsensitivity -I/home/anita/OpenSource/OpenSees/SRC/reliability/tcl -I/home/anita/OpenSource/OpenSees/SRC/unittest -I/home/anita/OpenSource/OpenSees/SRC/api -I/home/anita/OpenSource/OpenSees/SRC -I/home/anita/OpenSource/OpenSees/OTHER/SuperLU_3.0/SRC -I/home/anita/OpenSource/OpenSees/SRC/package -I/home/anita/OpenSource/OpenSees/SRC/../OTHER/AMD -I/usr/include -I/include -I/usr/include/cxx -I/home/anita/OpenSource/include -I/home/anita/OpenSource/blitz -I/home/anita/OpenSource/OpenSees/OTHER/UMFPACK -I/home/anita/OpenSource/OpenSees/OTHER/SuperLU_3.0/SRC -c commands.cpp -o commands.o
cc1plus: warning: /home/anita/OpenSource/tcl8.5.11/unix/include/tcl.h: not a directory [enabled by default]
cc1plus: warning: /home/anita/OpenSource/tk8.5.11/unix/include/tk.h: not a directory [enabled by default]
commands.cpp:43:17: fatal error: tcl.h: No such file or directory
#include <tcl.h>
^
compilation terminated.
make[2]: *** [commands.o] Error 1
make[2]: Leaving directory `/home/anita/OpenSource/OpenSees/SRC/tcl'
make[1]: *** [tk] Error 2
make[1]: Leaving directory `/home/anita/OpenSource/OpenSees/SRC/modelbuilder/tcl'
make: *** [all] Error 2
anita@anita-desktop:~/OpenSource/OpenSees$ /usr/bin/g++ -Wall -O3 -D_UNIX -ftemplate-depth-30 -D_LINUX -D_TCL85 -D_GLX -D_RELIABILITY -ffloat-store /usr/bin/g++ -Wall -O3 -D_UNIX -ftemplate-depth-30 -D_LINUX -D_TCL85 -D_GLX -D_RELIABILITY -ffloat-store
/usr/bin/ld: warning: Cannot create .eh_frame_hdr section, --eh-frame-hdr ignored.
/usr/bin/ld: error in /usr/bin/g++(.eh_frame); no .eh_frame_hdr table will be created.
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 0 has invalid symbol index 11
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 1 has invalid symbol index 12
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 2 has invalid symbol index 2
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 3 has invalid symbol index 2
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 4 has invalid symbol index 11
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 5 has invalid symbol index 13
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 6 has invalid symbol index 13
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 7 has invalid symbol index 13
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 8 has invalid symbol index 12
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 9 has invalid symbol index 13
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 10 has invalid symbol index 13
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 11 has invalid symbol index 13
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 12 has invalid symbol index 13
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 13 has invalid symbol index 13
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 14 has invalid symbol index 13
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 15 has invalid symbol index 13
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 16 has invalid symbol index 13
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 17 has invalid symbol index 13
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 18 has invalid symbol index 13
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 19 has invalid symbol index 13
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 20 has invalid symbol index 13
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_info): relocation 21 has invalid symbol index 22
/usr/bin/ld: /usr/lib/debug/usr/lib/i386-linux-gnu/crt1.o(.debug_line): relocation 0 has invalid symbol index 2
/usr/lib/gcc/i686-linux-gnu/4.8/../../../i386-linux-gnu/crt1.o: In function `_start':
(.text+0x18): undefined reference to `main'
collect2: error: ld returned 1 exit status
anita@anita-desktop:~/OpenSource/OpenSees$
fmk
Site Admin
Posts: 5884
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Re: Issues in Installing OpenSees2.2.2 and tcl/tk8.5.11

Post by fmk »

start with an EC2 Makefile.
it cannot find the tcl.h file .. you need to specify where it is by setting the directory pathj TCL_INCLUDES to point to the directory NOT the files .
anitha
Posts: 26
Joined: Mon Jun 16, 2014 12:36 am
Location: cdac

Re: Issues in Installing OpenSees2.2.2 and tcl/tk8.5.11

Post by anitha »

Thank you sir...still i failed to install opensees... due to CXX is not included in machine..Still i'll try after including CXX..once again thanks for ur reply..
anitha
Posts: 26
Joined: Mon Jun 16, 2014 12:36 am
Location: cdac

Re: Issues in Installing OpenSees2.2.2 and tcl/tk8.5.11

Post by anitha »

Respected sir,
Still i'm getting compiling error while installing OpenSees. This is obtained compiling error.please suggest me to install.
g++ -D_LINUX -D_UNIX -D_TCL85 -I/home/panitha/OpenSource/usr/local/include -I/home/panitha/OpenSource/OpenSees/SRC/matrix -I/home/panitha/OpenSource/OpenSees/SRC/nDarray -I/home/panitha/OpenSource/OpenSees/SRC/tagged -I/home/panitha/OpenSource/OpenSees/SRC/damage -I/home/panitha/OpenSource/OpenSees/SRC/tcl -I/home/panitha/OpenSource/OpenSees/SRC/material -I/home/panitha/OpenSource/OpenSees/SRC/material/wall -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial/fedeas -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial/drain -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial/snap -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial/PY -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial/limitState -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial/limitState/limitCurve -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial/backbone -I/home/panitha/OpenSource/OpenSees/SRC/material/state -I/home/panitha/OpenSource/OpenSees/SRC/material/state/stiffness -I/home/panitha/OpenSource/OpenSees/SRC/material/state/unloading -I/home/panitha/OpenSource/OpenSees/SRC/material/state/strength -I/home/panitha/OpenSource/OpenSees/SRC/material/nD -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/soil -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/feap -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/Template3Dep -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/NewTemplate3Dep -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/FiniteDeformation -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/FiniteDeformation/fdFlow -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/FiniteDeformation/fdYield -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/FiniteDeformation/fdEvolution -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/cyclicSoil -I/home/panitha/OpenSource/OpenSees/SRC/material/section -I/home/panitha/OpenSource/OpenSees/SRC/material/section/repres/cell -I/home/panitha/OpenSource/OpenSees/SRC/material/section/repres/patch -I/home/panitha/OpenSource/OpenSees/SRC/material/section/repres/reinfBar -I/home/panitha/OpenSource/OpenSees/SRC/material/section/repres/reinfLayer -I/home/panitha/OpenSource/OpenSees/SRC/material/section/repres/section -I/home/panitha/OpenSource/OpenSees/SRC/material/section/fiber -I/home/panitha/OpenSource/OpenSees/SRC/material/section/integration -I/home/panitha/OpenSource/OpenSees/SRC/material/section/yieldSurface -I/home/panitha/OpenSource/OpenSees/SRC/material/yieldSurface/evolution -I/home/panitha/OpenSource/OpenSees/SRC/material/yieldSurface/plasticHardeningMaterial -I/home/panitha/OpenSource/OpenSees/SRC/material/yieldSurface/yieldSurfaceBC -I/home/panitha/OpenSource/OpenSees/SRC/material/ce234 -I/home/panitha/OpenSource/OpenSees/SRC/recorder -I/home/panitha/OpenSource/OpenSees/SRC/recorder/response -I/home/panitha/OpenSource/OpenSees/SRC/handler -I/home/panitha/OpenSource/OpenSees/SRC/database -I/home/panitha/OpenSource/OpenSees/SRC/renderer -I/home/panitha/OpenSource/OpenSees/SRC/convergenceTest -I/home/panitha/OpenSource/OpenSees/SRC/utility -I/home/panitha/OpenSource/OpenSees/SRC/actor -I/home/panitha/OpenSource/OpenSees/SRC/actor/channel -I/home/panitha/OpenSource/OpenSees/SRC/actor/message -I/home/panitha/OpenSource/OpenSees/SRC/actor/machineBroker -I/home/panitha/OpenSource/OpenSees/SRC/actor/objectBroker -I/home/panitha/OpenSource/OpenSees/SRC/actor/actor -I/home/panitha/OpenSource/OpenSees/SRC/actor/shadow -I/home/panitha/OpenSource/OpenSees/SRC/actor/address -I/home/panitha/OpenSource/OpenSees/SRC/tagged/storage -I/home/panitha/OpenSource/OpenSees/SRC/domain -I/home/panitha/OpenSource/OpenSees/SRC/domain/domain -I/home/panitha/OpenSource/OpenSees/SRC/domain/domain/single -I/home/panitha/OpenSource/OpenSees/SRC/domain/component -I/home/panitha/OpenSource/OpenSees/SRC/domain/component/storage -I/home/panitha/OpenSource/OpenSees/SRC/domain/domain/partitioned -I/home/panitha/OpenSource/OpenSees/SRC/domain/partitioner -I/home/panitha/OpenSource/OpenSees/SRC/domain/loadBalancer -I/home/panitha/OpenSource/OpenSees/SRC/domain/subdomain -I/home/panitha/OpenSource/OpenSees/SRC/domain/region -I/home/panitha/OpenSource/OpenSees/SRC/domain/node -I/home/panitha/OpenSource/OpenSees/SRC/domain/load -I/home/panitha/OpenSource/OpenSees/SRC/domain/pattern -I/home/panitha/OpenSource/OpenSees/SRC/domain/groundMotion -I/home/panitha/OpenSource/OpenSees/SRC/domain/constraints -I/home/panitha/OpenSource/OpenSees/SRC/domain/region -I/home/panitha/OpenSource/OpenSees/SRC/element -I/home/panitha/OpenSource/OpenSees/SRC/element/beam2d -I/home/panitha/OpenSource/OpenSees/SRC/element/beam3d -I/home/panitha/OpenSource/OpenSees/SRC/element/truss -I/home/panitha/OpenSource/OpenSees/SRC/element/fortran -I/home/panitha/OpenSource/OpenSees/SRC/element/feap -I/home/panitha/OpenSource/OpenSees/SRC/element/zeroLength -I/home/panitha/OpenSource/OpenSees/SRC/element/fourNodeQuad -I/home/panitha/OpenSource/OpenSees/SRC/element/beamWithHinges -I/home/panitha/OpenSource/OpenSees/SRC/element/dispBeamColumn -I/home/panitha/OpenSource/OpenSees/SRC/element/dispBeamColumnInt -I/home/panitha/OpenSource/OpenSees/SRC/element/forceBeamColumn -I/home/panitha/OpenSource/OpenSees/SRC/element/generic -I/home/panitha/OpenSource/OpenSees/SRC/element/elasticBeamColumn -I/home/panitha/OpenSource/OpenSees/SRC/element/8nbrick -I/home/panitha/OpenSource/OpenSees/SRC/element/20nbrick -I/home/panitha/OpenSource/OpenSees/SRC/element/27nbrick -I/home/panitha/OpenSource/OpenSees/SRC/element/upU -I/home/panitha/OpenSource/OpenSees/SRC/element/UP_ucdavis -I/home/panitha/OpenSource/OpenSees/SRC/element/UP-ucsd -I/home/panitha/OpenSource/OpenSees/SRC/element/TotalLagrangianFD20NodeBrick -I/home/panitha/OpenSource/OpenSees/SRC/element/brick -I/home/panitha/OpenSource/OpenSees/SRC/element/shell -I/home/panitha/OpenSource/OpenSees/SRC/element/joint -I/home/panitha/OpenSource/OpenSees/SRC/element/elastomericBearing -I/home/panitha/OpenSource/OpenSees/SRC/element/frictionBearing -I/home/panitha/OpenSource/OpenSees/SRC/element/frictionBearing/frictionModel -I/home/panitha/OpenSource/OpenSees/SRC/element/adapter -I/home/panitha/OpenSource/OpenSees/SRC/element/twoNodeLink -I/home/panitha/OpenSource/OpenSees/SRC/element/updatedLagrangianBeamColumn -I/home/panitha/OpenSource/OpenSees/SRC/analysis -I/home/panitha/OpenSource/OpenSees/SRC/analysis/analysis -I/home/panitha/OpenSource/OpenSees/SRC/analysis/handler -I/home/panitha/OpenSource/OpenSees/SRC/analysis/numberer -I/home/panitha/OpenSource/OpenSees/SRC/analysis/algorithm -I/home/panitha/OpenSource/OpenSees/SRC/analysis/algorithm/eigenAlgo -I/home/panitha/OpenSource/OpenSees/SRC/analysis/algorithm/equiSolnAlgo -I/home/panitha/OpenSource/OpenSees/SRC/analysis/algorithm/equiSolnAlgo/accelerator -I/home/panitha/OpenSource/OpenSees/SRC/analysis/algorithm/domainDecompAlgo -I/home/panitha/OpenSource/OpenSees/SRC/analysis/model -I/home/panitha/OpenSource/OpenSees/SRC/analysis/model/simple -I/home/panitha/OpenSource/OpenSees/SRC/analysis/method -I/home/panitha/OpenSource/OpenSees/SRC/analysis/fe_ele -I/home/panitha/OpenSource/OpenSees/SRC/analysis/fe_ele/penalty -I/home/panitha/OpenSource/OpenSees/SRC/analysis/fe_ele/lagrange -I/home/panitha/OpenSource/OpenSees/SRC/analysis/fe_ele/transformation -I/home/panitha/OpenSource/OpenSees/SRC/analysis/dof_grp -I/home/panitha/OpenSource/OpenSees/SRC/analysis/integrator -I/home/panitha/OpenSource/OpenSees/SRC/modelbuilder -I/home/panitha/OpenSource/OpenSees/SRC/modelbuilder/triangle -I/home/panitha/OpenSource/OpenSees/SRC/modelbuilder/tcl -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/eigenSOE -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/slowMatrix -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/bandSPD -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/profileSPD -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/fullGEN -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/bandGEN -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/sparseGEN -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/sparseSYM -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/petsc -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/umfGEN -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/diagonal -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/cg -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/BJsolvers -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/itpack -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/mumps -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/eigenSOE -I/home/panitha/OpenSource/OpenSees/SRC/graph/graph -I/home/panitha/OpenSource/OpenSees/SRC/graph/numberer -I/home/panitha/OpenSource/OpenSees/SRC/graph/partitioner -I/home/panitha/OpenSource/OpenSees/SRC/element/nonlinearBeamColumn/element -I/home/panitha/OpenSource/OpenSees/SRC/element/nonlinearBeamColumn/fiber -I/home/panitha/OpenSource/OpenSees/SRC/element/nonlinearBeamColumn/matrixutil -I/home/panitha/OpenSource/OpenSees/SRC/element/nonlinearBeamColumn/quadrule -I/home/panitha/OpenSource/OpenSees/SRC/coordTransformation -I/home/panitha/OpenSource/OpenSees/SRC/optimization -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/analysis -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/analysis/system -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/convergenceCheck -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/curvature -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/designPoint -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/direction -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/gFunction -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/hessianApproximation -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/meritFunction -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/misc -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/randomNumber -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/rootFinding -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/sensitivity -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/stepSize -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/transformation -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/telm -I/home/panitha/OpenSource/OpenSees/SRC/reliability/domain -I/home/panitha/OpenSource/OpenSees/SRC/reliability/domain/components -I/home/panitha/OpenSource/OpenSees/SRC/reliability/domain/distributions -I/home/panitha/OpenSource/OpenSees/SRC/reliability/domain/filter -I/home/panitha/OpenSource/OpenSees/SRC/reliability/domain/modulatingFunction -I/home/panitha/OpenSource/OpenSees/SRC/reliability/domain/spectrum -I/home/panitha/OpenSource/OpenSees/SRC/reliability/domain/limitStateFunction -I/home/panitha/OpenSource/OpenSees/SRC/reliability/optimization -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/telm -I/home/panitha/OpenSource/OpenSees/SRC/reliability/FEsensitivity -I/home/panitha/OpenSource/OpenSees/SRC/reliability/tcl -I/home/panitha/OpenSource/OpenSees/SRC/unittest -I/home/panitha/OpenSource/OpenSees/SRC/api -I/home/panitha/OpenSource/OpenSees/SRC -I/home/panitha/OpenSource/OpenSees/OTHER/SuperLU_3.0/SRC -I/home/panitha/OpenSource/OpenSees/SRC/package -I/home/panitha/OpenSource/OpenSees/SRC/../OTHER/AMD -I/usr/include -I/include -I/usr/include/cxx -I/home/panitha/OpenSource/include -c tclMain.cpp -o tclMain.o
Making tclAppInit.o from tclAppInit.cpp
g++ -D_LINUX -D_UNIX -D_TCL85 -I/home/panitha/OpenSource/usr/local/include -I/home/panitha/OpenSource/OpenSees/SRC/matrix -I/home/panitha/OpenSource/OpenSees/SRC/nDarray -I/home/panitha/OpenSource/OpenSees/SRC/tagged -I/home/panitha/OpenSource/OpenSees/SRC/damage -I/home/panitha/OpenSource/OpenSees/SRC/tcl -I/home/panitha/OpenSource/OpenSees/SRC/material -I/home/panitha/OpenSource/OpenSees/SRC/material/wall -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial/fedeas -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial/drain -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial/snap -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial/PY -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial/limitState -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial/limitState/limitCurve -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial/backbone -I/home/panitha/OpenSource/OpenSees/SRC/material/state -I/home/panitha/OpenSource/OpenSees/SRC/material/state/stiffness -I/home/panitha/OpenSource/OpenSees/SRC/material/state/unloading -I/home/panitha/OpenSource/OpenSees/SRC/material/state/strength -I/home/panitha/OpenSource/OpenSees/SRC/material/nD -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/soil -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/feap -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/Template3Dep -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/NewTemplate3Dep -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/FiniteDeformation -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/FiniteDeformation/fdFlow -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/FiniteDeformation/fdYield -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/FiniteDeformation/fdEvolution -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/cyclicSoil -I/home/panitha/OpenSource/OpenSees/SRC/material/section -I/home/panitha/OpenSource/OpenSees/SRC/material/section/repres/cell -I/home/panitha/OpenSource/OpenSees/SRC/material/section/repres/patch -I/home/panitha/OpenSource/OpenSees/SRC/material/section/repres/reinfBar -I/home/panitha/OpenSource/OpenSees/SRC/material/section/repres/reinfLayer -I/home/panitha/OpenSource/OpenSees/SRC/material/section/repres/section -I/home/panitha/OpenSource/OpenSees/SRC/material/section/fiber -I/home/panitha/OpenSource/OpenSees/SRC/material/section/integration -I/home/panitha/OpenSource/OpenSees/SRC/material/section/yieldSurface -I/home/panitha/OpenSource/OpenSees/SRC/material/yieldSurface/evolution -I/home/panitha/OpenSource/OpenSees/SRC/material/yieldSurface/plasticHardeningMaterial -I/home/panitha/OpenSource/OpenSees/SRC/material/yieldSurface/yieldSurfaceBC -I/home/panitha/OpenSource/OpenSees/SRC/material/ce234 -I/home/panitha/OpenSource/OpenSees/SRC/recorder -I/home/panitha/OpenSource/OpenSees/SRC/recorder/response -I/home/panitha/OpenSource/OpenSees/SRC/handler -I/home/panitha/OpenSource/OpenSees/SRC/database -I/home/panitha/OpenSource/OpenSees/SRC/renderer -I/home/panitha/OpenSource/OpenSees/SRC/convergenceTest -I/home/panitha/OpenSource/OpenSees/SRC/utility -I/home/panitha/OpenSource/OpenSees/SRC/actor -I/home/panitha/OpenSource/OpenSees/SRC/actor/channel -I/home/panitha/OpenSource/OpenSees/SRC/actor/message -I/home/panitha/OpenSource/OpenSees/SRC/actor/machineBroker -I/home/panitha/OpenSource/OpenSees/SRC/actor/objectBroker -I/home/panitha/OpenSource/OpenSees/SRC/actor/actor -I/home/panitha/OpenSource/OpenSees/SRC/actor/shadow -I/home/panitha/OpenSource/OpenSees/SRC/actor/address -I/home/panitha/OpenSource/OpenSees/SRC/tagged/storage -I/home/panitha/OpenSource/OpenSees/SRC/domain -I/home/panitha/OpenSource/OpenSees/SRC/domain/domain -I/home/panitha/OpenSource/OpenSees/SRC/domain/domain/single -I/home/panitha/OpenSource/OpenSees/SRC/domain/component -I/home/panitha/OpenSource/OpenSees/SRC/domain/component/storage -I/home/panitha/OpenSource/OpenSees/SRC/domain/domain/partitioned -I/home/panitha/OpenSource/OpenSees/SRC/domain/partitioner -I/home/panitha/OpenSource/OpenSees/SRC/domain/loadBalancer -I/home/panitha/OpenSource/OpenSees/SRC/domain/subdomain -I/home/panitha/OpenSource/OpenSees/SRC/domain/region -I/home/panitha/OpenSource/OpenSees/SRC/domain/node -I/home/panitha/OpenSource/OpenSees/SRC/domain/load -I/home/panitha/OpenSource/OpenSees/SRC/domain/pattern -I/home/panitha/OpenSource/OpenSees/SRC/domain/groundMotion -I/home/panitha/OpenSource/OpenSees/SRC/domain/constraints -I/home/panitha/OpenSource/OpenSees/SRC/domain/region -I/home/panitha/OpenSource/OpenSees/SRC/element -I/home/panitha/OpenSource/OpenSees/SRC/element/beam2d -I/home/panitha/OpenSource/OpenSees/SRC/element/beam3d -I/home/panitha/OpenSource/OpenSees/SRC/element/truss -I/home/panitha/OpenSource/OpenSees/SRC/element/fortran -I/home/panitha/OpenSource/OpenSees/SRC/element/feap -I/home/panitha/OpenSource/OpenSees/SRC/element/zeroLength -I/home/panitha/OpenSource/OpenSees/SRC/element/fourNodeQuad -I/home/panitha/OpenSource/OpenSees/SRC/element/beamWithHinges -I/home/panitha/OpenSource/OpenSees/SRC/element/dispBeamColumn -I/home/panitha/OpenSource/OpenSees/SRC/element/dispBeamColumnInt -I/home/panitha/OpenSource/OpenSees/SRC/element/forceBeamColumn -I/home/panitha/OpenSource/OpenSees/SRC/element/generic -I/home/panitha/OpenSource/OpenSees/SRC/element/elasticBeamColumn -I/home/panitha/OpenSource/OpenSees/SRC/element/8nbrick -I/home/panitha/OpenSource/OpenSees/SRC/element/20nbrick -I/home/panitha/OpenSource/OpenSees/SRC/element/27nbrick -I/home/panitha/OpenSource/OpenSees/SRC/element/upU -I/home/panitha/OpenSource/OpenSees/SRC/element/UP_ucdavis -I/home/panitha/OpenSource/OpenSees/SRC/element/UP-ucsd -I/home/panitha/OpenSource/OpenSees/SRC/element/TotalLagrangianFD20NodeBrick -I/home/panitha/OpenSource/OpenSees/SRC/element/brick -I/home/panitha/OpenSource/OpenSees/SRC/element/shell -I/home/panitha/OpenSource/OpenSees/SRC/element/joint -I/home/panitha/OpenSource/OpenSees/SRC/element/elastomericBearing -I/home/panitha/OpenSource/OpenSees/SRC/element/frictionBearing -I/home/panitha/OpenSource/OpenSees/SRC/element/frictionBearing/frictionModel -I/home/panitha/OpenSource/OpenSees/SRC/element/adapter -I/home/panitha/OpenSource/OpenSees/SRC/element/twoNodeLink -I/home/panitha/OpenSource/OpenSees/SRC/element/updatedLagrangianBeamColumn -I/home/panitha/OpenSource/OpenSees/SRC/analysis -I/home/panitha/OpenSource/OpenSees/SRC/analysis/analysis -I/home/panitha/OpenSource/OpenSees/SRC/analysis/handler -I/home/panitha/OpenSource/OpenSees/SRC/analysis/numberer -I/home/panitha/OpenSource/OpenSees/SRC/analysis/algorithm -I/home/panitha/OpenSource/OpenSees/SRC/analysis/algorithm/eigenAlgo -I/home/panitha/OpenSource/OpenSees/SRC/analysis/algorithm/equiSolnAlgo -I/home/panitha/OpenSource/OpenSees/SRC/analysis/algorithm/equiSolnAlgo/accelerator -I/home/panitha/OpenSource/OpenSees/SRC/analysis/algorithm/domainDecompAlgo -I/home/panitha/OpenSource/OpenSees/SRC/analysis/model -I/home/panitha/OpenSource/OpenSees/SRC/analysis/model/simple -I/home/panitha/OpenSource/OpenSees/SRC/analysis/method -I/home/panitha/OpenSource/OpenSees/SRC/analysis/fe_ele -I/home/panitha/OpenSource/OpenSees/SRC/analysis/fe_ele/penalty -I/home/panitha/OpenSource/OpenSees/SRC/analysis/fe_ele/lagrange -I/home/panitha/OpenSource/OpenSees/SRC/analysis/fe_ele/transformation -I/home/panitha/OpenSource/OpenSees/SRC/analysis/dof_grp -I/home/panitha/OpenSource/OpenSees/SRC/analysis/integrator -I/home/panitha/OpenSource/OpenSees/SRC/modelbuilder -I/home/panitha/OpenSource/OpenSees/SRC/modelbuilder/triangle -I/home/panitha/OpenSource/OpenSees/SRC/modelbuilder/tcl -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/eigenSOE -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/slowMatrix -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/bandSPD -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/profileSPD -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/fullGEN -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/bandGEN -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/sparseGEN -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/sparseSYM -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/petsc -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/umfGEN -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/diagonal -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/cg -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/BJsolvers -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/itpack -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/mumps -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/eigenSOE -I/home/panitha/OpenSource/OpenSees/SRC/graph/graph -I/home/panitha/OpenSource/OpenSees/SRC/graph/numberer -I/home/panitha/OpenSource/OpenSees/SRC/graph/partitioner -I/home/panitha/OpenSource/OpenSees/SRC/element/nonlinearBeamColumn/element -I/home/panitha/OpenSource/OpenSees/SRC/element/nonlinearBeamColumn/fiber -I/home/panitha/OpenSource/OpenSees/SRC/element/nonlinearBeamColumn/matrixutil -I/home/panitha/OpenSource/OpenSees/SRC/element/nonlinearBeamColumn/quadrule -I/home/panitha/OpenSource/OpenSees/SRC/coordTransformation -I/home/panitha/OpenSource/OpenSees/SRC/optimization -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/analysis -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/analysis/system -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/convergenceCheck -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/curvature -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/designPoint -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/direction -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/gFunction -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/hessianApproximation -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/meritFunction -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/misc -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/randomNumber -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/rootFinding -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/sensitivity -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/stepSize -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/transformation -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/telm -I/home/panitha/OpenSource/OpenSees/SRC/reliability/domain -I/home/panitha/OpenSource/OpenSees/SRC/reliability/domain/components -I/home/panitha/OpenSource/OpenSees/SRC/reliability/domain/distributions -I/home/panitha/OpenSource/OpenSees/SRC/reliability/domain/filter -I/home/panitha/OpenSource/OpenSees/SRC/reliability/domain/modulatingFunction -I/home/panitha/OpenSource/OpenSees/SRC/reliability/domain/spectrum -I/home/panitha/OpenSource/OpenSees/SRC/reliability/domain/limitStateFunction -I/home/panitha/OpenSource/OpenSees/SRC/reliability/optimization -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/telm -I/home/panitha/OpenSource/OpenSees/SRC/reliability/FEsensitivity -I/home/panitha/OpenSource/OpenSees/SRC/reliability/tcl -I/home/panitha/OpenSource/OpenSees/SRC/unittest -I/home/panitha/OpenSource/OpenSees/SRC/api -I/home/panitha/OpenSource/OpenSees/SRC -I/home/panitha/OpenSource/OpenSees/OTHER/SuperLU_3.0/SRC -I/home/panitha/OpenSource/OpenSees/SRC/package -I/home/panitha/OpenSource/OpenSees/SRC/../OTHER/AMD -I/usr/include -I/include -I/usr/include/cxx -I/home/panitha/OpenSource/include -c tclAppInit.cpp -o tclAppInit.o
make[1]: Leaving directory `/home/panitha/OpenSource/OpenSees/SRC/tcl'
make[1]: Entering directory `/home/panitha/OpenSource/OpenSees/SRC/modelbuilder/tcl'
make[2]: Entering directory `/home/panitha/OpenSource/OpenSees/SRC/tcl'
Making tkMain.o from tkMain.cpp
g++ -D_LINUX -D_UNIX -D_TCL85 -I/home/panitha/OpenSource/usr/local/include -I/home/panitha/OpenSource/OpenSees/SRC/matrix -I/home/panitha/OpenSource/OpenSees/SRC/nDarray -I/home/panitha/OpenSource/OpenSees/SRC/tagged -I/home/panitha/OpenSource/OpenSees/SRC/damage -I/home/panitha/OpenSource/OpenSees/SRC/tcl -I/home/panitha/OpenSource/OpenSees/SRC/material -I/home/panitha/OpenSource/OpenSees/SRC/material/wall -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial/fedeas -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial/drain -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial/snap -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial/PY -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial/limitState -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial/limitState/limitCurve -I/home/panitha/OpenSource/OpenSees/SRC/material/uniaxial/backbone -I/home/panitha/OpenSource/OpenSees/SRC/material/state -I/home/panitha/OpenSource/OpenSees/SRC/material/state/stiffness -I/home/panitha/OpenSource/OpenSees/SRC/material/state/unloading -I/home/panitha/OpenSource/OpenSees/SRC/material/state/strength -I/home/panitha/OpenSource/OpenSees/SRC/material/nD -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/soil -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/feap -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/Template3Dep -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/NewTemplate3Dep -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/FiniteDeformation -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/FiniteDeformation/fdFlow -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/FiniteDeformation/fdYield -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/FiniteDeformation/fdEvolution -I/home/panitha/OpenSource/OpenSees/SRC/material/nD/cyclicSoil -I/home/panitha/OpenSource/OpenSees/SRC/material/section -I/home/panitha/OpenSource/OpenSees/SRC/material/section/repres/cell -I/home/panitha/OpenSource/OpenSees/SRC/material/section/repres/patch -I/home/panitha/OpenSource/OpenSees/SRC/material/section/repres/reinfBar -I/home/panitha/OpenSource/OpenSees/SRC/material/section/repres/reinfLayer -I/home/panitha/OpenSource/OpenSees/SRC/material/section/repres/section -I/home/panitha/OpenSource/OpenSees/SRC/material/section/fiber -I/home/panitha/OpenSource/OpenSees/SRC/material/section/integration -I/home/panitha/OpenSource/OpenSees/SRC/material/section/yieldSurface -I/home/panitha/OpenSource/OpenSees/SRC/material/yieldSurface/evolution -I/home/panitha/OpenSource/OpenSees/SRC/material/yieldSurface/plasticHardeningMaterial -I/home/panitha/OpenSource/OpenSees/SRC/material/yieldSurface/yieldSurfaceBC -I/home/panitha/OpenSource/OpenSees/SRC/material/ce234 -I/home/panitha/OpenSource/OpenSees/SRC/recorder -I/home/panitha/OpenSource/OpenSees/SRC/recorder/response -I/home/panitha/OpenSource/OpenSees/SRC/handler -I/home/panitha/OpenSource/OpenSees/SRC/database -I/home/panitha/OpenSource/OpenSees/SRC/renderer -I/home/panitha/OpenSource/OpenSees/SRC/convergenceTest -I/home/panitha/OpenSource/OpenSees/SRC/utility -I/home/panitha/OpenSource/OpenSees/SRC/actor -I/home/panitha/OpenSource/OpenSees/SRC/actor/channel -I/home/panitha/OpenSource/OpenSees/SRC/actor/message -I/home/panitha/OpenSource/OpenSees/SRC/actor/machineBroker -I/home/panitha/OpenSource/OpenSees/SRC/actor/objectBroker -I/home/panitha/OpenSource/OpenSees/SRC/actor/actor -I/home/panitha/OpenSource/OpenSees/SRC/actor/shadow -I/home/panitha/OpenSource/OpenSees/SRC/actor/address -I/home/panitha/OpenSource/OpenSees/SRC/tagged/storage -I/home/panitha/OpenSource/OpenSees/SRC/domain -I/home/panitha/OpenSource/OpenSees/SRC/domain/domain -I/home/panitha/OpenSource/OpenSees/SRC/domain/domain/single -I/home/panitha/OpenSource/OpenSees/SRC/domain/component -I/home/panitha/OpenSource/OpenSees/SRC/domain/component/storage -I/home/panitha/OpenSource/OpenSees/SRC/domain/domain/partitioned -I/home/panitha/OpenSource/OpenSees/SRC/domain/partitioner -I/home/panitha/OpenSource/OpenSees/SRC/domain/loadBalancer -I/home/panitha/OpenSource/OpenSees/SRC/domain/subdomain -I/home/panitha/OpenSource/OpenSees/SRC/domain/region -I/home/panitha/OpenSource/OpenSees/SRC/domain/node -I/home/panitha/OpenSource/OpenSees/SRC/domain/load -I/home/panitha/OpenSource/OpenSees/SRC/domain/pattern -I/home/panitha/OpenSource/OpenSees/SRC/domain/groundMotion -I/home/panitha/OpenSource/OpenSees/SRC/domain/constraints -I/home/panitha/OpenSource/OpenSees/SRC/domain/region -I/home/panitha/OpenSource/OpenSees/SRC/element -I/home/panitha/OpenSource/OpenSees/SRC/element/beam2d -I/home/panitha/OpenSource/OpenSees/SRC/element/beam3d -I/home/panitha/OpenSource/OpenSees/SRC/element/truss -I/home/panitha/OpenSource/OpenSees/SRC/element/fortran -I/home/panitha/OpenSource/OpenSees/SRC/element/feap -I/home/panitha/OpenSource/OpenSees/SRC/element/zeroLength -I/home/panitha/OpenSource/OpenSees/SRC/element/fourNodeQuad -I/home/panitha/OpenSource/OpenSees/SRC/element/beamWithHinges -I/home/panitha/OpenSource/OpenSees/SRC/element/dispBeamColumn -I/home/panitha/OpenSource/OpenSees/SRC/element/dispBeamColumnInt -I/home/panitha/OpenSource/OpenSees/SRC/element/forceBeamColumn -I/home/panitha/OpenSource/OpenSees/SRC/element/generic -I/home/panitha/OpenSource/OpenSees/SRC/element/elasticBeamColumn -I/home/panitha/OpenSource/OpenSees/SRC/element/8nbrick -I/home/panitha/OpenSource/OpenSees/SRC/element/20nbrick -I/home/panitha/OpenSource/OpenSees/SRC/element/27nbrick -I/home/panitha/OpenSource/OpenSees/SRC/element/upU -I/home/panitha/OpenSource/OpenSees/SRC/element/UP_ucdavis -I/home/panitha/OpenSource/OpenSees/SRC/element/UP-ucsd -I/home/panitha/OpenSource/OpenSees/SRC/element/TotalLagrangianFD20NodeBrick -I/home/panitha/OpenSource/OpenSees/SRC/element/brick -I/home/panitha/OpenSource/OpenSees/SRC/element/shell -I/home/panitha/OpenSource/OpenSees/SRC/element/joint -I/home/panitha/OpenSource/OpenSees/SRC/element/elastomericBearing -I/home/panitha/OpenSource/OpenSees/SRC/element/frictionBearing -I/home/panitha/OpenSource/OpenSees/SRC/element/frictionBearing/frictionModel -I/home/panitha/OpenSource/OpenSees/SRC/element/adapter -I/home/panitha/OpenSource/OpenSees/SRC/element/twoNodeLink -I/home/panitha/OpenSource/OpenSees/SRC/element/updatedLagrangianBeamColumn -I/home/panitha/OpenSource/OpenSees/SRC/analysis -I/home/panitha/OpenSource/OpenSees/SRC/analysis/analysis -I/home/panitha/OpenSource/OpenSees/SRC/analysis/handler -I/home/panitha/OpenSource/OpenSees/SRC/analysis/numberer -I/home/panitha/OpenSource/OpenSees/SRC/analysis/algorithm -I/home/panitha/OpenSource/OpenSees/SRC/analysis/algorithm/eigenAlgo -I/home/panitha/OpenSource/OpenSees/SRC/analysis/algorithm/equiSolnAlgo -I/home/panitha/OpenSource/OpenSees/SRC/analysis/algorithm/equiSolnAlgo/accelerator -I/home/panitha/OpenSource/OpenSees/SRC/analysis/algorithm/domainDecompAlgo -I/home/panitha/OpenSource/OpenSees/SRC/analysis/model -I/home/panitha/OpenSource/OpenSees/SRC/analysis/model/simple -I/home/panitha/OpenSource/OpenSees/SRC/analysis/method -I/home/panitha/OpenSource/OpenSees/SRC/analysis/fe_ele -I/home/panitha/OpenSource/OpenSees/SRC/analysis/fe_ele/penalty -I/home/panitha/OpenSource/OpenSees/SRC/analysis/fe_ele/lagrange -I/home/panitha/OpenSource/OpenSees/SRC/analysis/fe_ele/transformation -I/home/panitha/OpenSource/OpenSees/SRC/analysis/dof_grp -I/home/panitha/OpenSource/OpenSees/SRC/analysis/integrator -I/home/panitha/OpenSource/OpenSees/SRC/modelbuilder -I/home/panitha/OpenSource/OpenSees/SRC/modelbuilder/triangle -I/home/panitha/OpenSource/OpenSees/SRC/modelbuilder/tcl -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/eigenSOE -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/slowMatrix -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/bandSPD -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/profileSPD -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/fullGEN -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/bandGEN -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/sparseGEN -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/sparseSYM -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/petsc -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/umfGEN -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/diagonal -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/cg -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/BJsolvers -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/itpack -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/linearSOE/mumps -I/home/panitha/OpenSource/OpenSees/SRC/system_of_eqn/eigenSOE -I/home/panitha/OpenSource/OpenSees/SRC/graph/graph -I/home/panitha/OpenSource/OpenSees/SRC/graph/numberer -I/home/panitha/OpenSource/OpenSees/SRC/graph/partitioner -I/home/panitha/OpenSource/OpenSees/SRC/element/nonlinearBeamColumn/element -I/home/panitha/OpenSource/OpenSees/SRC/element/nonlinearBeamColumn/fiber -I/home/panitha/OpenSource/OpenSees/SRC/element/nonlinearBeamColumn/matrixutil -I/home/panitha/OpenSource/OpenSees/SRC/element/nonlinearBeamColumn/quadrule -I/home/panitha/OpenSource/OpenSees/SRC/coordTransformation -I/home/panitha/OpenSource/OpenSees/SRC/optimization -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/analysis -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/analysis/system -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/convergenceCheck -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/curvature -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/designPoint -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/direction -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/gFunction -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/hessianApproximation -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/meritFunction -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/misc -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/randomNumber -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/rootFinding -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/sensitivity -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/stepSize -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/transformation -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/telm -I/home/panitha/OpenSource/OpenSees/SRC/reliability/domain -I/home/panitha/OpenSource/OpenSees/SRC/reliability/domain/components -I/home/panitha/OpenSource/OpenSees/SRC/reliability/domain/distributions -I/home/panitha/OpenSource/OpenSees/SRC/reliability/domain/filter -I/home/panitha/OpenSource/OpenSees/SRC/reliability/domain/modulatingFunction -I/home/panitha/OpenSource/OpenSees/SRC/reliability/domain/spectrum -I/home/panitha/OpenSource/OpenSees/SRC/reliability/domain/limitStateFunction -I/home/panitha/OpenSource/OpenSees/SRC/reliability/optimization -I/home/panitha/OpenSource/OpenSees/SRC/reliability/analysis/telm -I/home/panitha/OpenSource/OpenSees/SRC/reliability/FEsensitivity -I/home/panitha/OpenSource/OpenSees/SRC/reliability/tcl -I/home/panitha/OpenSource/OpenSees/SRC/unittest -I/home/panitha/OpenSource/OpenSees/SRC/api -I/home/panitha/OpenSource/OpenSees/SRC -I/home/panitha/OpenSource/OpenSees/OTHER/SuperLU_3.0/SRC -I/home/panitha/OpenSource/OpenSees/SRC/package -I/home/panitha/OpenSource/OpenSees/SRC/../OTHER/AMD -I/usr/include -I/include -I/usr/include/cxx -I/home/panitha/OpenSource/include -c tkMain.cpp -o tkMain.o
tkMain.cpp:112: error: new declaration ‘char* strrchr(const char*, int)’
/usr/include/string.h:244: error: ambiguates old declaration ‘const char* strrchr(const char*, int)’
tkMain.cpp: In function ‘void Tk_MainOpenSees(int, char**, int (*)(Tcl_Interp*), Tcl_Interp*)’:
tkMain.cpp:308: warning: deprecated conversion from string constant to ‘char*’
tkMain.cpp:325: warning: deprecated conversion from string constant to ‘char*’
make[2]: *** [tkMain.o] Error 1
make[2]: Leaving directory `/home/panitha/OpenSource/OpenSees/SRC/tcl'
make[1]: *** [tk] Error 2
make[1]: Leaving directory `/home/panitha/OpenSource/OpenSees/SRC/modelbuilder/tcl'
make: *** [all] Error 2
fmk
Site Admin
Posts: 5884
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Re: Issues in Installing OpenSees2.2.2 and tcl/tk8.5.11

Post by fmk »

you don't need to make tk .. type 'make tcl'
anitha
Posts: 26
Joined: Mon Jun 16, 2014 12:36 am
Location: cdac

Re: Issues in Installing OpenSees2.2.2 and tcl/tk8.5.11

Post by anitha »

Respected sir,
I'm not commanding the "make tk" but still getting this type of error...I'v tried by changing the OpenSees version 2.2.2 to 2.1.0...their also i'm getting this kind of strrch,int,void,char* errors in tkmain.cpp files....how to remove these things..please suggest me in this regard...
Thank you
with Regards
Anitha
fmk
Site Admin
Posts: 5884
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Re: Issues in Installing OpenSees2.2.2 and tcl/tk8.5.11

Post by fmk »

if you issue the 'make tcl' you should not see the errors as the tkMain.cpp should not be compiled.

another option is just to open the offending file and comment out the line.
anitha
Posts: 26
Joined: Mon Jun 16, 2014 12:36 am
Location: cdac

Re: Issues in Installing OpenSees2.2.2 and tcl/tk8.5.11

Post by anitha »

Respected Sir,
Thank you for your replies regarding installation. I think that the fault is with my versions only. I've Downloaded tcl and tk from active Tcl website. Regarding Opensees took version from Opensees version from japanese website. I've not downloaded from Opensees Burkely.edu website.I request you to send me the suitable version for Linux Operating system(32 bit).
With Regards'
Anitha
fmk
Site Admin
Posts: 5884
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Re: Issues in Installing OpenSees2.2.2 and tcl/tk8.5.11

Post by fmk »

i don't release 32 bit linux versions .. if you want to use OpenSees on a linux machines and you cannot build it i suggest using openseeslab on neeshub (nees.org)
anitha
Posts: 26
Joined: Mon Jun 16, 2014 12:36 am
Location: cdac

Re: Issues in Installing OpenSees2.2.2 and tcl/tk8.5.11

Post by anitha »

Respected sir,
Thank you.I'll try to install tat in my linux machine.
with regards,
Anitha
fmk
Site Admin
Posts: 5884
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Re: Issues in Installing OpenSees2.2.2 and tcl/tk8.5.11

Post by fmk »

it is not installed on your machine .. you run it through your browser.
Post Reply