After I recompiled with manula adding link as I mentioned in previous post the problem still exists. Now I use gcc-9.4, gfortran-9.4, preinstalled java 11.0.16
@seismick I cleaned a little bit the env vars. I just deleted and cloned cpseis dir once again. I still see the mentionned error " unable to create link... I digged to the install_cpseis script and at line 167 we have ln -s -f \$UJL \$CPSEIS_ARCH. I slighty modified this snippet: ERROR=0 # links thirdparty to existing JDK if ! [ -x "$(command -v javac)" ]; then echo >&2 "*** javac not installed ***" else varwj=\$(realpath $(which javac)) export UJL=\${varwj%/bin/javac} echo "I have preinstalled javac"...
Here are otputs from the commads with resolved links: which java: /usr/lib/jvm/java-11-openjdk-amd64/bin/java which javac: /usr/lib/jvm/java-11-openjdk-amd64/bin/javac java -version: openjdk version "11.0.16" 2022-07-19 OpenJDK Runtime Environment (build 11.0.16+8-post-Ubuntu-0ubuntu120.04) OpenJDK 64-Bit Server VM (build 11.0.16+8-post-Ubuntu-0ubuntu120.04, mixed mode, sharing) javac -version: javac 11.0.16 I use x11 Ubuntu. To check that I've used the commad loginctl show-session c1 -p Typewhere...
I just tested on RedOS 7.3 (based on Centos 7 as far as I know) using VirtualBox and it works fine! Thus it must be something with Ubuntu 20.04 setup. I will try to get known with cpseis on RedOS and probably later will come back to the problem. Thank you for your efforts!
That is very strange. I just compiled gcc with gfortran 8.5, removed mpich with sudo apt-get purge --auto-remove mpich and the problem wasn't solved. I will try to build cpseis on virtual machine.
No, rebuilding with commented earlier mentioned gcc-11/12 CC/CXX and LD_LIBRARY_PATH vars didn't help.
It seems there is no errors during cfe build. And it didn't help. Launching cfe -debug I noticed that right after I modify the value in DT (sample interval (seconds)) (JOB_DATA) I can see the output in terminal: int_debugset_value(3, "EnterWindow" , "JOB_DATA" , " "); <EnterWindow keyword="JOB_DATA" windowId="3"/> 10-07 19:31:52 <Message> <Reply/> </Message> int_debugset_value(3, "ModifyField" , "DT" , "0.004"); <ModifyField keyword="DT" windowId="3" value="0.004"/> 10-07 19:31:58 <Message> <Reply>...
Thank you for the hints, it seems the problem still not solved. What I tried: 1) I made cpseis to build java that comes with it. 2) Then I added link to it: cd $THIRDPARTY_DIR/jdk/platforms sudo ln -s $THIRDPARTY_DIR/jdk/jdk-6u14-linux-x64_x86_64 $CPSEIS_ARCH 3) Then I prepended bin dir to the PATH: export PATH="$THIRDPARTY_DIR/jdk/platforms/Linux_x86_64_2.31_gfortran_mpich3/bin":$PATH Now javac -version prints javac 1.6.0_14 4) Then I rebuilt cfe: cd $CPSEIS_INSTALL_DIR/platforms/$CPSEIS_ARCH make...