Compiling COBOLs in PSOVM - psrun.mak error - "cob64: can not execute Id".

Hi All,
After installing PeopleSoft OVM in our server, I need to recompile the COBOL. I believe this is not included in the OVM. These are the steps I did.
1. Installed Microfocus Server Express 5.0 WrapPack 4
2. Follow the steps in Compiling Cobol in Unix mentioned is the PeopleTools_8.50_Installation_Oracle guide.
I was able to successfully compille the COBOL files by running ./pscbl.mak. The next step is Linking COBOL Components on UNIX by running ./psrun.mak and here I got the error:
+./psrun.mak - linking PSRUN for oel-5-x86_64, Version 2.6.18-92.0.0.0.1.el5xen ...+
+./psrun.mak - Error(s) encountered creating PSRUN!+
+./psrun.mak - See /opt/oracle/psft/appbatch/tools/setup/psrun.err for messages+
+[root@pshcm91ab setup]# more /opt/oracle/psft/appbatch/tools/setup/psrun.err+
cob64: can not execute ld
+[root@pshcm91ab setup]#+
I followed all the steps in setting environment variable mention in the "Compiling Cobols in Unix" in PeopleTools_8.50_Installation_Oracle.
Is there any specific documentation of compiling COBOLs in PeopleSoft OVM?
Can anyone help me with this?
Thanks in advance.
-Chris
Edited by: user9977167 on 4/02/2010 15:52
Edited by: user9977167 on 5/02/2010 06:18

Hi,
Ok, I reproduce your case :
[psadm1@psovmab setup]$ ./psrun.mak
./psrun.mak - linking PSRUN for oel-5-x86_64, Version 2.6.18-92.0.0.0.1.el5xen ...
./psrun.mak - Error(s) encountered creating PSRUN!
./psrun.mak - See /opt/oracle/psft/appbatch/tools/setup/psrun.err for messages
[psadm1@psovmab setup]$ more /opt/oracle/psft/appbatch/tools/setup/psrun.err
cob64: can not execute ld
[psadm1@psovmab setup]$It looks like a lot of rpm packages required by ld are missing on Peoplesoft OVM App/Batch server compared to the Peoplesoft OVM database server for instance.
I added a lot of packages because of the dependendcies as below :
From OEL5.2 Disk 1
==================
-rw-r--r-- 1 root root  899210 Feb  7 10:10 kernel-headers-2.6.18-92.el5.x86_64.rpm
-rw-r--r-- 1 root root  3073639 Feb  7 10:25 binutils-2.17.50.0.6-6.el5.x86_64.rpm
-rw-r--r-- 1 root root  3114462 Feb  7 10:29 cpp-4.1.2-42.el5.x86_64.rpm
[root@psovmab rpm]# rpm -Uvh kernel-headers-2.6.18-92.el5.x86_64.rpm
Preparing...                ########################################### [100%]
   1:kernel-headers         ########################################### [100%]
[root@psovmab rpm]# rpm -Uvh binutils-2.17.50.0.6-6.el5.x86_64.rpm
Preparing...                ########################################### [100%]
   1:binutils               ########################################### [100%]
[root@psovmab rpm]# rpm -Uvh cpp-4.1.2-42.el5.x86_64.rpm
Preparing...                ########################################### [100%]
   1:cpp                    ########################################### [100%]
[root@psovmab rpm]#
From OEL5.2 Disk 2
==================
-rw-r--r-- 1 root root  614718 Feb  7 10:05 glibc-headers-2.5-24.x86_64.rpm
-rw-r--r-- 1 root root 2535024 Feb  7 10:05 glibc-devel-2.5-24.x86_64.rpm
-rw-r--r-- 1 root root 2105297 Feb  7 10:05 glibc-devel-2.5-24.i386.rpm
-rw-r--r-- 1 root root 5544086 Feb  7 10:20 gcc-4.1.2-42.el5.x86_64.rpm
-rw-r--r-- 1 root root 3987493 Feb  7 10:20 gcc-c++-4.1.2-42.el5.x86_64.rpm
-rw-r--r-- 1 root root    83518 Feb  7 10:31 libgomp-4.1.2-42.el5.i386.rpm
-rw-r--r-- 1 root root    84654 Feb  7 10:41 libgomp-4.1.2-42.el5.x86_64.rpm
-rw-r--r-- 1 root root  2980440 Feb  7 10:43 libstdc++-devel-4.1.2-42.el5.x86_64.rpm
-rw-r--r-- 1 root root    20483 Feb  7 11:46 elfutils-libelf-devel-0.125-3.el5.x86_64.rpm
-rw-r--r-- 1 root root    58852 Feb  7 11:46 elfutils-libelf-devel-static-0.125-3.el5.x86_64.rpm
-rw-r--r-- 1 root root   102193 Feb  7 11:49 elfutils-libs-0.125-3.el5.x86_64.rpm
[root@psovmab rpm]# rpm -Uvh glibc-headers-2.5-24.x86_64.rpm
Preparing...                ########################################### [100%]
   1:glibc-headers          ########################################### [100%]
[root@psovmab rpm]#
[root@psovmab rpm]# rpm -Uvh glibc-devel-2.5-24.x86_64.rpm
Preparing...                ########################################### [100%]
   1:glibc-devel            ########################################### [100%]
[root@psovmab rpm]#
[root@psovmab rpm]# rpm -Uvh glibc-devel-2.5-24.i386.rpm
Preparing...                ########################################### [100%]
   1:glibc-devel            ########################################### [100%]
[root@psovmab rpm]# rpm -Uvh libgomp-4.1.2-42.el5.i386.rpm
Preparing...                ########################################### [100%]
   1:libgomp                ########################################### [100%]
[root@psovmab rpm]# rpm -Uvh libgomp-4.1.2-42.el5.x86_64.rpm
Preparing...                ########################################### [100%]
   1:libgomp                ########################################### [100%]
[root@psovmab rpm]# rpm -Uvh gcc-4.1.2-42.el5.x86_64.rpm
Preparing...                ########################################### [100%]
   1:gcc                    ########################################### [100%]
[root@psovmab rpm]# rpm -Uvh  libstdc++-devel-4.1.2-42.el5.x86_64.rpm
Preparing...                ########################################### [100%]
   1:libstdc++-devel        ########################################### [100%]
[root@psovmab rpm]#
[root@psovmab rpm]# rpm -Uvh gcc-c++-4.1.2-42.el5.x86_64.rpm
Preparing...                ########################################### [100%]
   1:gcc-c++                ########################################### [100%]
[root@psovmab rpm]# rpm -Uvh elfutils-libs-0.125-3.el5.x86_64.rpm
Preparing...                ########################################### [100%]
   1:elfutils-libs          ########################################### [100%]
[root@psovmab rpm]# rpm -Uvh elfutils-libelf-devel-0.125-3.el5.x86_64.rpm elfutils-libelf-devel-static-0.125-3.el5.x86_64.rpm
Preparing...                ########################################### [100%]
   1:elfutils-libelf-devel-s########################################### [ 50%]
   2:elfutils-libelf-devel  ########################################### [100%]
[root@psovmab rpm]#
From OEL5.2 Disk 3
==================
-rw-r--r-- 1 root root  4588773 Feb  7 10:22 compat-gcc-34-3.4.6-4.x86_64.rpm
-rw-r--r-- 1 root root 13542100 Feb  7 10:23 compat-gcc-34-c++-3.4.6-4.x86_64.rpm
-rw-r--r-- 1 root root   232846 Feb  7 12:21 compat-libstdc++-33-3.2.3-61.x86_64.rpm
[root@psovmab rpm]# rpm -Uvh compat-gcc-34-3.4.6-4.x86_64.rpm
Preparing...                ########################################### [100%]
   1:compat-gcc-34          ########################################### [100%]
[root@psovmab rpm]# rpm -Uvh compat-gcc-34-c++-3.4.6-4.x86_64.rpm
Preparing...                ########################################### [100%]
   1:compat-gcc-34-c++      ########################################### [100%]
[root@psovmab rpm]#The initial error is gone, but got a new one when linking :
[psadm1@psovmab setup]$ ./psrun.mak
./psrun.mak - linking PSRUN for oel-5-x86_64, Version 2.6.18-92.0.0.0.1.el5xen ...
./psrun.mak - Error(s) encountered creating PSRUN!
./psrun.mak - See /opt/oracle/psft/appbatch/tools/setup/psrun.err for messages
[psadm1@psovmab setup]$ more /opt/oracle/psft/appbatch/tools/setup/psrun.err
ld: cannot find -lgcc
[psadm1@psovmab setup]$I looked around for this error, found a Metalink note, but the suggestion does not apply here, the path directory metioned in $COBDIR/etc/cobopt already exists :
[psadm1@psovmab setup]$ more $COBDIR/etc/cobopt
-C nolist
set GCC_LIB=/usr/lib/gcc/x86_64-redhat-linux/3.4.6
[psadm1@psovmab setup]$ ls /usr/lib/gcc/x86_64-redhat-linux/3.4.6
32          crtbeginS.o  crtend.o   include   libgcc_eh.a  libgcc_s_32.so  libstdc++.a   libstdc++_nonshared.a  libsupc++.a
crtbegin.o  crtbeginT.o  crtendS.o  libgcc.a  libgcc_s.so  libgcov.a       libstdc++.so  libstdc++_shared.so    specs
[psadm1@psovmab setup]$So far, no luck, I'll still try, but you may have more luck to install a separate server with all the packages install from the scratch and run a process scheduler from there.
Nicolas.

Similar Messages

  • My I pad suddenly stopped working then i connect it to iTunes it make error 4014 can you help me please

    my I pad suddenly stopped working then i connect it to iTunes it make error 4014 can you help me please I pad 4

    If the phone shows the "connect to iTunes" screen, the data on the phone is most likely lost.
    Connecting in recovery mode is your only chance to use the phone again, besides getting it serviced by Apple.
    iOS: Unable to update or restore

  • About 1356 ERROR:pifreg:can not open registry database error

    I test the simpsver using simpclw run on the same machine, the simpsver seen to
    run normally. After config the correct network option,I test the simpsver on the
    different machine using simpclw, now I get the "1356 ERROR:pifreg:can not open
    registry database error" ,the action bea suggested is "Make sure that the directory(default
    TUXDIR/udataobj) is not on an NFS mounted filesystem that does not support file
    locking", but in fact bea client is installed on a local file system (ext2)!

    malikdba wrote:
    the last option which ask to delete the files. i already have deleted the files at operating system level. now the issue is how to let the system that the space is free in flash recovery area? rman is not running crosscheck command at mount stage of the target database. What steps should i follow now?
    Thanks
    malik
    Are you saying you are getting an error while trying to crosscheck at mount?  Or you simply don't believe it will work?
    oracle:orcl$ rman target /
    Recovery Manager: Release 11.2.0.2.0 - Production on Thu Jul 11 10:52:48 2013
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    connected to target database (not started)
    RMAN> startup mount;
    Oracle instance started
    database mounted
    Total System Global Area     839282688 bytes
    Fixed Size                     2231128 bytes
    Variable Size                503317672 bytes
    Database Buffers             331350016 bytes
    Redo Buffers                   2383872 bytes
    RMAN> crosscheck archivelog all;
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=18 device type=DISK
    specification does not match any archived log in the repository
    RMAN>
    A perfectly normal crosscheck at the mount stage

  • Hello,i have updated to the new 11,and now i tunes will not open,error pops up,says Data Execution Prevention,and other error we can not complete ur i tune request,unknown error 4002,i have uninstalled and reinstalled ,has been not help.

    hello,i have updated to the new 11,and now i tunes will not open,error pops up,says Data Execution Prevention,and other error we can not complete ur i tune request,unknown error 4002,i have uninstalled and reinstalled ,has been no help.

    - Try restoring on another computer.
    -  Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • Had to uninstall Firefox, now I can't reinstall. Get error message "Can not find archive file." Please help!

    I believe I had some kind of virus attack. I got everything cleaned up. (I HOPE) In the process of cleaning the virus, I unintalled Firefox because it wouldn't open. Kept getting the error message that Firefox was already open and I had to close out of the sessions or restart the computer. After restarting the computer several times and not being able to find any open sessions in task manager, I uninstalled. When trying to reinstall, I get the error message "can not find archive file." I've tried downloading Firefox from cnet as well as the Mozilla site to no avail. Please help. I'm getting tired of using Chrome already!

    Hello,
    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    Please report back to see if this helped you!
    Thank you.

  • I am using only one Apple ID. The problem, since iOS 6,  is the App Store purchased items screen just shows loading screen  it finally crashes or gives the error message 'can not connect to  Apple store'

    I am using only one Apple ID. The problem, since iOS 6,  is the App Store purchased items screen just shows loading screen  it finally crashes or gives the error message 'can not connect to  Apple store'

    I am using only one Apple ID. The problem, since iOS 6,  is the App Store purchased items screen just shows loading screen  it finally crashes or gives the error message 'can not connect to  Apple store'

  • Windows error msg:  "Can not write to drive G: Joe's iPod"

    Halfway thru the download process (1780 songs) from itunes to my ipod I get a windows error msg:
    "Can not write to file G: Joe's ipod. All the data has been lost. Check for an error on your computer or network."
    Getting the error msg: " Can not write to drive G: Joe's ipod. All data has been lost, your computer or network may have failed."
    "Windows/ My computer" shows my ipod as drive G: and itunes starts up properly when I plug my ipod into my firewire port. About halfway thru the download (1780 songs) the transfer from itunes to my ipod stops and I get the above error message. (Never worked with USB). I am not on a network.
    According to tech supt, I have:
    -Installed Service Pack 2,
    -Restored ipod to factory settings
    -Installed update 5.0.1. Everything worked fine last Feb with the version 4 of itunes when I first loaded everything up.
    Have tried to reinstall version 4, but no luck.
    My ipod charges fine thru the firewire cable.
    Any ideas?? Thanx anyone.

    Joe,
    I am having the same problem, did you ever solve it, please email me at [email protected] with any help
    Thanks

  • WLAN driver fails to install on G580 Windows 7 x64 with error "BCM4313: Can not find setup file"

    Summary:
    I have installed Windows 7 Ultimate x64 on my G580.  Everything is working fine except the WLAN driver fails to install with the error "BCM4313: Can not find setup file".
    Details:
    I bought lenovo G580 with Windows 8.  Since my parents are not comfortable with the learning curve of Win 8, I successfully downgraded to Windows 7 Ultimate x64.  Everything is working fine but my WLAN card is not recognized because of lack of driver.
    The lenovo parts look-up page says I have broadcom WLAN card - CBT BCM4313 MOW HMC WLAN
    I looked at lenovo driver downloads site and tried following driver files for Windows 7 and both of them failed to install with the following error.  I tried installing other WLAN drivers also but they won't even install as required hardward is not there.
    Error -  "BCM4313: Can not find setup file"
    Drivers Tried:
    - http://support.lenovo.com/en_US/downloads/detail.p​age?DocID=DS028105
    - http://support.lenovo.com/en_US/downloads/detail.p​age?DocID=DS028208
    Any help about how to get past this error will be appreciated.  The previous Widnows verison (Windows 8) is still on my hard-drive as windows.old folder.  Let me know if I can copy a specific file from there.
    Thank you.
    BJS
    Solved!
    Go to Solution.

    Download this driver bcm4313
    Start setup and extract the files.After that go to star menu/control panel/system/device manager.There you probably find out that network adapter driver is missing.Choose it and click with right mb for drop menu to show up.Select properties then Driver/Update Drivers...Select to load driver from computer hard drive and choose the path where extract files is.Default path is main partion C: and search for directory named Driver.
    And yes...you get "Can not find setup file" error but dont worry.Files needed to instal driver are extract fine.

  • TS3212 i have windows 7 and when trying to install itunes i get the error message "can not access network location %PUBLIC%\Desktop\."

    i have windows 7 and am having trouble installing itunes 10. during the installation process, i get the error message "can not access the network location %PUBLIC%\Desktop\." i cant find anything online that helps me and without itunes my ipod touch ios basically useless. please help me!!

    I've seen a report here of the following instructions helping with that particular variation of the 1606 error message:
    http://quicksolver.blogspot.in/2012/02/unable-to-install-office-2010-on.html

  • Database error #2002 can not connect local mysql server to socket through '/var/run/mysqld/mysqld.sock'(2) on mac os x 10.9.2

    Dear Fellas:
    I received "database error #2002 can not connect local mysql server to socket through '/var/run/mysqld/mysqld.sock'(2)" on mac os x 10.9.2.
    mysql info:
    ps -ef | grep mysql
        0    66     1   0 11:06AM ??         0:00.04 /bin/sh /usr/local/mysql/bin/mysqld_safe --user=mysql
       74   225    66   0 11:06AM ??         0:02.50 /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data --plugin-dir=/usr/local/mysql/lib/plugin --user=mysql --log-error=/usr/local/mysql/data/Chuans-MacBook-Pro-2.local.err --pid-file=/usr/local/mysql/data/Chuans-MacBook-Pro-2.local.pid --socket=/var/run/mysqld/mysqld.sock
      501   952   947   0  3:52PM ttys000    0:00.00 grep mysql
    Please help!!

    Fascinated and guessing:
    Something related to sock(2) because that's not part of your copied info. I'm thinking you've doubled up on sockets and the second socket doesn't exist, meaning you should be connecting to the first socket "mysqld.sock" whether automatic or not.
    I've only used GUI tools on purpose, so does this mean you've already got MySQL running and you tried to launch it again manually? Perhaps you already have one instance of a db and you're trying to launch a second instance, and the two can't coexist with a single user local db?
    Assuming this is all local, I'd shut down the db service and restart it, out of hand. I've seen similar messages when I set the db to start up on boot, and it didn't finish shutting down when I tried to restart it manually. Usually the GUI won't let me turn it on because it reports it's already running, but in that case it hadn't finished performing what the GUI was reporting.
    Just speculating.

  • SAP BPC 5.1 SP2 Http 500 internal server error - page can not be displayed

    When our Sysadmin service account are restricted to the app server and the database server ( as they should be in a secured environment) no client
    could reach the web site to even use the Osoft directory . We get a Http 500 internal server error - page can not be displayed . This is for a new multiserver install. Is there a problem on the website security or .net configuration?

    Yes the install was done by the SAP install consultant but now we are getting an error when we restrict the Sysadmin ID. Server diagnostics and other tests on Appshell passed as well.

  • I get: Unknown error (-50). can not syncronize your ipod!!!!!

    Hi
    I have 60GB ipod with itunes7 windows XP pro
    I cant see any artwork in my ipod because when I check the option to see artwork and I syncronize(update) my ipod a message pops up:
    Unknown error (-50). can not syncronize your ipod!!!!!
    it is something like that because its in spanish. I dont know how to fix this mistake. please help

    Hi thanks for your answer.
    I am afraid it still does not work.
    Now, when I select the Airport, it tries connecting for a long time "connecting to "Airport Name"...but never connects.

  • HT1725 I purchased music and got a message due to an error it can not be down loaded.  How can I get it to down load?

    I purchased music and got a message due to an error it can not be downloaded.  How can I get it to down load?

    What does the error message say? (Include error message numbers if you're getting any, please.)

  • When I try to update, I received "Download Error". Can NOT "Reload Applications" on Creative Cloud? Pls help. Thx

    When I try to update, I received "Download Error". Can NOT "Reload Applications" on Creative Cloud? Pls help. Thx

    Hello,
    could you already study these links:
    https://helpx.adobe.com/creative-cloud/kb/troubleshoot-cc-installation-download.html and
    https://helpx.adobe.com/creative-cloud/help/install-apps.html
    They should solve your problems,
    Hans-Günter

  • Error # 1 can not open window

    when i try to do a pano thru photomerge in pse11 on a mac i get the message error 1 can not open window. this was after i tried to fix error 22. i held down the com,option,shift keys just after a started photoshop aditor. help steve

    Quoting from another thread -
    Definitely try doing a File > Save For Web using the Photoshop Elements Editor (be sure not to save over your original photos), and then try to do a Photomerge Panorama on the resulting images.
    Photomerge apparently has some issues with some kind(s) of EXIF metadata in files, and using Safe For Web strips this information out of the file.
    This has worked for most (or perhaps all) of those that mentioned having this issue in this thread.
    Please see- http://forums.adobe.com/message/2276267 for more info.
    Thanks
    Andaleeb

Maybe you are looking for