leoheck / ubuntu-config

Scripts to configure Ubuntu hosts
MIT License
3 stars 2 forks source link

Cadence Innovus missing libraries #22

Closed leoheck closed 5 years ago

leoheck commented 8 years ago

libxp6 faltando. Observado na gaphl58

admin-gaph@admin-gaph:~$ innovus
WARNING: HOST <admin-gaph> DOES NOT APPEAR TO BE A CADENCE SUPPORTED LINUX CONFIGURATION.
         For More Info,  Please Run '<cdsroot>/tools.lnx86/bin/checkSysConf' <productId>.

innovus: WARNING: The command /soft64/cadence/ferramentas/INNOVUS152/share/oa/bin/sysname returned an error status:
                            unknown
innovus:    INFO: Note that OpenAccess (OA) requires running the Configure phase.
innovus:          See the "OpenAccess Installation and Configuration Guide" before
innovus:          you complete the configuration step. This manual is included with
innovus:          the Cadence product documentation.
innovus:    INFO: No proper OA2.2 installation found. The OA2.2 features of innovus will be disabled.
/soft64/cadence/ferramentas/INNOVUS152/tools/innovus/bin/64bit/innovus: error while loading shared libraries: libXp.so.6: cannot open shared object file: No such file or directory
leoheck commented 8 years ago

libXp.so.6 já corrigida. Falta corrigir problemas com as libs:

admin-gaph@admin-gaph:~$ innovus 
WARNING: HOST <admin-gaph> DOES NOT APPEAR TO BE A CADENCE SUPPORTED LINUX CONFIGURATION.
         For More Info,  Please Run '<cdsroot>/tools.lnx86/bin/checkSysConf' <productId>.

innovus: WARNING: The command /soft64/cadence/ferramentas/INNOVUS152/share/oa/bin/sysname returned an error status:
                            unknown
innovus:    INFO: Note that OpenAccess (OA) requires running the Configure phase.
innovus:          See the "OpenAccess Installation and Configuration Guide" before
innovus:          you complete the configuration step. This manual is included with
innovus:          the Cadence product documentation.
innovus:    INFO: No proper OA2.2 installation found. The OA2.2 features of innovus will be disabled.

Cadence Innovus(TM) Implementation System.
Copyright 2015 Cadence Design Systems, Inc. All rights reserved worldwide.

Version:    v15.20-p005_1, built Wed Nov 11 11:16:39 PST 2015
Options:    
Date:       Fri Aug 19 15:55:34 2016
Host:       admin-gaph (x86_64 w/Linux 4.4.0-34-generic) (4cores*8cpus*Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz 8192KB)
OS:     # Faking a RedHat/Centos

License:
        invs    Innovus Implementation System   15.2    checkout succeeded
        8 CPU jobs allowed with the current license(s). Use setMultiCpuUsage to set your required CPU count.
**ERROR: (IMPOAX-142):  Could not open shared library libinnovusoax22.so : liboaDesign.so: cannot open shared object file: No such file or directory

**ERROR: (IMPOAX-142):  OA features will be disabled in this session.

Cannot open libm.so, trying libm.so.6
Create and set the environment variable TMPDIR to /tmp/innovus_temp_3474_admin-gaph_admin-gaph_OIWlkx.
leoheck commented 8 years ago

foi reportado que carregando o módulo do innovus, ele da pau no meld.

245950258 commented 5 years ago

How did you solve "liboaDesign.so: cannot open shared object file: No such file or directory"?

leoheck commented 5 years ago

Which Linux/Ubuntu version do you use? @245950258

leoheck commented 5 years ago

Ah, I see. You are talking about this, right?

liboaDesign.so missing, fixed on innovus module (probably not the best solution)

My environment module has the following setup:

# Local variables
set MODULE "INNOVUS"
set VERSION "18.1"
set TOOL "INNOVUS181"
set BASE "/soft64/cadence/ferramentas/${TOOL}"

set CDS_DIR "/soft64/cadence/ferramentas"
set IUSHOME "$CDS_DIR/$TOOL"

# License
set LM_LICENSE_FILE "5280@kriti.inf.pucrs.br"
prepend-path LM_LICENSE_FILE ${LM_LICENSE_FILE}
prepend-path CDS_LIC_FILE ${LM_LICENSE_FILE}

# Binaries
prepend-path PATH "$IUSHOME/bin"
prepend-path PATH "$IUSHOME/tools/bin"

# Libraries
prepend-path LD_LIBRARY_PATH "$IUSHOME/share/oa/lib/linux_rhel50_gcc48x_64/opt"
prepend-path LD_LIBRARY_PATH "$IUSHOME/tools.lnx86/lib/64bit"
prepend-path LD_LIBRARY_PATH "$IUSHOME/tools/lib/64bit/"

# Extra environment variables
setenv CDS_AUTO_64BIT ALL
setenv OA_HOME "$IUSHOME/share/oa"

The path for both x86 and x64 are

INNOVUS181/oa_v22.50.083/lib/linux_rhel50_gcc48x_32/opt/liboaDesign.so
INNOVUS181/oa_v22.50.083/lib/linux_rhel50_gcc48x_64/opt/liboaDesign.so
245950258 commented 5 years ago

Thanks a lot. I have solved that problem.