Strange error at compiling

Hello everyone.
I am trying to compile my investigation code using the sun studio 12 update 1.
i can compile correctly and run without problems if i don't activate openmp.
when i add the flag -xopenmp i get the error:
sun.compile.c++ /home/riccardo/sun_kratos/kratos/applications/incompressible_fluid_application/bin/sun-5.10/release/stdlib-sun-stlport/threading-multi/add_custom_strategies_to_python.o
>> Assertion: (../lnk/bindutil.cc, line 341)
while processing /home/riccardo/sun_kratos/kratos/applications/incompressible_fluid_application/custom_python/add_custom_strategies_to_python.cpp at line 0.
"CC" -library=stlport4 -w -xopenmp -DBOOST_UBLAS_UNSUPPORTED_COMPILER=0 -xO4 -mt -erroff=%none -KPIC -DKRATOS_PYTHON -DNDEBUG -I"/home/riccardo/scratch/boost_1_41_0" -I"/home/riccardo/sun_kratos/kratos/applications/incompressible_fluid_application" -I"/home/riccardo/sun_kratos/kratos/external_libraries" -I"/home/riccardo/sun_kratos/kratos/external_libraries/omptl" -I"/home/riccardo/sun_kratos/kratos/kratos" -I"/usr/include/python2.6" -I"kratos/kratos" -c -o "/home/riccardo/sun_kratos/kratos/applications/incompressible_fluid_application/bin/sun-5.10/release/stdlib-sun-stlport/threading-multi/add_custom_strategies_to_python.o" "/home/riccardo/sun_kratos/kratos/applications/incompressible_fluid_application/custom_python/add_custom_strategies_to_python.cpp"
my problem is that it is really little descriptive ...
could anyone give me an idea about what this Assertion stuff means?
this is the only error i have left ... but i really do not understand what it means :-(
any help is welcome
thank you
Riccardo
P.S. please answer also at [email protected]

The compiler assertion means the C++ parser got itself into an "impossible" situation and had to abort. Specifically, it thought it was at the end of a full expression, but also seemed not to be at the top of the parse tree -- contradiction, no way to continue.
There is no way to know what caused the problem, or to fix it in the compiler, without a test case. The abort is always a compiler bug, and we don't like the compiler to abort.
You might be able to narrow down the problem by binary search. In any case, you can file a bug report at [http://bugs.sun.com]. You will be asked for a test case, which could be larger than anything you could reasonably post in the forum.
For faster and better service, you can get a support contract with Sun. Support options are here:
[http://developers.sun.com/sunstudio/support/index.jsp]

Similar Messages

  • [SOLVED] Strange error while compiling packages via AUR

    I've been facing this error while compiling packages via AUR. I'm also posting the output of my /etc/makepkg.conf
    Error
    ==> Starting build()...
    checking for a BSD-compatible install... /bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking whether cc supports -O2... yes
    checking for g++... g++
    checking whether the C++ compiler works... yes
    checking for C++ compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C++ compiler... yes
    checking whether g++ accepts -g... yes
    checking for style of include used by make... GNU
    checking dependency style of g++... gcc3
    checking for gcc... gcc
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... gcc3
    checking for pkg-config... /usr/bin/pkg-config
    checking pkg-config is at least version 0.9.0... yes
    checking for GSTREAMER... yes
    checking for GSTREAMER_GTK... yes
    checking for XOpenDisplay in -lX11... yes
    checking for ncursesw5-config... /usr/bin/ncursesw5-config
    checking for initscr in -lncurses... yes
    checking whether gcc supports -Wall... yes
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating src/Makefile
    config.status: creating docs/Makefile
    config.status: creating config.h
    config.status: executing depfiles commands
    fatal: Not a git repository (or any of the parent directories): .git
    CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /tmp/yaourt-tmp-hellknight/aur-gst123/src/gst123-0.2.0/build-aux/missing --run aclocal-1.11 -Wno-portability
    sh: autom4te: command not found
    aclocal-1.11: autom4te failed with exit status: 127
    make: *** [aclocal.m4] Error 1
    ==> ERROR: A failure occurred in build().
    Aborting...
    ==> ERROR: Makepkg was unable to build gst123.
    ==> Restart building gst123 ? [y/N]
    ==> -------------------------------
    ==>
    /etc/makepkg.conf
    # /etc/makepkg.conf
    # SOURCE ACQUISITION
    #-- The download utilities that makepkg should use to acquire sources
    # Format: 'protocol::agent'
    DLAGENTS=('ftp::/usr/bin/wget -c --passive-ftp -t 3 --waitretry=3 -O %o %u'
    'http::/usr/bin/wget -c -t 3 --waitretry=3 -O %o %u'
    'https::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O %o %u'
    'rsync::/usr/bin/rsync -z %u %o'
    'scp::/usr/bin/scp -C %u %o')
    # Other common tools:
    # /usr/bin/snarf
    # /usr/bin/lftpget -c
    # /usr/bin/curl
    # ARCHITECTURE, COMPILE FLAGS
    CARCH="x86_64"
    CHOST="x86_64-unknown-linux-gnu"
    #-- Exclusive: will only run on x86_64
    # -march (or -mcpu) builds exclusively for an architecture
    # -mtune optimizes for an architecture, but builds for whole processor family
    CFLAGS="-march=amdfam10 -mtune=generic -O2 -pipe"
    CXXFLAGS="${CFLAGS}"
    LDFLAGS="-Wl,--hash-style=gnu -Wl,--as-needed"
    #-- Make Flags: change this for DistCC/SMP systems
    MAKEFLAGS="-j8"
    # BUILD ENVIRONMENT
    # Defaults: BUILDENV=(fakeroot !distcc color !ccache)
    # A negated environment option will do the opposite of the comments below.
    #-- fakeroot: Allow building packages as a non-root user
    #-- distcc: Use the Distributed C/C++/ObjC compiler
    #-- color: Colorize output messages
    #-- ccache: Use ccache to cache compilation
    BUILDENV=(fakeroot !distcc color !ccache)
    #-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
    #-- specify a space-delimited list of hosts running in the DistCC cluster.
    #DISTCC_HOSTS=""
    # GLOBAL PACKAGE OPTIONS
    # These are default values for the options=() settings
    # Default: OPTIONS=(strip docs libtool emptydirs zipman purge)
    # A negated option will do the opposite of the comments below.
    #-- strip: Strip symbols from binaries/libraries in STRIP_DIRS
    #-- docs: Save doc directories specified by DOC_DIRS
    #-- libtool: Leave libtool (.la) files in packages
    #-- emptydirs: Leave empty directories in packages
    #-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip
    #-- purge: Remove files specified by PURGE_TARGETS
    OPTIONS=(strip docs libtool emptydirs zipman purge)
    #-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
    INTEGRITY_CHECK=(md5)
    #-- Options to be used when stripping binaries. See `man strip' for details.
    STRIP_BINARIES="--strip-all"
    #-- Options to be used when stripping shared libraries. See `man strip' for details.
    STRIP_SHARED="--strip-unneeded"
    #-- Options to be used when stripping static libraries. See `man strip' for details.
    STRIP_STATIC="--strip-debug"
    #-- Manual (man and info) directories to compress (if zipman is specified)
    MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info})
    #-- Doc directories to remove (if !docs is specified)
    DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc})
    #-- Directories to be searched for the strip option (if strip is specified)
    STRIP_DIRS=(bin lib sbin usr/{bin,lib,sbin,local/{bin,lib,sbin}} opt/*/{bin,lib,sbin})
    #-- Files to be removed from all packages (if purge is specified)
    PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
    # PACKAGE OUTPUT
    # Default: put built package and cached source in build directory
    #-- Destination: specify a fixed directory where all packages will be placed
    #PKGDEST=/home/packages
    #-- Source cache: specify a fixed directory where source files will be cached
    #SRCDEST=/home/sources
    #-- Source packages: specify a fixed directory where all src packages will be placed
    #SRCPKGDEST=/home/srcpackages
    #-- Packager: name/email of the person or organization building packages
    #PACKAGER="John Doe <[email protected]>"
    # EXTENSION DEFAULTS
    # WARNING: Do NOT modify these variables unless you know what you are
    # doing.
    PKGEXT='.pkg.tar.xz'
    SRCEXT='.src.tar.gz'
    # vim: set ft=sh ts=2 sw=2 et:
    Last edited by tarun.hellknight (2011-04-12 15:45:26)

    That's strange... it wasn't installed.. although I had never,ever faced a problem while compiling packages via AUR.. maybe, I should be careful when uninstalling orphans.. thanks for the help..

  • Strange errors on compiling in solaris 10

    I was trying to compile my application on solaris 10 and i got these strange long list of errors. i tried to verify the same by just trying to compile the hello world program and got the same error messages. i am using solaris 10 machine with gcc 3.4.2.
    Also kindly note that its a 64 bit machine....
    i am getting the following error messages:
    # bash-3.00$ gcc hello.c -o hello
    In file included from hello.c:1:
    /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/include/stdio.h:36:27: iso/stdio_i
    so.h: No such file or directory
    In file included from hello.c:1:
    /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/include/stdio.h:194: error: parse
    error before '*' token
    /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/include/stdio.h:229: error: parse
    error before '*' token
    /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/include/stdio.h:230: error: parse
    error before '*' token
    /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/include/stdio.h:236: error: parse
    error before '*' token
    /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/include/stdio.h:244: error: parse
    error before "size_t"
    /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/include/stdio.h:249: error: parse
    error before "size_t"
    /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/include/stdio.h:258: error: parse
    error before '*' token
    /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/include/stdio.h:260: error: parse
    error before '*' token
    /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/include/stdio.h:284: error: parse
    error before '*' token
    /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/include/stdio.h:293: error: parse
    error before '*' token
    /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/include/stdio.h:294: error: parse
    error before "FILE"
    /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/include/stdio.h:295: error: parse
    error before '*' token
    Is it becoz of the gcc or something. Please help, as it is very important for me to solve this issue early or else i am dead meat.
    Thanks in advance
    -Sjain

    Thanx Again Robert. But i have been able to resolve the issue. Dont ask me how coz even i dont know. I just installed the gcc 3.3.2 from sunfreeware compatible for solaris 10. yes, the mkheaders command did help me a great extent as simply installing the gcc from sunfreeware site didnt help, i had to explicitly do mkheaders to be able to use the gcc. but at the end of it, i am now running gcc... thankx for ur valuable help and that too a repeated one :-) am a happy man now!!!
    -Sjain

  • Strange error in compiling a jsp in jdev

    I tried to compile a jsp using a custom jsp tag. All the requried java libraries are set in project's library path and additional path. But I got a class name used by the tag as the compiling error. No any message regarding to it. I think this may be related to the jsp compiler checking the custom tag's attribute type and tld file, but don't know how to fix it in jdev environment. Any help will be appreciated.

    This is what I set in web.xml:
    <taglib>
    <taglib-uri>http://xmlns.oracle.com/j2ee/jsp/tld/ordim/intermedia-taglib.tld</taglib-uri>
    <taglib-location>/WEB-INF/intermedia-taglib.tld</taglib-location>
    </taglib>
    I set the path to the tag library jar file ordjsptag.jar in the additional path of the project. I think the compiler can find the jar file.
    This tag library also uses another component of Oracle: ordim.jar and it is also in the library path of the project. I can import the class in ordim.jar from the project's jsp page. But when I compile the jsp that contains my custom tag, I got error message: "oracle.ord.im.OrdImage" which is a class name in ordim.jar.

  • Getting an strange error in "PluginPrefix.pch" while compiling a plugin code with InDesign CS4 SDK.

    Hi everybody,
    Currently trying to compile/build the existing Plugin code (C++) with InDesign CS4 SDK on my Mac OS X 10.5 machine but getting following strange errors.
      /Volumes/MAC Extended/Inbetween Extended/Visual Studio/Adobe InDesign CS4 SDK/source/precomp/gcc/PluginPrefix.pch:26:27: error: MemoryStatics.h: No such file or directory
      /Volumes/MAC Extended/Inbetween Extended/Visual Studio/Adobe InDesign CS4 SDK/source/precomp/gcc/PluginPrefix.pch:39:30: error: PluginBuildFlags.h: No such file or directory
      /Volumes/MAC Extended/Inbetween Extended/Visual Studio/Adobe InDesign CS4 SDK/source/precomp/gcc/PluginPrefix.pch:40:28: error: AnsiBasedTypes.h: No such file or directory
      /Volumes/MAC Extended/Inbetween Extended/Visual Studio/Adobe InDesign CS4 SDK/source/precomp/gcc/PluginPrefix.pch:41:26: error: ShukHeaders.cp: No such file or directory
    Though above mentioned files are present at the following directory
    /Volumes/../../../Adobe InDesign CS4 SDK/source/precomp/common/
    Note : However initially I did not find “MemoryStatics.h” and “AnsiBasedTypes.h” files in the installed SDK directory. I have downloaded them from the net and copied those into the above mentioned directory.
    I am not much familiar with Mac OS environment and compiling/building C++ code with Xcode. Can anyone help me to resolve this issue (might be very trivial and related to Xcode project configuration) ?

    Thanks for the quick response,
    Yes, current build settings include path shortcuts as mentioned below and it also contains “$(CS_SDK_PATH)/source/public/includes” path in HEADER_SEARCH_PATHS settings.  But still I am getting the same error: MemoryStatics.h: No such file or directory
    CS_SDK_PATH= /Volumes/MAC Extended/Inbetween Extended/Visual Studio/Adobe InDesign CS4 SDK
    CS_SDK_PRJ_PATH=/Volumes/MAC Extended/Inbetween Extended/Visual Studio/InBetweenDev/Projects/InBetweenCS/IBClientPluginCS3/prjCS4/mac
    Just for clarification : my Plugin code /project files are not inside the InDesign SDK (build/mac/prj). All the plugin project is outside of the InDesign SDK directory. Thus above mentioned CS_SDK_PATH and CS_SDK_PRJ_PATH are completely different.
    Is it expected that the plugin code/project files should be inside the InDesign SDK/build/mac/prj  directory only ? or is it okay if we put it in the completely another directory structure and modify the  SDK_PRJ_PATH accordingly (as in my case) ?
    Please let me know if you want me to elaborate the situation further.

  • Strange error caused by location of source during compilation

    I have been trying to get KVPM from AUR ( http://aur.archlinux.org/packages.php?ID=32060 ) to build but I kept getting this error during compilation (make) http://pastebin.com/6smA3iKy
    I tried all different kinds of modifications to PKGBUILD but with no success. I later realized that if I unpacked manually and tried to compile it worked, even giving a functional executable. Then I tried forcing a manual extraction of the sources in PKBUILD and I still got the same error. The only way it would compile without the error is if the sources remained outside of makepkg's default 'src' folder. Nothing else worked.
    Why is this? Is this a bug in makepkg? Is there something wrong with my installation?
    Here is the original PKBUILD: http://aur.archlinux.org/packages/kvpm/kvpm/PKGBUILD
    and the PKBUILD that worked for me: http://aur.pastebin.com/VFXr8RJB

    I have been trying to get KVPM from AUR ( http://aur.archlinux.org/packages.php?ID=32060 ) to build but I kept getting this error during compilation (make) http://pastebin.com/6smA3iKy
    I tried all different kinds of modifications to PKGBUILD but with no success. I later realized that if I unpacked manually and tried to compile it worked, even giving a functional executable. Then I tried forcing a manual extraction of the sources in PKBUILD and I still got the same error. The only way it would compile without the error is if the sources remained outside of makepkg's default 'src' folder. Nothing else worked.
    Why is this? Is this a bug in makepkg? Is there something wrong with my installation?
    Here is the original PKBUILD: http://aur.archlinux.org/packages/kvpm/kvpm/PKGBUILD
    and the PKBUILD that worked for me: http://aur.pastebin.com/VFXr8RJB

  • Strange error compiling rox-session

    Using thegnu's PKGBUILD, updated to download the latest version of rox-session:
    gcc -march=i686 -O2 -pipe -Wl,-O1 -Wall -Wmissing-prototypes -I/usr/X11R6/include `pkg-config --cflags gtk+-2.0 libxml-2.0 dbus-1 dbus-glib-1` -I. -c -o dbus.o dbus.c
    dbus.c: In function `connect_to_bus':
    dbus.c:298: warning: implicit declaration of function `dbus_bus_service_exists'
    dbus.c:311: warning: implicit declaration of function `dbus_bus_acquire_service'
    dbus.c:325: error: `DBUS_PATH_ORG_FREEDESKTOP_LOCAL' undeclared (first use in this function)
    dbus.c:325: error: (Each undeclared identifier is reported only once
    dbus.c:325: error: for each function it appears in.)
    dbus.c:326: error: `DBUS_INTERFACE_ORG_FREEDESKTOP_LOCAL' undeclared (first use in this function)
    make: *** [dbus.o] Error 1
    Compile failed
    Press Return...
    (Bizarrely, ABS will create a package even if the compile fails, and install it if the -i option is used. :? )

    Euphoric Nightmare wrote:is it possible that you don't have all the deps installed?
    Nope, checked, and used the -s option.
    Penguin wrote:could you post the PKGBUILD? maybe appending || return 1 to make install would have stopped it from completing the build after the error...
    # $Id$
    # Contributor: Nathan Curry <[email protected]>
    pkgname=rox-session
    pkgver=0.1.25
    pkgrel=1
    groups=('rox-desktop')
    pkgdesc="Session manager for the ROX desktop environment"
    url="http://dl.sourceforge.net/sourceforge/rox/$_srcname-$pkgver.tgz"
    depends=('rox-lib' 'glib2>=2.4' 'dbus' 'python')
    source=(http://dl.sourceforge.net/sourceforge/rox/ROX-Session-$pkgver.tgz)
    build() {
    cd $startdir/src/ROX-Session-$pkgver/ROX-Session
    ./AppRun --compile
    cd ..
    mkdir -p $startdir/pkg/usr/apps/
    cp -rp ROX-Session $startdir/pkg/usr/apps/
    mkdir -p $startdir/pkg/usr/bin
    echo "#!/bin/sh" > "$startdir/pkg/usr/bin/$pkgname"
    echo "exec /usr/apps/ROX-Session/AppRun "$@"" >> "$startdir/pkg/usr/bin/$pkgname"
    chmod a+x $startdir/pkg/usr/bin/$pkgname

  • Strange Error inside of my MIDlets; ONLY on mobilephones. Emulator works

    Hi there,
    I got an strange error during using my MIDlets on my mobilephone.
    I created two MIDlets, connecting to webservers via HTTP.
    both work fine in emulator, but not on a real phone :-(
    Logging from server tells me,
    that NO request was sent to the server.
    I got back that Exception:
    ConnectionNotFoundException
    with message: Error connecting
    Did I missed a config-detail, or whats wrong on this?
    Thanks in advice.
    Regards,
    Matthias

    Khalid.Ali,
    thanks for you quik replay!
    Yes, my phone supports MIDP2.0and CLDC 1.1
    My Midlet compiles agains MIdP1 and MIDP2
    It runs! All screens are shown on my phone.
    but when I press the Command to send a Request,
    I got that Exception.
    (The message of the Exception I read in catch-block
    and put it to the Form-class, shown after that)
    so MIDlet works, but not the HTTP-Access
    any ideas?
    Please, what did you mean with "data plan with your service provider" ?
    I could read the page in WAP-Browser (from my phone) that I try to read
    in the MIDlet with HTTP
    Thanks

  • RE: Strange Error.

    Tres,
    Make sure that the following file exist:
    /adedev1/userapp/daucbri/cl0/DAUBRI.a
    It might have compiled fine but might have not moved it to the userapp
    directory. This happens when you load the distribution from econsole.
    Another thing I noticed is that AIX 4.3.1 and VisualAge 3.6.4 is not
    supported by Forte. I think this is your problem.
    ka
    Kamran Amin
    Forte Technical Leader, Core Systems
    (203)-459-7362 or 8-204-7362 - Trumbull
    [email protected]
    From: Tres Bain[SMTP:[email protected]]
    Sent: Tuesday, January 05, 1999 10:50 AM
    To: [email protected]
    Subject: Strange Error.
    I am wrapping a C library on AIX 4.3.1 with VisualAge 3.6.4. Everything
    compiles and links error free. It installs fine. When I try to activate
    the service which employs the code, I get the following error:
    SYSTEM ERROR: Unable to start the partition BRITester_cl0_Part1 on any of
    the
    nodes to which it has been assigned. See the remainder of the error
    stack
    for
    more information.
    Class: qqsp_ResourceException
    Error #: [1602, 593]
    Detected at: qqcf_StandardConfig::LoadRemotePartition at 5
    Last TOOL statement: method partws.HandleRunCmd
    Error Time: Tue Jan 05 09:40:17
    Exception occurred (locally) on partition "Forte_cl0_Client",
    (partitionId
    = 279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13c:0x2, taskId =
    [279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13c:0x2.24]) in application
    "FTLaunch_cl0", pid 376 on node L6019148 in environment ADEDEV1.
    SYSTEM ERROR: Unable to start partition BRITester_cl0_Part1 on node
    l5016425.
    Class: qqsp_ErrorDescriptor
    Error #: [1602, 592]
    Detected at: qqcf_StandardConfig::LoadRemotePartition at 3
    Error Time: Tue Jan 05 09:40:17
    Exception occurred (locally) on partition "Forte_cl0_Client",
    (partitionId
    = 279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13c:0x2, taskId =
    [279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13c:0x2.24]) in application
    "FTLaunch_cl0", pid 376 on node L6019148 in environment ADEDEV1.
    SYSTEM ERROR: Attempt to load partition named BRITester_cl0_Part1 failed.
    Class: qqsp_ResourceException
    Error #: [1001, 4]
    Detected at: qqrt_ForteExecAgent::LoadPartition at 1
    Error Time: Tue Jan 5 09:40:40
    Distributed method called: qqrt_ForteExecAgentProxy.LoadPartition!6
    (object name Unnamed) from partition "Forte_cl0_Client",
    (partitionId
    =
    279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13c:0x2, taskId =
    [279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13c.4]) in application
    "FTLaunch_cl0", pid 376 on node L6019148 in environment ADEDEV1
    Exception occurred (remotely) on partition "Forte_Executor",
    (partitionId
    = 279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13d, taskId =
    [279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13d.3]) in application
    "Forte
    Runtime", pid 14738 on node l5016425 in environment ADEDEV1.
    SYSTEM ERROR: Failed to create service object
    BRItoDAU.svcBusinessRulesDataAccessor.
    Class: qqsp_ResourceException
    Last TOOL statement: method BusinessRulesDAU.
    Error Time: Tue Jan 5 09:40:39
    Exception occurred (remotely) on partition "Forte_Executor",
    (partitionId
    = 279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13d, taskId =
    [279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13d.3]) in application
    "Forte
    Runtime", pid 14738 on node l5016425 in environment ADEDEV1.
    SYSTEM ERROR: ERROR: qqrt_4GLInterface: Can't set up activation record for
    method 9 of qqlo_Object
    Class: qqsp_ErrorDescriptor
    Detected at: qqrt_4GLInterface at 1
    Error Time: Tue Jan 5 09:40:38
    Exception occurred (remotely) on partition "Forte_Executor",
    (partitionId
    = 279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13d, taskId =
    [279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13d.3]) in application
    "Forte
    Runtime", pid 14738 on node l5016425 in environment ADEDEV1.
    USER ERROR: The dynamic library /adedev1/userapp/daucbri/cl0/DAUBRI for
    the
    project DAUcBRI could not be found.
    Class: qqsp_ExistenceException
    Detected at: qqsh_ScopeLoader::Load at 1
    Last TOOL statement: method BusinessRulesDAU.
    Error Time: Tue Jan 5 09:40:38
    Exception occurred (remotely) on partition "Forte_Executor",
    (partitionId
    = 279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13d, taskId =
    [279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13d.3]) in application
    "Forte
    Runtime", pid 14738 on node l5016425 in environment ADEDEV1.
    SYSTEM ERROR: System Error: No such file or directory (errno = 2) shr2.o
    shr2.o libC_r.a shr2.o , loading the library
    '/adedev1/userapp/daucbri/cl0/DAUBRI.a'
    Class: qqos_DynamicLibraryException
    Error #: [101, 29]
    Detected at: qqos_DynamicLibrary::OSLoad at 1
    Error Time: Tue Jan 5 09:40:38
    Exception occurred (remotely) on partition "Forte_Executor",
    (partitionId
    = 279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13d, taskId =
    [279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13d.3]) in application
    "Forte
    Runtime", pid 14738 on node l5016425 in environment ADEDEV1.
    The bottom of the stack contains what I believe is important. It is
    looking
    for the C runtime and shr2.o. I have tried a few things to resolve these
    references. I have this feeling that I am overlooking something simple.
    This same c library which I have wrapped here, was successfully wrapped
    and
    used on AIX 4.2.1 with a version of C-Set compiler. The forte code did not
    change in the port. The C code had modest changes.
    This is a plea for ideas. I will even take ideas to get more ideas.
    Thanks in advance.
    Tres Bain
    I/T Systems Consultant -- ADE Technical Center
    USAA
    9800 Fredricksburg Rd.
    San Antonio, TX 78288
    Email - mailto:[email protected]
    Phone - 210-913-5017
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi Tres,
    This sounds very similar to a problem that we have seen on Intel platforms with wrappered libraries, so I am guessing it is a similar scenario. When we get "Can't set up activation record for method 9 of qqlo_Object" it means a problem loading an external library. What happens is this - Forte loads the wrapper library (in your case, DAUBRI.a). After that, the operating system takes over and attempts to load any other libraries that are dynamically linked to it. This means that the OS, and not Forte, must be able to find the shared libraries. Try putting shr2.o and possibly libC_r.a in the same userapp... directory with DAUBRI.a and see if that helps. If not, try putting them in a directory where AIX automatically looks for executable modules.
    If that doesn't work, let me know, and we will figure something else out.
    Good Luck!
    Jeanne
    ======================================================
    Jeanne Hesler <[email protected]>
    MSF&W Software
    Product Development
    (217) 698-3535 ext. 207
    http://www.msfw.com
    ======================================================
    /\ Imaging Developer - the only imaging product
    \/ integrated into the Forte Development Environment
    ======================================================
    -----Original Message-----
    From: Tres Bain [SMTP:[email protected]]
    Sent: Tuesday, January 05, 1999 9:51 AM
    To: [email protected]
    Subject: Strange Error.
    I am wrapping a C library on AIX 4.3.1 with VisualAge 3.6.4. Everything
    compiles and links error free. It installs fine. When I try to activate
    the service which employs the code, I get the following error:
    SYSTEM ERROR: Unable to start the partition BRITester_cl0_Part1 on any of
    the
    nodes to which it has been assigned. See the remainder of the error stack
    for
    more information.
    Class: qqsp_ResourceException
    Error #: [1602, 593]
    Detected at: qqcf_StandardConfig::LoadRemotePartition at 5
    Last TOOL statement: method partws.HandleRunCmd
    Error Time: Tue Jan 05 09:40:17
    Exception occurred (locally) on partition "Forte_cl0_Client",
    (partitionId
    = 279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13c:0x2, taskId =
    [279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13c:0x2.24]) in application
    "FTLaunch_cl0", pid 376 on node L6019148 in environment ADEDEV1.
    SYSTEM ERROR: Unable to start partition BRITester_cl0_Part1 on node
    l5016425.
    Class: qqsp_ErrorDescriptor
    Error #: [1602, 592]
    Detected at: qqcf_StandardConfig::LoadRemotePartition at 3
    Error Time: Tue Jan 05 09:40:17
    Exception occurred (locally) on partition "Forte_cl0_Client",
    (partitionId
    = 279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13c:0x2, taskId =
    [279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13c:0x2.24]) in application
    "FTLaunch_cl0", pid 376 on node L6019148 in environment ADEDEV1.
    SYSTEM ERROR: Attempt to load partition named BRITester_cl0_Part1 failed.
    Class: qqsp_ResourceException
    Error #: [1001, 4]
    Detected at: qqrt_ForteExecAgent::LoadPartition at 1
    Error Time: Tue Jan 5 09:40:40
    Distributed method called: qqrt_ForteExecAgentProxy.LoadPartition!6
    (object name Unnamed) from partition "Forte_cl0_Client", (partitionId
    =
    279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13c:0x2, taskId =
    [279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13c.4]) in application
    "FTLaunch_cl0", pid 376 on node L6019148 in environment ADEDEV1
    Exception occurred (remotely) on partition "Forte_Executor",
    (partitionId
    = 279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13d, taskId =
    [279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13d.3]) in application "Forte
    Runtime", pid 14738 on node l5016425 in environment ADEDEV1.
    SYSTEM ERROR: Failed to create service object
    BRItoDAU.svcBusinessRulesDataAccessor.
    Class: qqsp_ResourceException
    Last TOOL statement: method BusinessRulesDAU.
    Error Time: Tue Jan 5 09:40:39
    Exception occurred (remotely) on partition "Forte_Executor",
    (partitionId
    = 279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13d, taskId =
    [279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13d.3]) in application "Forte
    Runtime", pid 14738 on node l5016425 in environment ADEDEV1.
    SYSTEM ERROR: ERROR: qqrt_4GLInterface: Can't set up activation record for
    method 9 of qqlo_Object
    Class: qqsp_ErrorDescriptor
    Detected at: qqrt_4GLInterface at 1
    Error Time: Tue Jan 5 09:40:38
    Exception occurred (remotely) on partition "Forte_Executor",
    (partitionId
    = 279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13d, taskId =
    [279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13d.3]) in application "Forte
    Runtime", pid 14738 on node l5016425 in environment ADEDEV1.
    USER ERROR: The dynamic library /adedev1/userapp/daucbri/cl0/DAUBRI for the
    project DAUcBRI could not be found.
    Class: qqsp_ExistenceException
    Detected at: qqsh_ScopeLoader::Load at 1
    Last TOOL statement: method BusinessRulesDAU.
    Error Time: Tue Jan 5 09:40:38
    Exception occurred (remotely) on partition "Forte_Executor",
    (partitionId
    = 279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13d, taskId =
    [279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13d.3]) in application "Forte
    Runtime", pid 14738 on node l5016425 in environment ADEDEV1.
    SYSTEM ERROR: System Error: No such file or directory (errno = 2) shr2.o
    shr2.o libC_r.a shr2.o , loading the library
    '/adedev1/userapp/daucbri/cl0/DAUBRI.a'
    Class: qqos_DynamicLibraryException
    Error #: [101, 29]
    Detected at: qqos_DynamicLibrary::OSLoad at 1
    Error Time: Tue Jan 5 09:40:38
    Exception occurred (remotely) on partition "Forte_Executor",
    (partitionId
    = 279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13d, taskId =
    [279F2CF0-953F-11D2-B670-64FA4AE4AA77:0x13d.3]) in application "Forte
    Runtime", pid 14738 on node l5016425 in environment ADEDEV1.
    The bottom of the stack contains what I believe is important. It is looking
    for the C runtime and shr2.o. I have tried a few things to resolve these
    references. I have this feeling that I am overlooking something simple.
    This same c library which I have wrapped here, was successfully wrapped and
    used on AIX 4.2.1 with a version of C-Set compiler. The forte code did not
    change in the port. The C code had modest changes.
    This is a plea for ideas. I will even take ideas to get more ideas.
    Thanks in advance.
    Tres Bain
    I/T Systems Consultant -- ADE Technical Center
    USAA
    9800 Fredricksburg Rd.
    San Antonio, TX 78288
    Email - mailto:[email protected]
    Phone - 210-913-5017
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Strange error - HELP! : temp.as - Error #1046

    Hi all,
    I am converting a project to AS3. However I get a stranger
    error :
    **Error** ...\temp.as : Line 1, Column 210 : [Compiler] Error
    #1046: Type was not found or was not a compile-time constant: List.
    
    The strange thing is that THERE IS NO FILE NAMED temps.as.
    I've searched everywhere. I know that I did not create any, so
    maybe Flash 9 does it. Anyone has got an idea about that?
    Another strange thing is that after the error, instead of
    writing the code responsible for it, there is this 'À' which
    is actually followed by a square. I m a bit confused.
    Please help, thanks

    quote:
    Originally posted by:
    Nico22_be
    Another strange behavior related to that temp.as file. Since
    there is no such file, I decided to create one like this :
    package {
    class temp {}
    And to test. I then get new errors :
    **Error** \temp.as : Line 2, Column 8 : [Compiler] Error
    #1131: Classes must not be nested.
    class temp {}
    **Error** \temp.as : Line 1, Column 1 : [Compiler] Error
    #1153: A constructor can only be declared public.
    package {
    When declaring a package, you must give the path to the
    package
    package com.mysite.utilities {
    When Flash compiles, I believe it already creates a package{
    line but who knows for sure until Adobe says so. As a result, you
    cannot next base level packages which is what the error is for.
    The second error is because of your class declaration....
    it's missing a constructor
    package {
    class temp {}
    should be
    package com.mysite.tempstuff {
    class temp{
    public function temp() {
    Every class must have a "public" constructor to initialize it
    when it is called with the "new" flag.
    temp.as - this is probably an issue where Flash cannot create
    the temporary as file that it loads into the debugger when it runs
    in the dev environment.

  • Error when compiling logic file

    Hi there folks,
    I have a strange problem when compiling a logic file that I haven't seen before, and I can't seem to find an answer for it anywhere so I'm hoping you can help.
    I have a simply piece of script logic that begins with the normal *XDIM_MEMBERSET section, specifically one line:
    *XDIM_MEMBERSET DATASRC = INPUT
    I have a dimension called DATASRC, and a member in that dimension called INPUT, so there is nothing strange here.
    However, when I try to validate the script I get the following error message:
    "Error: Unlimited recursion using a user defined function in line : *XDIM_MEMBERSET DATASRC=INPUT"
    There is nothing wrong with this line, and it certainly isn't a user-defined function!
    I can't find anything about this in the SAP Notes, and have never seen this error before - any ideas that could help?
    Thanks very much in advance.
    Jason

    First, always define your version, so we can isolate our test or idea in a similar version.
    Next, If you modify the statement for any other combination of both DataSrc=[someothermember] and otherDIm=[othermember] and run the validation, does it fail?  If you were to run say Account=Input, would that fail?  If you rename INPUT to INPUTS, does it then V&P?
    Is there any statement in a constants file that use INPUT?
    My idea is to try to isolate if the issue is with the member, or dimension or both, or neither and related to BPC code.  Then if the problem doesn't resolve, you have tests for teh BPC Support team.
    Hope that helps.

  • Strange Error ! For Reading Application Server File

    Hi Friends,
    I am getting very strange error while compliling my code. As I am reading a text file for input from Application server for further processing. But my system is giving me an error.
    As the file and the path is not yet configured on the application server but i believe
    it has to allow me to compile the program and when i execute it then it will give an error as I have tracked.
    Kindly help.
    I have pasted the code below for reference.
    ===============================
    TYPES : BEGIN OF ty_file,
             line(1055) TYPE c,
              end of ty_file.
    data : gs_file type ty_file.
    data : g_file4 TYPE string VALUE '\usr\sap\CISCO\SP\CISCO_SP_CHG.TXT'.
    OPEN DATASET g_file4  IN TEXT MODE FOR INPUT
                             ENCODING DEFAULT
                             WITH SMART LINEFEED.
      IF sy-subrc NE 0.
        MESSAGE e012.
        LEAVE LIST-PROCESSING.
      ENDIF.
      CLEAR : gs_file.
      DO.
        READ g_file4 INTO gs_file.
        IF sy-subrc NE 0.
          EXIT.
        ENDIF.
        APPEND gs_file into gt_cust_tmp.
        clear gs_file.
      ENDDO.
      CLOSE DATASET g_file4.
    ERROR i am getting
    Unable to interpret g_file4. Possible cause of error "Incorrect Spelling or Comma error".
    =======================
    Regards,
    pradeep

    TYPES : BEGIN OF ty_file,
    line(1055) TYPE c,
    end of ty_file.
    data : gs_file type ty_file.
    data gt_cust_tmp type table of ty_file.
    data : g_file4 TYPE string VALUE '\usr\sap\CISCO\SP\CISCO_SP_CHG.TXT'.
    OPEN DATASET g_file4 IN TEXT MODE FOR INPUT
    ENCODING DEFAULT
    WITH SMART LINEFEED.
    IF sy-subrc NE 0.
    MESSAGE e012.
    LEAVE LIST-PROCESSING.
    ENDIF.
    CLEAR : gs_file.
    DO.
    READ dataset g_file4 INTO gs_file.
    IF sy-subrc NE 0.
    EXIT.
    ENDIF.
    APPEND gs_file to gt_cust_tmp.
    clear gs_file.
    ENDDO.
    CLOSE DATASET g_file4.
    check this coding. in the read statement dataset is missing.
    with regards,
    Vamsi

  • Strange error while deploying application client

    Yesterday my app client was working perfectly. I worked on a different computer though but today as I wanted to test my app client again I encountered this strange error:
    Copying 1 file to G:\StressLabo\StressLabo-app-client\dist
    run-tool:
    23-feb-2007 12:51:44 com.sun.enterprise.appclient.MainWithModuleSupport <init>
    WARNING: ACC003: Application threw an exception.
    java.lang.UnsupportedClassVersionError: Bad version number in .class file
            at java.lang.ClassLoader.defineClass1(Native Method)
            at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
            at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
            at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
            at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
            at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
            at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
            at java.lang.Class.getDeclaredFields0(Native Method)
            at java.lang.Class.privateGetDeclaredFields(Class.java:2259)
            at java.lang.Class.getDeclaredField(Class.java:1852)
            at com.sun.enterprise.deployment.util.DefaultDOLVisitor.acceptWithCL(DefaultDOLVisitor.java:349)
            at com.sun.enterprise.deployment.util.EjbBundleValidator.accept(EjbBundleValidator.java:196)
            at com.sun.enterprise.deployment.ApplicationClientDescriptor.visit(ApplicationClientDescriptor.java:620)
            at com.sun.enterprise.deployment.archivist.AppClientArchivist.validate(AppClientArchivist.java:148)
            at com.sun.enterprise.appclient.AppClientInfo.completeInit(AppClientInfo.java:177)
            at com.sun.enterprise.appclient.AppClientInfoFactory.buildAppClientInfo(AppClientInfoFactory.java:136)
            at com.sun.enterprise.appclient.MainWithModuleSupport.<init>(MainWithModuleSupport.java:287)
            at com.sun.enterprise.appclient.Main.main(Main.java:180)
    Exception in thread "main" java.lang.RuntimeException: java.lang.UnsupportedClassVersionError: Bad version number in .class file
            at com.sun.enterprise.appclient.MainWithModuleSupport.<init>(MainWithModuleSupport.java:364)
            at com.sun.enterprise.appclient.Main.main(Main.java:180)
    Caused by: java.lang.UnsupportedClassVersionError: Bad version number in .class file
            at java.lang.ClassLoader.defineClass1(Native Method)
            at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
            at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
            at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
            at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
            at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
            at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
            at java.lang.Class.getDeclaredFields0(Native Method)
            at java.lang.Class.privateGetDeclaredFields(Class.java:2259)
            at java.lang.Class.getDeclaredField(Class.java:1852)
            at com.sun.enterprise.deployment.util.DefaultDOLVisitor.acceptWithCL(DefaultDOLVisitor.java:349)
            at com.sun.enterprise.deployment.util.EjbBundleValidator.accept(EjbBundleValidator.java:196)
            at com.sun.enterprise.deployment.ApplicationClientDescriptor.visit(ApplicationClientDescriptor.java:620)
            at com.sun.enterprise.deployment.archivist.AppClientArchivist.validate(AppClientArchivist.java:148)
            at com.sun.enterprise.appclient.AppClientInfo.completeInit(AppClientInfo.java:177)
            at com.sun.enterprise.appclient.AppClientInfoFactory.buildAppClientInfo(AppClientInfoFactory.java:136)
            at com.sun.enterprise.appclient.MainWithModuleSupport.<init>(MainWithModuleSupport.java:287)
            ... 1 more
    Java Result: 1I really don't know what may be causing this and I was hoping someone knows the answer and how to solve it?

    Hello,
    My first though is that your application has been compiled with a newer version of the java compiler on that computer.
    So, try to use the same jdk.
    Regards,
    Sebastien Degardin
    Java EE Architect

  • Maven2 and axistools-maven-plugin - strange error

    Hi all,
    I am using maven2 for the build proccess and I get this strange error message while compiling.
    =========
    [INFO] Scanning for projects...
    [INFO] ----------------------------------------------------------------------------
    [INFO] Building Maven Quick Start Archetype
    [INFO] task-segment: [compile]
    [INFO] ----------------------------------------------------------------------------
    [INFO] ----------------------------------------------------------------------------
    [ERROR] BUILD ERROR
    [INFO] ----------------------------------------------------------------------------
    [INFO] The plugin 'org.codehaus.mojo:axistools-maven-plugin' does not exist or no valid version could be found
    [INFO] ----------------------------------------------------------------------------
    [INFO] For more information, run Maven with the -e switch
    [INFO] ----------------------------------------------------------------------------
    [INFO] Total time: 1 second
    [INFO] Finished at: Mon Jan 30 08:45:42 GMT+02:00 2006
    [INFO] Final Memory: 1M/3M
    [INFO] ----------------------------------------------------------------------------
    =========
    The plugin defined in pom.xml is:
    ==========
                   <plugin>
                        <groupId>org.codehaus.mojo</groupId>
                        <artifactId>axistools-maven-plugin</artifactId>
                        <configuration>               <fileNStoPkg>${srcdir}/properties/namespaces2packages.properties</fileNStoPkg>
                             <serverSide>true</serverSide>
                        </configuration>
                        <executions>
                             <execution>
                                  <goals>
                                       <goal>wsdl2java</goal>
                                  </goals>
                             </execution>
                        </executions>
                   </plugin>
    ==========
    Any ideas guys?

    Sorry, forgot to paste the trace. Here it is now:
    [INFO] Trace
    org.apache.maven.lifecycle.LifecycleExecutionException: The plugin 'org.codehaus.mojo:axistools-maven-plugin' does not e
    xist or no valid version could be found
    at org.apache.maven.lifecycle.DefaultLifecycleExecutor.verifyPlugin(DefaultLifecycleExecutor.java:1203)
    at org.apache.maven.lifecycle.DefaultLifecycleExecutor.bindPluginToLifecycle(DefaultLifecycleExecutor.java:1139)
    at org.apache.maven.lifecycle.DefaultLifecycleExecutor.constructLifecycleMappings(DefaultLifecycleExecutor.java:
    948)
    at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:450)
    at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.jav
    a:303)
    at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:270)
    at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:139)
    at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:322)
    at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:115)
    at org.apache.maven.cli.MavenCli.main(MavenCli.java:249)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
    at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
    at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
    at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
    Caused by: org.apache.maven.plugin.version.PluginVersionNotFoundException: The plugin 'org.codehaus.mojo:axistools-maven
    -plugin' does not exist or no valid version could be found
    at org.apache.maven.plugin.version.DefaultPluginVersionManager.resolvePluginVersion(DefaultPluginVersionManager.
    java:225)
    at org.apache.maven.plugin.version.DefaultPluginVersionManager.resolvePluginVersion(DefaultPluginVersionManager.
    java:87)
    at org.apache.maven.plugin.DefaultPluginManager.verifyPlugin(DefaultPluginManager.java:177)
    at org.apache.maven.lifecycle.DefaultLifecycleExecutor.verifyPlugin(DefaultLifecycleExecutor.java:1174)
    ... 17 more
    [INFO] ----------------------------------------------------------------------------

  • CVI 2013 Error: The compiler has run out of memory.

    Hello,
    I get this error in a source file I'd like to debug:
    1, 1 Error: The compiler has run out of memory.
    1, 1 Note: You may be able to work around the problem:
    1, 1 A. Set the debugging level to 'no run-time checking'.
    1, 1 B. Split your source file into smaller files.
    1, 1 C. Enable the 'O' option for your source file in the project.
    1, 1 D. Move large static data structures into new files and
    1, 1 enable the 'O' option for the new files.
    Options A and C disable debugging aids mostly, and I don't dare editing it.
    So any possibility to increase the memory limit?
    /* Nothing past this point should fail if the code is working as intended */
    Solved!
    Go to Solution.

    This is the "strange code"
    #pragma pack (push,8)
    typedef struct
    int struct1int;
    } STRUCT1;
    typedef struct
    STRUCT1* s1_ptr;
    } STRUCT2;
    typedef struct
    char c[2];
    int i;
    STRUCT2 s2;
    } STRUCT3;
    #pragma pack (pop)
    static STRUCT3 s3_global;
    void SomeFunc(void)
    s3_global.i = 0;
     I believe clang fails to compute the struct paddings.
    /* Nothing past this point should fail if the code is working as intended */

Maybe you are looking for