SS10 on Solaris10/AMD64: issue compiling for AMD64 (linking fails)

Hello,
I've just installed SS10 trial and while trying our middleware stack compilation, I've found that CC/cc are not able to create AMD64 binary on my Sol10 setup. The command (test-case):
cc -xarch=amd64 hello.c
fails with:
ld: fatal: file /usr/ucblib/libucb.so: wrong ELF class: ELFCLASS32
ld: fatal: file /usr/lib/libsocket.so: wrong ELF class: ELFCLASS32
ld: fatal: file /usr/lib/libnsl.so: wrong ELF class: ELFCLASS32
ld: fatal: file /usr/lib/libelf.so: wrong ELF class: ELFCLASS32
ld: fatal: file /usr/lib/libaio.so: wrong ELF class: ELFCLASS32
ld: fatal: file /usr/lib/libc.so: wrong ELF class: ELFCLASS32
ld: fatal: File processing errors. No output written to a.out
Is there any workaround for this?
Thanks,
Karel Gardas

TV is already on! :-)
OK, hello.c or now foo.c is just simple C program, I've had LD_LIBRARY_PATH defined, but even when I unset it, the result is still the same. I do not have LD_PRELOAD defined. Let's see shell session:
-bash-3.00$ echo $LD_PRELOAD
-bash-3.00$ echo $LD_LIBRARY_PATH
-bash-3.00$ cc -xarch=amd64 foo.c
ld: fatal: file /usr/ucblib/libucb.so: wrong ELF class: ELFCLASS32
ld: fatal: file /usr/lib/libsocket.so: wrong ELF class: ELFCLASS32
ld: fatal: file /usr/lib/libnsl.so: wrong ELF class: ELFCLASS32
ld: fatal: file /usr/lib/libelf.so: wrong ELF class: ELFCLASS32
ld: fatal: file /usr/lib/libaio.so: wrong ELF class: ELFCLASS32
ld: fatal: file /usr/lib/libc.so: wrong ELF class: ELFCLASS32
ld: fatal: File processing errors. No output written to a.out
-bash-3.00$
-bash-3.00$ CC -xarch=amd64 foo.c
-bash-3.00$ file a.out
a.out: ELF 64-bit LSB executable AMD64 Version 1, dynamically linked, not stripped
-bash-3.00$
-bash-3.00$ cat foo.c
int
main()
return 1 + 1;
-bash-3.00$
-bash-3.00$ ldd a.out
libCstd.so.1 => /usr/lib/64/libCstd.so.1
libCrun.so.1 => /usr/lib/64/libCrun.so.1
libm.so.2 => /lib/64/libm.so.2
libc.so.1 => /lib/64/libc.so.1
-bash-3.00$
I've installed whole solaris 10 except OEM distributions addons (IIRC the distro name correctly)
Please let me know what else do you need to "debug" this issue.
Thanks,
Karel

Similar Messages

  • Error compiling for IOS "map failed"

    Since i have installed Flash Builder 4.6 I allways get an error when I compile for Device "Map Failed".
    Compiling for Desktop works fine. When I used Flash Builder 4.5.1 I had sometimes the same problem,
    but sometimes compiling worked.
    here is the logfile:
    !ENTRY com.adobe.flexbuilder.project 4 43 2011-12-07 12:16:06.832
    !MESSAGE Map failed
    !STACK 0
    java.lang.Exception
        at com.adobe.flexbuilder.project.internal.FlexProjectCore.createErrorStatus(FlexProjectCore. java:1019)
        at com.adobe.flexbuilder.util.logging.GlobalLogImpl.log(GlobalLogImpl.java:66)
        at com.adobe.flexbuilder.util.logging.GlobalLog.log(GlobalLog.java:52)
        at com.adobe.flexide.multiplatform.ios.packaging.IPAPackager.create(IPAPackager.java:276)
        at com.adobe.flexide.multiplatform.ios.launching.IOSOnDeviceLaunchHandler.doPackage(IOSOnDev iceLaunchHandler.java:314)
        at com.adobe.flexide.multiplatform.ios.launching.IOSOnDeviceLaunchHandler.launch(IOSOnDevice LaunchHandler.java:185)
        at com.adobe.flexide.launching.multiplatform.MultiPlatformLaunchDelegate.launch(MultiPlatfor mLaunchDelegate.java:191)
        at com.adobe.flexide.launching.AbstractFlexLaunchDelegate.launch(AbstractFlexLaunchDelegate. java:244)
        at com.adobe.flexide.launching.AbstractFlexLaunchDelegate.launch(AbstractFlexLaunchDelegate. java:134)
        at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:854)
        at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:703)
        at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:928)
        at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1132)
        at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
    !ENTRY com.adobe.flexbuilder.project 4 43 2011-12-07 12:16:07.520
    !MESSAGE Fehler beim Verpacken der Anwendung:
    Map failed
    What can I do ?

    I am getting a similar error when exporting a release build for ios.
    It seems to be caused by the number of assets I include in the project. If I remove all of the video assets from the package it builds a working release. When the video assets are included, it fails to export the release build with the error "map failed".
    So it seems to be the number of assets included or the total size of the included assets that causes the error for me. But I can't find a way around it so can't currently export a release build with all the required assets.
    I'm starting to wonder wether I'm going to have to write some kind of "updater" to download all the required assts to the iOS device when the app is first run, which isn't ideal.

  • Copliling Solaris kernel module code in 64bit for AMD64

    Hi,
    I have solaris10 OS in my HP ProLiant DL-145 server machine
    I m using SunStudio C compiler (cc) for compling my kernel module source code. My code is successfully work in 32bit kernel mode. But when i boot the OS in 64bit mode & complile the same code , then no error during compliaion & linking. but my module doesn't work. When i add two flags
    -xarch=amd64 -xmodel=kernel , then also no error during compilation, but module still not work.
    I want to know , how i can complie my soruce code successfully in 64bit kernel for AMD64, so that it can be loaded successfully through modload command.
    I think i need some other flags for that, pls help.

    from
    http://docs.sun.com/app/docs/doc/817-5789/6ml7kh1b4?q=amd64&a=view
    Compiling with Sun Studio
    Use the -D_KERNEL option to indicate that this code defines a kernel module.
    If you are compiling for a 64-bit x86 architecture, use both the -xarch=amd64 option and the -xmodel=kernel option:
    % cc -D_KERNEL -xarch=amd64 -xmodel=kernel -c mydriver.c
    % ld -r -o mydriver mydriver.o
    tim

  • Feedback on amazonmp3 for amd64

    Hey folks, I've put together an amazonmp3 pkgbuild for amd64 machines and I'd like to get some feedback and help polishing it.  It grabs the packages required from the ubuntu repositories and puts everything into /opt/amazonmp3/.  There's also a script /usr/bin/amazonmp3 that sets environmentals and calls the binary in opt.
    Currently I'm not sure if I got all the dependencies correct and several of the files installed I just stole from the current amazonmp3 pkgbuild.
    Not sure why the current amazonmp3 build has x86_64 in arch since it points the boost stuff at /usr/lib and I'm fairly sure we don't have lib32- for boost and gtkmm.
    In any case, once verified I haven't done anything stupid I'll put this up on aur.
    It seems okay as I've tested it on my machine and successfully downloaded an album.
    # Contributor: Chris Schwaab christopher.schwaab gmail
    pkgname=amazonmp3-amd64
    pkgver=1.0.3
    pkgrel=1
    pkgdesc="The MP3 downloader with self contained library deps for amd64."
    url="http://www.amazon.com/gp/dmusic/help/amd.html"
    arch=('x86_64')
    license=('custom')
    depends=('bash' 'lib32-libxdamage' 'lib32-curl' 'lib32-pango' 'lib32-gtk2')
    makedepends=('deb2targz')
    provides=('amazonmp3')
    conflicts=('amazonmp3')
    source=('http://mirrors.kernel.org/ubuntu/pool/main/g/gtkmm2.4/libgtkmm-2.4-1c2a_2.12.0-0ubuntu1_i386.deb'
    'http://mirrors.kernel.org/ubuntu/pool/main/c/cairomm/libcairomm-1.0-1_1.2.4-2_i386.deb'
    'http://mirrors.kernel.org/ubuntu/pool/main/g/glibmm2.4/libglibmm-2.4-1c2a_2.14.0-0ubuntu1_i386.deb'
    'http://mirrors.kernel.org/ubuntu/pool/main/libs/libsigc++-2.0/libsigc++-2.0-0c2a_2.0.17-2ubuntu2_i386.deb'
    'http://security.ubuntu.com/ubuntu/pool/universe/b/boost/libboost-date-time1.34.1_1.34.1-2ubuntu1.1_i386.deb'
    'http://security.ubuntu.com/ubuntu/pool/universe/b/boost/libboost-signals1.34.1_1.34.1-2ubuntu1.1_i386.deb'
    'http://security.ubuntu.com/ubuntu/pool/universe/b/boost/libboost-iostreams1.34.1_1.34.1-2ubuntu1.1_i386.deb'
    'http://security.ubuntu.com/ubuntu/pool/universe/b/boost/libboost-thread1.34.1_1.34.1-2ubuntu1.1_i386.deb'
    'http://amazonm-002.vo.llnwd.net/u/d1/clients/amazonmp3_1.0.3~gutsy_i386.deb'
    'http://security.ubuntu.com/ubuntu/pool/main/b/bzip2/libbz2-1.0_1.0.4-0ubuntu2.1_i386.deb')
    md5sums=('d3856f10fdecee58656263157ab3b68d'
    'dcc40c10a2ae127e088db9ec08d91e7e'
    'cd8ac50ac2347e9d9408eab68501c5cc'
    '3730b46f495a27598966a864bea8a0ca'
    '0ecf7a773aec14a63e1b7c7169a72c22'
    'ea127e805b17bfc616794c6860bc8304'
    'b9415e35d293f5f28d340cb5fb63d34e'
    '6a02ddcea0b9bb305bfe5ca9311d223a'
    '0a9b986e2e9ba5be7e412e9742688ebb'
    'e19195eb92daaa687cb2072672201c25')
    build() {
    deb2targz libgtkmm-2.4-1c2a_2.12.0-0ubuntu1_i386.deb \
    libcairomm-1.0-1_1.2.4-2_i386.deb \
    libglibmm-2.4-1c2a_2.14.0-0ubuntu1_i386.deb \
    libsigc++-2.0-0c2a_2.0.17-2ubuntu2_i386.deb \
    libboost-date-time1.34.1_1.34.1-2ubuntu1.1_i386.deb \
    libboost-signals1.34.1_1.34.1-2ubuntu1.1_i386.deb \
    libboost-iostreams1.34.1_1.34.1-2ubuntu1.1_i386.deb \
    libboost-thread1.34.1_1.34.1-2ubuntu1.1_i386.deb \
    libbz2-1.0_1.0.4-0ubuntu2.1_i386.deb \
    amazonmp3_1.0.3~gutsy_i386.deb
    tar -xzf libgtkmm-2.4-1c2a_2.12.0-0ubuntu1_i386.tar.gz
    tar -xzf libcairomm-1.0-1_1.2.4-2_i386.tar.gz
    tar -xzf libglibmm-2.4-1c2a_2.14.0-0ubuntu1_i386.tar.gz
    tar -xzf libsigc++-2.0-0c2a_2.0.17-2ubuntu2_i386.tar.gz
    tar -xzf libboost-date-time1.34.1_1.34.1-2ubuntu1.1_i386.tar.gz
    tar -xzf libboost-signals1.34.1_1.34.1-2ubuntu1.1_i386.tar.gz
    tar -xzf libboost-iostreams1.34.1_1.34.1-2ubuntu1.1_i386.tar.gz
    tar -xzf libboost-thread1.34.1_1.34.1-2ubuntu1.1_i386.tar.gz
    tar -xzf libbz2-1.0_1.0.4-0ubuntu2.1_i386.tar.gz
    tar -zxf amazonmp3_1.0.3~gutsy_i386.tar.gz
    mkdir -p $pkgdir/opt/amazonmp3
    mkdir -p $pkgdir/usr/share/doc/amazonmp3
    mkdir -p $pkgdir/usr/share/mime-info/
    tar -cf - -C lib ./ | tar -xf - -C $pkgdir/opt/amazonmp3
    tar -cf - -C usr/lib ./ | tar -xf - -C $pkgdir/opt/amazonmp3
    cat > amazonmp3 <<__EOF__
    #!/bin/bash
    export GTK_PATH=/opt/lib32/usr/lib/gtk-2.0
    export GDK_PIXBUF_MODULE=/opt/lib32/config/gdk/gdk-pixbuf.loaders
    export PANGO_RC_FILE=/opt/lib32/config/pango/pangorc
    export LD_LIBRARY_PATH=/opt/lib32/usr/lib:/opt/amazonmp3:\$LD_LIBRARY_PATH
    /opt/amazonmp3/amazonmp3
    __EOF__
    install -D -m644 usr/share/doc/amazonmp3/license.html \
    $pkgdir/usr/share/licenses/amazonmp3-amd64/license.html
    install -D -m755 amazonmp3 $pkgdir/usr/bin/amazonmp3
    install -D -m755 usr/bin/amazonmp3 $pkgdir/opt/amazonmp3/amazonmp3
    install -D -m644 usr/share/applications/amazonmp3.desktop \
    $pkgdir/usr/share/applications/amazonmp3.desktop
    install -D -m644 usr/share/doc/amazonmp3/* \
    $pkgdir/usr/share/doc/amazonmp3
    install -D -m644 usr/share/mime/packages/amazonmp3.xml \
    $pkgdir/usr/share/mime/packages/amazonmp3.xml
    install -D -m644 usr/share/mime-info/* \
    $pkgdir/usr/share/mime-info/
    install -D -m644 usr/share/mimelnk/audio/x-amzxml.desktop \
    $pkgdir/usr/share/mimelnk/audio/x-amzxml.desktop
    install -D -m644 usr/share/pixmaps/amazonmp3.png \
    $pkgdir/usr/share/pixmaps/amazonmp3.png
    Thanks.
    Last edited by lpjhjdh (2008-12-14 18:52:44)

    Hey thanks a lot! I've now removed everything that I previously needed a chroot for!
    The only issue with the PKGBUILD was that it didn't automatically download and install the dependencies: aka deb2targz, lib32-curl, etc. It just stopped with a "ERROR Could not resolve all dependencies". But as soon as I installed them manually, the rest of the PKGBUILD worked great!
    Thanks!  Look forward to seeing it in the AUR!
    Scott

  • XP 64bit Beta OS for AMD64 - old news?

    I'm a 64-bit wannabe, maybe old news, came across this link to get Free *Beta* downloads of either Windows XP 64-BIT Windows Server OR desktop for AMD64, download {90 minutes on DSL} here  
    I'm learning what i need for my build reading the boards,  decided to wait a few months for the socket 939's, PCIExpress, etc,  but gee whiz . . .
    RexB

    Geez SAB, did i really say that, i'm a dunderhead!  Howlongagodidiwritethat,omigawdanybodyelseseenit?
    Thanks, I added them to "Da List".  As i'm digging in reviews and comparison matching and blahblahblah and wasting my meager 56k{42k} bandwidth {waaaa No hi-speed out here in the stix, satellite is price-gouging}
     The quote "K8T800 PRO might give you more BIOS options or CPU speed" endquote.  What does 'might' mean.  If the board gets mad at me it won't give me all it's options?
      Don't laugh, some of this stuff is smoke & mirrors. Yes, there is a possibility that shamans have an 'in' to the spirit world, and these "invisible-to-the-naked-eye-millions-of-transistors-and-doped-silicone" might too in their electromagnetic aura {cancer?tumors?}, who knows?  I'm not superstitious, just careful about pi***ng the wrong things off.
      I'm guessing that cuz i'm not real concerned about advanced graphics or gaming that i wouldn't care if my board was the "K8N for it's AGP/PCI lock". This Anandtech March 23, 2004 test of these chipsets and the N250's predecessor, for what it's worth.  Unbelievable the 2nd-to-last last line of 2nd paragraph.
    . . .""At launch, there were really just two Athlon 64 chipsets - the nVidia nForce3 150 and VIA K8T800. As we have discussed in reviews of boards based on these chipsets, neither one really meets the specifications that we would like to see in Athlon 64 chipsets. Later, SiS introduced the promising 755 chipset, but no one has brought the kind of 755 boards that we hoped to see to market. In addition, our recent tests of the PCI locks on all 3 Athlon 64 chipsets found that none of them really worked. Given this background, we were more than ready for a new chipset for Athlon 64 that would fix many of the issues.""
    Did the K8T800 PRO fix this?               blahblahblah then it goes on:
    . . .""The non-working PCI lock that we later found on nF3-150 also came as a huge surprise. nVidia tells us, and we did confirm, that the PCI lock does work on the nVidia Reference Board for nF3-150, but they are also aware that it did not work in production nF3-150 motherboards. nVidia assures us that this BIOS programming issue is fixed in nF3-250.""
      Can ya' take that to the bank?  How many unsuspecting buyerz got that 150 board for the non-functional PCI lock?!?
    . . I'm just getting into it, but these are the same chipsets on the market today, two months after the article, right, sans the nF3-150?

  • Turbolinux 8 for AMD64 and 32bit oracle9i

    Anybody have installed oracle 9.2.0.1.0 on Turbolinux 8 for AMD64 ? I tried it,but i never succeed.
    When i began to install,it showed error"can't find libjava.so".When i set the parameter JAVA_HOME,the error still appeared.Please give me some advice,thanks!

    I have Oracle Enterprise Edition loaded on dual processor Pentium 133 with 128MB ram running Slackware 8.1.
    It installed with no problems. Oracle 8.1.7 is a different story though.

  • 64 bit IAS 10.1.2 for AMD64/EM64t

    Is there a 64bit version of IAS 10.1.2/3 for AMD64/EM64T or are we still running 32bit verison of the software on a 64bit OS??

    Hi,
    Below links might help you -
    11g certification matrix - 'http://www.oracle.com/technetwork/middleware/ias/downloads/fusion-certification-100350.html'
    10g certification matrix - 'http://www.oracle.com/technetwork/middleware/ias/downloads/idm-certification-101401-083012.html'
    -- Pramod Aravind

  • TurboLinux 8 for AMD64 and Oracle 9i

    I'm a home user that uses Oracle 9i for development learning for work. I currently use SuSE 8.2 Pro for my Oracle 9i development on a dual AMD MP4200; however, I now have a dual Opteron 240 system. The only affordable Linux distros that support the Opteron system I have (Tyan Thunder K8W) is TurboLinux 8 for AMD64.
    I cannot find anything about the ease or difficulties for install Oracle 9i for AMD64 (Developer's Edition for Linux) on this distro. It's rather effortless on SuSE 8.2 Pro and I have installed Oracle 9i on a Solaris 8 server at work. Does anyone know if it's a waste of my money to try to install on this distro? I thought this distro was considered one of the better ones.

    I have Oracle Enterprise Edition loaded on dual processor Pentium 133 with 128MB ram running Slackware 8.1.
    It installed with no problems. Oracle 8.1.7 is a different story though.

  • Athlon64 & Suse9 for AMD64 edition

    Hi there...
    I encounter Serious Problemstrying to install Suse9 for AMD64.
    Environment: MSI K8T Neo, Athlon64 3000+, Adaptec 29160, 1Gig Corsair PC400 Ram, Nvidia Gforce 4600.
    I encounter a Kernel Panic on trying to load the kernel similar to this :
    Code:Bad RIP value
    RIP [000000008010ddbe] RSP [ffffffff804ddfc8]
    Kernel panic: Attempted to kill the idle task!
    In idle task-no syncing
    Unable to handle paging request
    A friend told me i need a bios update . well  i run on 1.2 thats the newest... any suggestions ?
    THX in advance

    We had the same problem and figured out that everything works fine when using the kernel paramter numa=off.  After several hours of work we managed to get the system running with NUMA support by replacing the RAM modules.
    Unfortunately, the user guide doesn't say anything about the relationship between the memory banks and the processors.  In fact, it seems like that the 6 banks belong to CPU 1 while the 4 banks belong to CPU 2.  When using NUMA, it is important that every CPU has its own memory.  Thus, we distributed our 4 memory modules to both CPUs and everything worked fine.
    I hope this helped you.
    Bye,
    Arthur.

  • What motherboard is better for amd64

    I have bought amd64 processor(3200).
    I do not know which motherboard is better for amd64 cpu.
    k8n neo platinum is good choice?

    Hello,
    If it has not got PCI express, you should not get it.
    Wait a bit for the PCI express boards to come out for AMD.
    http://www.pcper.com/article.php?aid=75&type=expert
    http://www.theinquirer.net/?article=19732
    http://www.bit-tech.net/feature/64/
    look for VIA K8T890 based motherboards like the ABIT AX8
    http://www.abit-usa.com/news/2004/20041018.php

  • Error in executing a process for compilation for jsp

    We have an iView which has jsp pages in it. We deployed the par & try toaccess the iview & we get an exception. The issue is that the iview has a jsp page. At the run time, this jsp is converted into a .java file
    without problem. But EP engine is having issues compiling this java fileinto .class file.
    On the other hand this same iview works just fine on our windows installation. Only Solaris EP install is having problems. The version onwindows as well as on Solaris is EP6 SP9.
    Here is the exact version on the solaris EP:
    sap.com/SAP-JEECOR 6.40 SP9 (1000.6.40.9.0.20041119045253) 20041122132733
    sap.com/SAP-JEE 6.40 SP9 (1000.6.40.9.0.20041119045409) 20041122132741
    When I copy the .class file from windows to unix machine, the iView works fine. Here is the exception I am getting:
    >>> JSPCompiler >>> error
    [email protected]a188b
    [EXCEPTION]
    com.sapportals.portal.prt.servlets_jsp.server.compiler.CompilingException:
    Error in executing a process for compilation
    at
    com.sapportals.portal.prt.servlets_jsp.server.compiler.impl.J2eeCompiler_6_30.launchCompilerProcess(J2eeCompiler_6_30.java:574)
    at
    com.sapportals.portal.prt.servlets_jsp.server.compiler.impl.J2eeCompiler_6_30.compileExternal(J2eeCompiler_6_30.java:370)
    at
    com.sapportals.portal.prt.servlets_jsp.server.compiler.impl.J2eeCompiler_6_30.compile(J2eeCompiler_6_30.java:672)
    at
    com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPParser.parse(JSPParser.java:2143)
    at
    com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPCompiler.compile(JSPCompiler.java:76)
    at
    com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPCompiler.run(JSPCompiler.java:122)
    at
    com.sapportals.portal.prt.core.broker.JSPComponentItem.compileJSP(JSPComponentItem.java:279)
    at
    com.sapportals.portal.prt.core.broker.JSPComponentItem.getComponentInstance(JSPComponentItem.java:129)
    at
    com.sapportals.portal.prt.core.broker.PortalComponentItemFacade.service(PortalComponentItemFacade.java:355)
    at
    com.sapportals.portal.prt.core.broker.PortalComponentItem.service(PortalComponentItem.java:934)
    at
    com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:435)
    at
    com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:527)
    at
    com.sapportals.portal.prt.component.AbstractComponentResponse.include(AbstractComponentResponse.java:89)
    at
    com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:232)
    at com.sapportals.portal.htmlb.page.JSPDynPage.doOutput(JSPDynPage.java:76)
    at
    com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:129)
    at
    com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
    at
    com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at
    com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at
    com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at
    com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at
    com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at
    com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
    at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:646)
    at
    com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at
    com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at
    com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at
    com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
    at
    com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:232)
    at
    com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
    at java.security.AccessController.doPrivileged(Native Method)
    at
    com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at
    com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:153)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at
    com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:385)
    at
    com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
    at
    com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:340)
    at
    com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:318)
    at
    com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:821)
    at
    com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:239)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
    at
    com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
    at
    com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
    at
    com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at
    com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    I am having the same issue with another iview which has jsp page in it.
    The web dynpro iview works fine.

    Hi, seems like there's some typo in your jsp. Check the .java file listed with a java editor (like eclipse or devstudio.). Maybe you'll find the typo this way faster.
    Most often, a multiline page import hampers jsp compilation,
    e.g.
    <%@page import="java.util.List,
                    java.util.Map"%>
    needs to be
    <%@page import="java.util.List,java.util.Map"%>
    Regards,
    Armin

  • Adt compile for ipa-app-store never completes

    I'm trying to compile my project for the app store. It compiles without issue in about five minutes when compiled for ipa-test or ipa-debug. I'm compiling it for ipa-app-store right now but the process has been running for over two hours. I can see the java process running and the memory fluctuating, which tells me it's not frozen, but the temp files that are created aren't changing at all, which makes it seem like nothing is happening. Does anyone have any ideas what could be wrong? I'm using the latest version of the Flex framework with the latest AIR sdk on a machine running Windows 7.

    I did eventually figure it out. At the time I didn't know how to embed an XML file, so I was taking the file and converting it to a reallly long string. It was in the format of:
    xmlString += "<xmlTag>stuff</xmlTag>";
    xmlString += "<otherTag>stuff</otherTag>";
    There were three files, the shortest of which was over 1000 lines long. For some reason the compiler just choked on that. If I had even one of them in there it wouldn't compile for the app store. The moment I removed them, everything could compile just fine. That was when I figured out how to just embed the XML files and everything has worked since. Interestingly, my compile times for test and debug mode dropped by half once I did that; so it was clearly causing some issues for the compiler in general.
    If you don't have a file like the one I just described, I would recommend commenting out almost everything in your main file and compiling it. If you have an empty project, everything should compile correctly. Start adding things back in one at a time until you get the problem. That was how I ended up nailing down what was happening for us.

  • How do you compile for flash player 11.3 in Flash Professional CS6?

    I can add a new AIR SDK and compile for AIR 3.3, but I can't figure out how to compile for Flash Player 11.3. 
    Thanks

    You'll have a much better chance of getting a prompt answer in the Flash Professional forum:
    Flash Professional
    This forum is for Adobe Creative Cloud issues.

  • Trying to cross compile for ARM phone (android galaxy S4)

    i am trying to cross compile for my galaxy S4 on my 64 bit arch install, and ran into a host of issues. Currently at a specific error message in the code box below, after downloading the android NDK at https://developer.android.com/tools/sdk/ndk/index.html and running:
    android-ndk-r9d/build/tools/make-standalone-toolchain.sh
    this gave me android-ndk-gcc (directory)
    so i read up some basics on how to set the compiler via:
    'export CC=/home/earth/android-ndk-gcc/bin/arm-linux-androideabi-gcc'
    then i downloaded Bash's source code and tried to run variations of ./configure with no success until i tried:
    './configure --host=arm-linux --enable-static-link --without-bash-malloc'
    which resulted in successful whatever configure does (sets up make file stuff?)
    the result of 'make' was (only posting the one compile iteration that resulted in an error):
    /home/earth/android-ndk-gcc/bin/arm-linux-androideabi-gcc -c -I. -I../.. -I../.. -I../../lib -I../../include -I. -I../../lib/intl -I/home/earth/project/bash-4.3/lib/intl -DHAVE_CONFIG_H -DSHELL -g -O2 oslib.c
    oslib.c:238:1: error: redefinition of 'mkfifo'
    /home/earth/android-ndk-gcc/bin/../sysroot/usr/include/sys/stat.h:129:23: note: previous definition of 'mkfifo' was here
    oslib.c: In function 'mkfifo':
    oslib.c:239:12: error: argument 'path' doesn't match prototype
    /home/earth/android-ndk-gcc/bin/../sysroot/usr/include/sys/stat.h:129:23: error: prototype declaration
    oslib.c:240:10: error: argument 'mode' doesn't match prototype
    /home/earth/android-ndk-gcc/bin/../sysroot/usr/include/sys/stat.h:129:23: error: prototype declaration
    Makefile:78: recipe for target 'oslib.o' failed
    make[1]: *** [oslib.o] Error 1
    make[1]: Leaving directory '/home/earth/project/bash-4.3/lib/sh'
    Makefile:643: recipe for target 'lib/sh/libsh.a' failed
    make: *** [lib/sh/libsh.a] Error 1
    I am in no way experienced with compiling things, but i did manage to compile a simple helloworld.c program for my phone and run it successfully on the phone, which tells me the compiler works okay.
    Can anyone give me more information on what's happening? Google returns almost nothing on any of these errors, especially the oslib.c errors.

    You should check out the Android NDK documentation.  The NDK comes with a cross compiler specifically for android, with the correct versions of libraries, etc.  It comes with some examples showing how to build stuff for it.
    EDIT: There is also an AUR package for it.
    Last edited by tom5760 (2011-04-04 15:56:25)

  • Regarding Goods Reversal and Goods Issue process for Production orders

    Hi,
    I have a issue regarding <b>Goods Reversal</b> and <b>Goods Issue</b> process for <b>Production orders</b>.
    Actually I am having a Z - Function Module in that i am passing <b>production order number other details</b> to
    make the <b>Goods Reversal</b> happen.
    The code for the above is as below:
                       i_mvtit-material      = wa_mdfa-matnr.
                        i_mvtit-plant         = i_resb-werks.
                        i_mvtit-spec_stock    = 'Q'.          "New
                        i_mvtit-stge_loc      = 'ZWIP'.
                        i_mvtit-stge_type     = i_resb-lgtyp. "New
                        i_mvtit-batch         = i_resb-charg. "New
                        i_mvtit-orderid       = i_resb-aufnr.
                        i_mvtit-spec_stock    = i_resb-sobkz.
                        i_mvtit-entry_qnt     = i_resb-enmng.
                        i_mvtit-entry_uom     = i_resb-erfme.
                        i_mvtit-entry_uom_iso = i_resb-meins. "New
                        i_mvtit-wbs_elem      = v_frwbs.
                        i_mvtit-move_type     = '262'.
                        i_mvtit-xstob         = 'X'.
                        i_mvtit-gr_rcpt       = i_resb-aufnr. "New
                        i_mvtit-reserv_no     = i_resb-rsnum.
                        i_mvtit-res_item      = i_resb-rspos.
                        APPEND i_mvtit.
    * HEADER ELEMENTS
                        k_gmvt_code-gm_code    = '03'.
                        k_gmvt_head-pstng_date = sy-datum.
                        k_gmvt_head-doc_date   = sy-datum.
    * CREATE GOODS MOVEMENTS
                        CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
                          EXPORTING
                            goodsmvt_header = k_gmvt_head
                            goodsmvt_code   = k_gmvt_code
                          TABLES
                            goodsmvt_item   = i_mvtit
                            return          = i_return.
    The Above code does the <b>Goods Reversal</b> but then i will update one Z Table with fields like
    Production Order Number[AUFNR], Number of Reservation[RSNUM], Item Number of Reservation [RSPOS], Material Number [MATNR], Requirement Quantity [BDMNG], WBS element[PSPNR] etc. If Above BAPI runs sucessfully.
    That is happening correctly.
    But Then actual issue is i have do <b>Goods Issue</b> for those Z-Table records.
    There i will give Production order Number's & Storage Location in Selection-Criteria.
    Then i need to do <b>Goods Issue</b> for that order.
    The code i had written as follows.
    * POPULATE VALUES FOR BAPI CALL
            i_mvtit-material      = i_zpsi7603_01-matnr.
            i_mvtit-plant         = i_resb-werks.
            i_mvtit-spec_stock    = 'Q'.                "New
            i_mvtit-stge_loc      = p_sloc.
            i_mvtit-stge_type     = i_resb-lgtyp.       "New
            i_mvtit-batch         = i_resb-charg.
            i_mvtit-orderid       = i_resb-aufnr.
            i_mvtit-spec_stock    = i_resb-sobkz.
            i_mvtit-entry_qnt     = i_resb-enmng.
            i_mvtit-entry_uom     = i_resb-erfme.
            i_mvtit-entry_uom_iso = i_resb-meins.       "New
            i_mvtit-wbs_elem      = v_frwbs.
            i_mvtit-move_type     = c_261.
            i_mvtit-mvt_ind       = 'F'.                "New
            i_mvtit-xstob         = c_x.
            i_mvtit-gr_rcpt       = i_resb-aufnr.       "New
            i_mvtit-reserv_no     = i_resb-rsnum.
            i_mvtit-res_item      = i_resb-rspos.
            APPEND i_mvtit.
    * HEADER ELEMENTS
            k_gmvt_code-gm_code    = c_03.
            k_gmvt_head-pstng_date = sy-datum.
            k_gmvt_head-doc_date   = sy-datum.
    * CREATE GOODS MOVEMENTS
            CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
              EXPORTING
                goodsmvt_header = k_gmvt_head
                goodsmvt_code   = k_gmvt_code
              TABLES
                goodsmvt_item   = i_mvtit
                return          = i_return.
            CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
              EXPORTING
                wait = c_x.
            READ TABLE i_return INDEX 1.
            IF i_return-type EQ c_s.
              DELETE FROM zpsi7603_01 WHERE aufnr = i_resb-aufnr AND
                                            rsnum = i_resb-rsnum AND
                                            rspos = i_resb-rspos.
            ENDIF.
    If i run above code for <b>Goods Issue</b> it is giving error can anybody tell me what changes i need to do to make it work.
    The <b>Error Message</b> i am getting is as below:
    <b>Qty and / or "delivery completed" ind. or final issue ind. are missing</b>
    <b>Error Number for the above is : 264.</b>
    Can anybody solve my issue.
    Any help will be appreciated.
    Thanks in advance.
    Thanks & Regards,
    Rayeez.

    Hi,
    Thanks boss.
    It is working now correctly.
    The issue is the  i_mvtit-XSTOB should be equal space in case of Goods issue while incase of Reversal it should be equal to X.
    Thanks for ur efforts.
    I had awarded you points.
    Thanks a lot.
    Thanks & Regards,
    Rayeez.

Maybe you are looking for

  • Error Code-50 when trying to copy or delete files on external hard drive

    Hi, I am in process of backing up large HD video files from one external hard drive to another using Carbon Copy Cloner software.  I get this error message:  "This file or folder is sitting on a bad section of hard disk media and is unrecoverable. De

  • How can I connect multiple speakers to the Mac Mini?

    Just received and setup up my new Mac Mini (Dual-Core i7, 8GB memory, 750GB disk) with OS Lion.  Still in newbie phase.  I have a set of 3-way Boston Acoustic speakers (w/ subwoofer) from an old Gateway computer.  Is there any way/adapter available t

  • My ipod touch 4G will only show apple logo, and can't be turned on and off?

    It eventually runs out of battery but that doesn't change anything. All i can do is hold down the power and home screen button simultaneosly for a while. After this it flashes white then black then back to logo. Anyone know what to do? I plug it into

  • New "SQL Developer Team Announcements" sticky note

    In the new SQL Developer Team Announcements sticky note posted a couple of days ago: <li>Is "SQL Developer Team Announcements" the right title? It appears to be hard enough to get people to read these things anyway, and this suggests that it's either

  • AC_RunActiveContent.js Giving Off IE 5 signatures in logs

    I'm using a Flash Object on our main homepage (www.usgs.gov) that is exported for version 6 and above. It's embedded in the page using the code from DW CS3 with the AC_RunActiveContent.js file. Yesterday I was going through our logs and found that 35