Building NCAR Graphics 5.2.1 on Solaris 10 x86u9 under Sun Studio 10 (2005)

Hello,
I've got the following error when compiling ncar program with Sun
cc and f90 and /usr/ccs/bin/ld.
cc -ansi -O -I/usr/openwin/include -I/usr/include/X11 -DSYSV -
D_POSIX_SOURCE -D_XOPEN_SOURCE -DByteSwapped -Di386 -DNeedFuncProto -
c cl.c
cc: Warning: illegal option -nsi
cc: -a conflicts with -dy.
*** Error code 1
make: Fatal error: Command failed for target `cl.o'
After that i've changed the config/SolarisPC file and tried a build with gcc 3.4.3 and f90 but I got
ld fatal: library -lc not found.
I have an old box from 2001 which was under HCL of Solaris 8 x86.
The people at NCAR did not update their configuration files for Solaris 10 x86. The SolarisPC file is old and is using by default g77 as the fortran compiler. Could I mix gcc with f90 ? Which linker should I use in that case?
/usr/ccs/bin/ld or /usr/ucb/ld?

Please refer to the C Users Guide for details of cc command line options. All manuals for Sun Studio 12u1 are listed here:
http://download.oracle.com/docs/cd/E19205-01/index.html
There is no -ansi option in Sun/Oracle C, nor has there ever been. The compiler attempts to interpret it as -a followed by some other letters, which is why you get a complaint about -a. Remove the option.
Depending on what you expect from the -ansi option, either the default compiler behavior or the -Xc option should work. I suggest trying the default behavior (no -X option). Refer to the manual for details.
Always use the /usr/ccs/bin/ld linker, but you normally should not use the ld linker directly. If you mixing C and Fortran, use the f90 driver to do the linking; it knows what Fortran libraries need to be linked, depending on command line option. When linking a program using only C, use the cc driver to link. Some C command-line options require linking special system files; the cc and f90 drivers know the rules.
To mix Fortran with C, refer to the Fortran Users Guide. I recommend using the Studio C compiler when mixing code, not gcc. The requirements of gcc are not known to the f90 driver, but it does know the requirements of Studio C.
The schema for a mixed Fortran and C program is something like this:
cc -c f1.c f2.c <other options>
f90 -c f3.f90 f4.f90 <other options>
f90 -o myprog f1.o f2.0 f3.0 f4.0 <other options>

Similar Messages

  • Poor performance of string::append on Solaris 10 with Sun Studio 10

    I found string::append(size_type num, char ch) of libCstd consumes too much cpu time comparing with stlport. Anybody knows if this is a known issue on Solaris 10 and Sun Studio 10? Or if I need to use special build options to build with libCstd?
    For example: a.c
    #include <iostream>
    #include <time.h>
    using namespace std;
    int main()
      string ss;
      for ( i=0; i<60000; i++)
        ss.append(1, 'A');
      cout << clock();
      cout << endl;
      return 0;
    }Build with libCstd:
    CC a.c -o a1
    Build with stlport:
    CC -library=%none -library=stlport4 a.c -o a2
    a1 outputs: 10000
    a2 outputs: 1900000
    You can see how big different they have. I am sure their running environment is same.

    I suspect this is due to a bug in libCstd that manifests itself by reallocating the string for each append. Compile and run the program below:
    #include <string>
    #include <new>
    #include <stdlib.h>
    int in_main;
    void* operator new (size_t nbytes) throw (std::bad_alloc) {
    if (in_main) printf ("operator new (%zu)\n", nbytes);
    return malloc (nbytes);
    void operator delete (void *p) throw () {
    if (in_main) printf ("operator delete (%p)\n", p);
    free (p);
    int main () {
    in_main = 1;
    std::string ss;
    for (int i = 0; i < 256; i++) {
    printf ("append(1, 'A')\n");
    ss.append (1, 'A');
    in_main = 0;
    }

  • Solaris 10 vs sun studio 7 forte

    How better is solaris 10 tools compared to sun studio 7 forte tool ... is the compiler of better performance?

    Are you asking about specific tools included with Solaris 10
    or Sun Studio 10 ? If the latter, the newer version has considerable
    performance improvements over the older one. If you're referring
    to the gcc that's included on an extras/bonus CD, that's a more
    difficult question to answer since there are quite a few factors
    involved. I believe there are documents online with some
    comparisons.
    In any case, the latest version of our compilers is Studio 11 and
    it's available as a free download from:
    http://developers.sun.com/prodtech/cc/downloads/sun_studio/index.html

  • Compilation error while building boost 1_44_0 on Solaris (Sun Studio 10)

    Hi All, I am trying to build boost version 1_44_0 on Solaris.The Solaris box has Sun Studio 10 installed.
    The compiler details are
    bash-2.05$ CC -V
    CC: Sun C++ 5.7 2005/01/07
    I am using the following command to build boost libraries
    *bash-2.05$ bjam --build-dir=/export/home/dfdev/Boost_1_44_0/boost_1_44_0/tmp/build-boost toolset=sun stage*
    But i get the below compilation errors, not even one of the projects build
    sun.compile.c++ /export/home/dfdev/Boost_1_44_0/boost_1_44_0/tmp/build-boost/boo
    st/bin.v2/libs/iostreams/build/sun/release/stdlib-sun-stlport/threading-multi/fi
    le_descriptor.o
    Notice: The Early Access serial number will expire in -7 days.
    In order to purchase the product, visit http://www.sun.com/forte/buy.html
    or contact your Forte Tools reseller.
    "libs/iostreams/src/file_descriptor.cpp", line 352: Error: Could not find boost:
    :shared_ptr<boost::iostreams::detail::file_descriptor_impl>::shared_ptr(boost::i
    ostreams::detail::file_descriptor_impl*) to initialize pimpl_.
    "libs/iostreams/src/file_descriptor.cpp", line 355: Error: Could not find boost:
    :shared_ptr<boost::iostreams::detail::file_descriptor_impl>::shared_ptr(boost::i
    ostreams::detail::file_descriptor_impl*) to initialize pimpl_.
    "libs/iostreams/src/file_descriptor.cpp", line 360: Error: Could not find boost:
    :shared_ptr<boost::iostreams::detail::file_descriptor_impl>::shared_ptr(boost::i
    ostreams::detail::file_descriptor_impl*) to initialize pimpl_.
    "libs/iostreams/src/file_descriptor.cpp", line 380: Error: Could not find boost:
    :shared_ptr<boost::iostreams::detail::file_descriptor_impl>::shared_ptr(boost::i
    ostreams::detail::file_descriptor_impl*) to initialize pimpl_.
    "libs/iostreams/src/file_descriptor.cpp", line 385: Error: Could not find boost:
    :shared_ptr<boost::iostreams::detail::file_descriptor_impl>::shared_ptr(boost::i
    ostreams::detail::file_descriptor_impl*) to initialize pimpl_.
    "libs/iostreams/src/file_descriptor.cpp", line 393: Error: Using static_cast to
    convert from boost::iostreams::file_descriptor_flags to boost::iostreams::detail
    ::file_descriptor_impl::flags not allowed.
    6 Error(s) detected.
    "CC" -library=stlport4 -xO4 -mt -erroff=%none -KPIC -DBOOST_ALL_NO_LIB=1 -DB
    OOST_IOSTREAMS_DYN_LINK=1 -DBOOST_IOSTREAMS_USE_DEPRECATED -DNDEBUG -I"." -c -o
    "/export/home/dfdev/Boost_1_44_0/boost_1_44_0/tmp/build-boost/boost/bin.v2/libs/
    iostreams/build/sun/release/stdlib-sun-stlport/threading-multi/file_descriptor.o
    " "libs/iostreams/src/file_descriptor.cpp"
    ...failed sun.compile.c++ /export/home/dfdev/Boost_1_44_0/boost_1_44_0/tmp/build
    -boost/boost/bin.v2/libs/iostreams/build/sun/release/stdlib-sun-stlport/threadin
    g-multi/file_descriptor.o...
    sun.compile.c++ /export/home/dfdev/Boost_1_44_0/boost_1_44_0/tmp/build-boost/boo
    st/bin.v2/libs/iostreams/build/sun/release/stdlib-sun-stlport/threading-multi/ma
    pped_file.o
    Notice: The Early Access serial number will expire in -7 days.
    In order to purchase the product, visit http://www.sun.com/forte/buy.html
    or contact your Forte Tools reseller.
    "./boost/type_traits/is_array.hpp", line 41: Error: Multiple declaration for boo
    st::is_array.
    "./boost/type_traits/is_array.hpp", line 42: Error: Multiple declaration for boo
    st::is_array.
    "./boost/type_traits/is_array.hpp", line 43: Error: Multiple declaration for boo
    st::is_array.
    "./boost/type_traits/is_array.hpp", line 44: Error: Multiple declaration for boo
    st::is_array.
    "./boost/mpl/aux_/preprocessed/plain/full_lambda.hpp", line 95: Error: The type
    of specialized argument boost::mpl::aux::F<boost::mpl::aux::P1> is dependent on
    another argument.
    "./boost/mpl/aux_/preprocessed/plain/full_lambda.hpp", line 95: Error: Partial s
    pecialization parameter Tag is not used in the arguments.
    "./boost/mpl/aux_/preprocessed/plain/full_lambda.hpp", line 112: Error: Partial
    specialization parameter F is not used in the arguments.
    "./boost/mpl/aux_/preprocessed/plain/full_lambda.hpp", line 172: Error: The type
    of specialized argument boost::mpl::aux::F<boost::mpl::aux::P1, boost::mpl::aux
    ::P2> is dependent on another argument.
    "./boost/mpl/aux_/preprocessed/plain/full_lambda.hpp", line 172: Error: Partial
    specialization parameter Tag is not used in the arguments.
    "./boost/mpl/aux_/preprocessed/plain/full_lambda.hpp", line 189: Error: Partial
    specialization parameter F is not used in the arguments.
    "./boost/mpl/aux_/preprocessed/plain/full_lambda.hpp", line 254: Error: The type
    of specialized argument boost::mpl::aux::F<boost::mpl::aux::P1, boost::mpl::aux
    ::P2, boost::mpl::aux::P3> is dependent on another argument.
    "./boost/mpl/aux_/preprocessed/plain/full_lambda.hpp", line 254: Error: Partial
    specialization parameter Tag is not used in the arguments.
    "./boost/mpl/aux_/preprocessed/plain/full_lambda.hpp", line 271: Error: Partial
    specialization parameter F is not used in the arguments.
    "./boost/mpl/aux_/preprocessed/plain/full_lambda.hpp", line 339: Error: The type
    of specialized argument boost::mpl::aux::F<boost::mpl::aux::P1, boost::mpl::aux
    ::P2, boost::mpl::aux::P3, boost::mpl::aux::P4> is dependent on another argument
    "./boost/mpl/aux_/preprocessed/plain/full_lambda.hpp", line 339: Error: Partial
    specialization parameter Tag is not used in the arguments.
    "./boost/mpl/aux_/preprocessed/plain/full_lambda.hpp", line 357: Error: Partial
    specialization parameter F is not used in the arguments.
    "./boost/mpl/aux_/preprocessed/plain/full_lambda.hpp", line 427: Error: The type
    of specialized argument boost::mpl::aux::F<boost::mpl::aux::P1, boost::mpl::aux
    ::P2, boost::mpl::aux::P3, boost::mpl::aux::P4, boost::mpl::aux::P5> is dependen
    t on another argument.
    "./boost/mpl/aux_/preprocessed/plain/full_lambda.hpp", line 427: Error: Partial
    specialization parameter Tag is not used in the arguments.
    "./boost/mpl/aux_/preprocessed/plain/full_lambda.hpp", line 445: Error: Partial
    specialization parameter F is not used in the arguments.
    "libs/iostreams/src/mapped_file.cpp", line 441: Error: Could not find boost::sha
    red_ptr<boost::iostreams::detail::mapped_file_impl>::shared_ptr(boost::iostreams
    ::detail::mapped_file_impl*) to initialize pimpl_.
    20 Error(s) detected.
    Am i missing something? I will appreciate your input's.
    Regards,
    solarisneo

    C++ 5.7 will not give good results building Boost.
    Support for boost began with C++ 5.9 (Sun Studio 12), but you will get better results using the current release, Sun Studio 12 update 1, and better still with the upcoming release, Oracle Solaris Studio 12.2.

  • Need Help Building a Graphic Design/Video Editing PC

    Greetings everybody, my name is David, and I'm hoping to get a little assistance building a computer system either from scratch or from a couple of computers I have picked out.
    I hope this that doesn't sound unrealistic but I only have around $600 in my budget to build a Graphic Designer machine. My intentions are to get a subscription to Adobe cloud so I would have access to all of Adobe CS6 products. (I won’t be using any of the Touch or Game developers applications.)
    I would like to post two links to two machines that I picked out that are in my price range and would like some advice as to whether or not either one of these machines have enough processing power to be able to handle all Adobe CS 6 products.
    I am aware that neither one of these machines have a Graphics Processing Unit (GPU) and that I would have to purchase one and add it. Which leads me to my first question; are the processors on either one of these machines capable of handling a GPU that is on the Adobe recommended list for processors?
    And secondly, if I were to build a machine from scratch, is $600 enough to build a machine that is capable of handling Adobe CS6  products? When building a machine from scratch can you tell me what the minimum requirements are for a motherboard? Or are there any sites that offer specific advise for building PC's for graphic design?
    I noticed after looking through the list of recommended graphics processing units that the majority of those are very expensive, in the $500-$3000 range. Can you please recommend a graphics processing unit that is in the $200-$300 range that would be fully adequate to handle Adobe products? Also what things do I need to take into consideration when building the machine from scratch to ensure that all my hardware is capable of handling Adobe CS6 products.
    What do I need to add to either one of these prebuilt computers to make them Adobe-ready, If they are in fact worthy at all?
    Here are the links for two machines that I have picked out:
    http://www.costco.com/HP-Pavilion-p6t-Desktop%2c-Intel%C2%AE-Core%E2%8 4%A2-i3-2130-3.4GHz.product.100010197.html
    http://www.costco.com/ZT-Desktop%2c-Intel%C2%AE-Core%E2%84%A2-i5-3470- 3.2GHz.product.100027436.html
    I do realize that neither one of these machines have a graphics card in them. Can you tell by looking at the specifications on either one of these machines, whether or not your typical graphics card would fit inside the case If they are indeed worthy in all other respects?
    And I realize that I mentioned that I only had $600 to spend, however if either one of these prebuilt machines are powerful enough in all other respects, I don't have an issue waiting a month or two before buying the graphics card and installing a little bit later.
    Thank you in advance for your input.
    Sincerely,
    David

    Your HP Costco link results in an out of stock message
    Your ZT Costco link is very likely NOT expandable due to the VERY small power supply... so you will likely NOT be able to add a video card later
    For PPro video editing you want an nVidia graphics adapter http://www.pacifier.com/~jtsmith/GPU.HTM and even the low power nVidia may be too much for that computer
    Also, for video editing, you need a MINIMUM of 2 hard drives... and trying to edit HiDef video with an i5 will be a study of waiting for things to happen
    As Harm said... a $600 computer will work for everything EXCEPT video editing
    This DIY list is just about twice your budget, but it will work for video editing
    Intel i7 3770 CPU
    http://www.newegg.com/Product/Product.aspx?Item=N82E16819116502
    Motherboard
    http://www.newegg.com/Product/Product.aspx?Item=N82E16813121599
    16Gig Ram
    http://www.newegg.com/Product/Product.aspx?Item=N82E16820148600
    Mid-Tower Case
    http://www.newegg.com/Product/Product.aspx?Item=N82E16811129042
    750w Power Supply
    http://www.newegg.com/Product/Product.aspx?Item=N82E16817171053
    500Gig Drive
    http://www.newegg.com/Product/Product.aspx?Item=N82E16822136769
    500Gig Drive
    http://www.newegg.com/Product/Product.aspx?Item=N82E16822136769
    1Terabyte Drive
    http://www.newegg.com/Product/Product.aspx?Item=N82E16822236339
    GTX 660 Ti 2Gig
    http://www.newegg.com/Product/Product.aspx?Item=N82E16814130809
    120mm x2 Case Fan
    http://www.newegg.com/Product/Product.aspx?Item=N82E16835103060
    Keyboard & Mouse
    http://www.newegg.com/Product/Product.aspx?Item=N82E16823109232
    Sata DVD Writer
    http://www.newegg.com/Product/Product.aspx?Item=N82E16827135204
    http://www.newegg.com/Product/Product.aspx?Item=N82E16832116986
    Use Win7 64bit Home if you will NEVER go over 16gig ram
    http://www.newegg.com/Product/Product.aspx?Item=N82E16832116992
    Use Win7 64bit Pro to use more than 16gig ram
    BluRay writer if you want to write BluRay discs
    http://www.newegg.com/Product/Product.aspx?Item=N82E16827106369
    2 hard drive MINimum, I use 3 (as listed above)
    My 3 hard drives for video editing are configured as...
    1 - 320Gig Boot for Win7 64bit Pro and ALL program installs
    2 - 320Gig data for video project files, and temporary files
    When I create a project on #2 drive, the various work files follow,
    so my boot drive is not used for the media cache folders and files
    3 - 1Terabyte data for all video files... input source & output export files

  • Need help building boost_1_37_0 on Solaris 10 U6 with Sun Studio 12

    Hi,
    Ok, please bear with me here. I've tried many different sets of instructions, and haven't had success with any of them (including the ones at http://blogs.sun.com/sga/category/Boost).
    Operating System: Solaris 10 x86 U6
    Compiler: Sun Studio 12 (SUNCC version 5.9)
    Boost version: 1.37.0
    The ONLY part of boost that I need is regex. I've never built external libraries before and building boost on Solaris seems a rather daunting task. So, could someone please explain, as clearly as possible, how do I build the boost::regex library using SUNCC?
    I know this is a very broad topic, but since I haven't had any luck with any existing instructions that google turns up, alas I am here.
    Thanks in advance if someone can help me,
    ~Slow
    Note: I don't need any special options, any special, non-standard install paths, nothing. Just a straight, stock, boost install.
    Edited by: SlowToady on Nov 10, 2008 2:18 PM

    First, be sure you have the current patches for Sun Studio 12. You can get them here:
    http://developers.sun.com/sunstudio/downloads/patches/
    Please install the current C++ compiler patch, the C compiler patch, and the common back-end compiler patch.
    You should then be able to build BOOST 1.37.0. The only problem I know of has been filed as CR 6767881, which results in an incorrect complaint about a constructor not being accessible. But I don't think that one affects regex.
    If you running into some other problem after patching the compiler, please post enough detail that we can investigate it.
    Questions about how to build just a portion of BOOST are probably best addressed to a BOOST forum.

  • I can�t install Sun Studio 11 in Solaris 8

    Hello!!
    We are trying to install Sun Studio 11 on our Server.
    The server is running under Solaris 8, we install J2SE 1.4.2_10 SDK prior to run the Sun Studio installer, but when we run the installer, it report the following error
    Could not find class during deserialization of the WizardState:java.lang.ClassNotFoundException: com.sun.install.products.Product
    java.lang.ClassNotFoundException: com.sun.install.products.Product
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.lang.ClassNotFoundException.<init>(Compiled Code)
    at java.io.ObjectInputStream.inputObject(Compiled Code)
    at java.io.ObjectInputStream.readObject(Compiled Code)
    at java.io.ObjectInputStream.readObject(Compiled Code)
    at java.util.Hashtable.readObject(Compiled Code)
    at java.lang.reflect.Method.invoke(Native Method)
    at java.lang.reflect.Method.invoke(Compiled Code)
    at java.io.ObjectInputStream.invokeObjectReader(Compiled Code)
    at java.io.ObjectInputStream.inputObject(Compiled Code)
    at java.io.ObjectInputStream.readObject(Compiled Code)
    at java.io.ObjectInputStream.readObject(Compiled Code)
    at com.sun.wizards.core.GenericWizardState.setWizardState(Compiled Code)
    at java.lang.reflect.Method.invoke(Native Method)
    at java.lang.reflect.Method.invoke(Compiled Code)
    at com.sun.wizards.core.ArchiveReader.callObjectMethod(Compiled Code)
    at com.sun.wizards.core.ArchiveReader.<init>(Compiled Code)
    at com.sun.forte.install.tasks.AddChildWizardTask.fetchChildWizards(Compiled Code)
    at com.sun.forte.install.tasks.AddChildWizardTask.perform(Compiled Code)
    at com.sun.wizards.core.Sequence.perform(Compiled Code)
    at com.sun.wizards.core.SequenceManager.run(Compiled Code)
    at java.lang.Thread.run(Thread.java:479)
    Could not find class during deserialization of the WizardState:java.lang.ClassNotFoundException: com.sun.install.products.Product
    java.lang.ClassNotFoundException: com.sun.install.products.Product
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.lang.ClassNotFoundException.<init>(Compiled Code)
    at java.io.ObjectInputStream.inputObject(Compiled Code)
    at java.io.ObjectInputStream.readObject(Compiled Code)
    at java.io.ObjectInputStream.readObject(Compiled Code)
    at java.util.Hashtable.readObject(Compiled Code)
    at java.lang.reflect.Method.invoke(Native Method)
    at java.lang.reflect.Method.invoke(Compiled Code)
    at java.io.ObjectInputStream.invokeObjectReader(Compiled Code)
    at java.io.ObjectInputStream.inputObject(Compiled Code)
    at java.io.ObjectInputStream.readObject(Compiled Code)
    at java.io.ObjectInputStream.readObject(Compiled Code)
    at com.sun.wizards.core.GenericWizardState.setWizardState(Compiled Code)
    at java.lang.reflect.Method.invoke(Native Method)
    at java.lang.reflect.Method.invoke(Compiled Code)
    at com.sun.wizards.core.ArchiveReader.callObjectMethod(Compiled Code)
    at com.sun.wizards.core.ArchiveReader.<init>(Compiled Code)
    at com.sun.wizards.core.GenericWizardState.setWizardState(Compiled Code)
    at java.lang.reflect.Method.invoke(Native Method)
    at java.lang.reflect.Method.invoke(Compiled Code)
    at com.sun.wizards.core.ArchiveReader.callObjectMethod(Compiled Code)
    at com.sun.wizards.core.ArchiveReader.<init>(Compiled Code)
    at java.lang.reflect.Constructor.newInstance(Native Method)
    at install.instantiateArchiveReader(ArchiveClassLoader.java:203)
    at install.<init>(ArchiveClassLoader.java:143)
    at install.main(Compiled Code
    Some one has any idea?
    Thank you in advance.
    PD: Sorry for my English, I�am a beginner English student, please be pacient.

    i've installed java 1.5.0b06 and I can install SUN Studio 11 in Solaris 8
    feedback:
    ==========================================================
    # echo $PATH
    /usr/j2se/jre1.5.0_06/bin:/usr/j2se/jre1.5.0_06:/usr/sbin:/usr/bin
    # java -version
    java version "1.5.0_06"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-b05)
    Java HotSpot(TM) Client VM (build 1.5.0_06-b05, mixed mode, sharing)
    ==========================================================
    but when i try to install
    ==========================================================
    # ./installer -nodisplay
    Could not find class during deserialization of the WizardState:java.lang.ClassNotFoundException: com.sun.install.products.Product
    java.lang.ClassNotFoundException: com.sun.install.products.Product
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.lang.ClassNotFoundException.<init>(Compiled Code)
    at java.io.ObjectInputStream.inputObject(Compiled Code)
    at java.io.ObjectInputStream.readObject(Compiled Code)
    at java.io.ObjectInputStream.readObject(Compiled Code)
    at java.util.Hashtable.readObject(Compiled Code)
    at java.lang.reflect.Method.invoke(Native Method)
    at java.lang.reflect.Method.invoke(Compiled Code)
    at java.io.ObjectInputStream.invokeObjectReader(Compiled Code)
    at java.io.ObjectInputStream.inputObject(Compiled Code)
    at java.io.ObjectInputStream.readObject(Compiled Code)
    at java.io.ObjectInputStream.readObject(Compiled Code)
    at com.sun.wizards.core.GenericWizardState.setWizardState(Compiled Code)
    at java.lang.reflect.Method.invoke(Native Method)
    at java.lang.reflect.Method.invoke(Compiled Code)
    at com.sun.wizards.core.ArchiveReader.callObjectMethod(Compiled Code)
    at com.sun.wizards.core.ArchiveReader.<init>(Compiled Code)
    at com.sun.forte.install.tasks.AddChildWizardTask.fetchChildWizards(Compiled Code)
    at com.sun.forte.install.tasks.AddChildWizardTask.perform(Compiled Code)
    at com.sun.wizards.core.Sequence.perform(Compiled Code)
    at com.sun.wizards.core.SequenceManager.run(Compiled Code)
    at java.lang.Thread.run(Thread.java:472)
    Could not find class during deserialization of the WizardState:java.lang.ClassNotFoundException: com.sun.install.products.Product
    java.lang.ClassNotFoundException: com.sun.install.products.Product
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.lang.ClassNotFoundException.<init>(Compiled Code)
    at java.io.ObjectInputStream.inputObject(Compiled Code)
    at java.io.ObjectInputStream.readObject(Compiled Code)
    at java.io.ObjectInputStream.readObject(Compiled Code)
    at java.util.Hashtable.readObject(Compiled Code)
    at java.lang.reflect.Method.invoke(Native Method)
    at java.lang.reflect.Method.invoke(Compiled Code)
    at java.io.ObjectInputStream.invokeObjectReader(Compiled Code)
    at java.io.ObjectInputStream.inputObject(Compiled Code)
    at java.io.ObjectInputStream.readObject(Compiled Code)
    at java.io.ObjectInputStream.readObject(Compiled Code)
    at com.sun.wizards.core.GenericWizardState.setWizardState(Compiled Code)
    at java.lang.reflect.Method.invoke(Native Method)
    at java.lang.reflect.Method.invoke(Compiled Code)
    at com.sun.wizards.core.ArchiveReader.callObjectMethod(Compiled Code)
    at com.sun.wizards.core.ArchiveReader.<init>(Compiled Code)
    at com.sun.wizards.core.GenericWizardState.setWizardState(Compiled Code)
    at java.lang.reflect.Method.invoke(Native Method)
    at java.lang.reflect.Method.invoke(Compiled Code)
    at com.sun.wizards.core.ArchiveReader.callObjectMethod(Compiled Code)
    at com.sun.wizards.core.ArchiveReader.<init>(Compiled Code)
    at java.lang.reflect.Constructor.newInstance(Native Method)
    at install.instantiateArchiveReader(ArchiveClassLoader.java:203)
    at install.<init>(ArchiveClassLoader.java:143)
    at install.main(Compiled Code)
    ===============================================================
    so i am confused or maybe i have to install 1.4.2.10??

  • Where can I download WINCE 6.0 Platform Builder plugin for Visual Studio 2005?

    I am supporting an older product that runs WINCE 6.0. I need to build a development environment. I understand the tool chain is based on Visual Studio 2005 SP1, which I have. I also have the Windows Embedded CE 6.0 Platform Builder Service Pack 1, but
    what I can't seem to find anywhere on MSDN is the base Windows Embedded CE 6.0 Platform Builder.
    FWIW, I have an MSDN Universal Subscription. 
    [EDIT] OK, I found it. The download is named simply Windows Embedded CE 6.0.  There is no "Platform Builder" in the title.
    Here is the link:  https://msdn.microsoft.com/en-us/subscriptions/downloads/#FileId=10961

    Thanks Henrik. My question is for the same customer that Alex K. was asking about.
    The customer has pointed out that 6.5 != 6.0 , so according to the wording in the documentation, the "all later releases of 6.0" would not apply to 6.5 releases. So the customer would need a precise statement from JRockit product management stating that 6.5 releases are indeed to be included wherever there is a reference to "all later releases of 6.0".
    I did spend some time yesterday in MetaLink. Search Knowledge base -> Oracle JRockit for download gives 38 hits. I did find older versions of WebLogic Server in 763603.1, but nothing for JRockit. If there is another DocId with the JRockit downloads, what is it? Will I find JRockit 64 bit for Solaris 27.6.0 bundled in the WebLogic Server downloads? Guessing from the size of the downloads for Solaris 64bit (they are hundreds of MB smaller than other downloads) - it seems possible that the JVM is not included (I do not have a Solaris machine to install and check). Previously I had assumed the JVM was included, but then the customer wouldn't be asking where they can download from (unless they never bother to look what they installed).
    Michael.Reiche

  • Assembly error on Sun Studio 11 - Solaris 10/amd64

    Hi All
    I am compiling my source code using cc. My cc version is
    cc: Sun C 5.8 2005/10/13
    I am using Sun Studio 11 and Solaris 10 on amd64 for my build.
    I am getting following Assemply errors when compiling my code.
    cc -xarch=amd64 -Kpic gptas.c
    Assembler:
    "/tmp/yabeAAALdaqGz", line 31 : Illegal mnemonic
    "/tmp/yabeAAALdaqGz", line 34 : Syntax error
    "/tmp/yabeAAALdaqGz", line 37 : Syntax error
    "/tmp/yabeAAALdaqGz", line 50 : Illegal mnemonic
    Failure in /opt/ss11/SUNWspro/prod/bin/fbe, status = 0x7f00
    Fatal Error exec'ing /opt/ss11/SUNWspro/prod/bin/fbe
    cc: acomp failed for gptas.c
    The c code which I'm trying to compile:
    /*ARGSUSED*/
    int
    #if defined(__STDC__) || defined(__cplusplus)
    gptas(unsigned *x, short flag)
    #else
    gptas(x,flag)
    unsigned *x;
    short flag;
    #endif
    #ifdef __STDC__
    volatile int r; /* volatile so optimizers won't get
    * rid of variable - some assembly code
    * depends on offsets with this on
    * the stack.
    #else
    int r; /* var to return explicitly */
    #endif
    r = 0; /* always set return to 0 */
    asm(" movl $1,%eax"); /* this 1 inworking reg will set x /
    asm(" pushl %ebx"); /* save the register; eax already saved */
    asm(" movl 8(%ebp),%ebx"); /* move the address of x */
    asm(" xchg %eax,(%ebx)"); /* atomic swap a one with x /
    asm(" cmp $0,%eax"); /* test what was in x /
    asm(" jnz .A9999"); /* jump if x was already set /
    r = 1; /* indicate set occurred */
    asm(" .A9999:");
    asm(" popl %ebx"); /* restore the register */
    return(r);
    Can someone let me know if this is a Compiler issue or it has something to do with my code .
    I'll Appreciate any help on this.
    Thanks in Advance
    Somak

    If you specify -S compiler option, assembly file will be produced and it enables you to look at the code assembler is complaining about. For example:
    /ASM
    pushl %ebx <== line 31
    /ASMEND
    I'm not too familiar with AMD64 ABI, but it is possible that you can't use 32-bit registers in 64 bit mode with some operations like memory (including stack) access.
    I was able to compile code with the following changes:
    asm(" movl $1,%eax"); /* this 1 inworking reg will set x /
    asm(" pushl %rbx"); /* save the register; eax already saved */
    asm(" movl 8(%rbp),%ebx"); /* move the address of x */
    asm(" xchg %eax,(%rbx)"); /* atomic swap a one with x /
    asm(" cmp $0,%eax"); /* test what was in x /
    asm(" jnz .A9999"); /* jump if x was already set /
    r = 1; /* indicate set occurred */
    asm(" .A9999:");
    asm(" popl %rbx"); /* restore the register */

  • Error building using Coverity Prevent and Sun Studio 11

    We recently started using a static code-checking tool called Coverity Prevent. When we first started using it, we were on a very old verison of the Forte Compiler (Forte 6 update 2). Builds completed fine through Prevent. In the last month, we've upgraded to Sun Studio 11 (can't go to 12 because we're using Solaris 8). Now I can't get a build to run completely through Prevent. Prevent has a preprocessor that's a bit more strict than most compilers. I'm getting the following errors in a lot of places.
    "/vobs1/cots/ForteDeveloper/SUNWspro/prod/include/CC/rw7/rw/defs.h", line 316: error #101:
    "istream" has already been declared in the current scope
    class _RWCLASSTYPE istream;
    ^
    "/vobs1/cots/ForteDeveloper/SUNWspro/prod/include/CC/rw7/rw/defs.h", line 317: error #101:
    "ostream" has already been declared in the current scope
    class _RWCLASSTYPE ostream;
    ^
    "/vobs1/cots/ForteDeveloper/SUNWspro/prod/include/CC/rw7/rw/defs.h", line 318: error #101:
    "ios" has already been declared in the current scope
    class _RWCLASSTYPE ios;
    ^
    "/vobs1/cots/ForteDeveloper/SUNWspro/prod/include/CC/Cstd/iostream.h", line 4: error #101:
    "istream" has already been declared in the current scope
    using std::istream;
    ^
    "/vobs1/cots/ForteDeveloper/SUNWspro/prod/include/CC/Cstd/iostream.h", line 9: error #101:
    "ostream" has already been declared in the current scope
    using std::ostream;
    ^
    I've googled a bit, and most of the solutions involve someone mistakenly putting "using namespace std" in a header file. I can't find any case where we do this in our code. One specific file that is failing includes one local header, and that header only includes <fstream.h> and <rw/cstring.h>. It seems like RW and std are conflicting with each other somewhere, but I can't figure out where. The compiler command looks like:
    /vobs1/cots/ForteDeveloper/SUNWspro/bin/CC -xildoff -instances=static -mt -g -fsimple
    -xlibmil -xO3 -xtarget=ultra -DUSE_VFU_LL_C -DXRT -KPIC -library=rwtools7_std -x
    libmopt -DRW_MULTI_THREAD -I/vobs1/cots/rogue/workspaces/SOLARIS7/SUNPRO50/12d -c c4i_file_stream.cpp
    We're still pointing at an older version of RW for the DBTools libraries (rebuilt using the compiler's internal Tools++), but we're using the compiler's internal Tools++ headers and libraries for everything else.

    It sounds like Prevent is not processing the #include directives, or possibly some other preprocessing directives, the same way as the Sun C++ compiler.
    The C++ Users Guide documents how #include directives are processed, and in particular the order in which directories are searched.
    [http://docs.sun.com/app/docs/doc/819-5267/bkaso?a=view]
    If Prevent provides similar documentation, you can compare the docs. If you see a difference, maybe Prevent has some options to control the behavior to make it work like the Sun compiler.
    Note: The CC driver passes some -I directives to the C++ compiler proper (ccfe) that do not appear on the CC command line that you write. The exact -I options depend on other options on the command line. Possibly Prevent is not using the same set of implicit -I directives.
    If you can't resolve the #include directive issue, you might need to talk to Coventry tech support.
    We at Sun are happy to work with 3rd-party vendors to help them get their products working correctly on Sun.

  • Sun Studio 11 Installation Problem on Solaris 9

    Hi
    I am installing Sun Studio11 on Solaris 9 SPARC Platform using -nodisplay option. The command line output is showing as installation is success.
    But when I see the install log file I am seeing the following errors.
    Begin------------------------------------------------------------------------------------------
    Installing Package: SPROcpl
    Processing package instance <SPROcpl> from </mcc/app/ds/Compiler/CD1/kits/ide/packages>
    Sun Studio 11 C++ Compiler
    (sparc) 11.0,REV=2005.10.13
    Using </mcc/app/ds/sunstudio11> as the package base directory.
    ## Processing package information.
    ## Processing system information.
    ## Verifying package dependencies.
    ## Verifying disk space requirements.
    Installing Sun Studio 11 C++ Compiler as <SPROcpl>
    ## Installing part 1 of 1.
    WARNING: /mcc/app/ds/sunstudio11/SUNWspro/inventory/v15n1/SPROcpl <not present on Read Only file system>
    WARNING: /mcc/app/ds/sunstudio11/SUNWspro/prod/bin/CC <not present on Read Only file system>
    WARNING: /mcc/app/ds/sunstudio11/SUNWspro/prod/bin/CCadmin <not present on Read Only file system>
    WARNING: /mcc/app/ds/sunstudio11/SUNWspro/prod/bin/CClink <not present on Read Only file system>
    WARNING: /mcc/app/ds/sunstudio11/SUNWspro/prod/bin/c++filt <not present on Read Only file system>
    WARNING: /mcc/app/ds/sunstudio11/SUNWspro/prod/bin/ccfe <not present on Read Only file system>
    End ------------------------------------------------------------------------------------------
    The above errors are coming for almost all the packages / components.
    Also I am not seeing any files created in <installdir>/SUNWspro/prod/bin folder.
    Thanks in advance

    Give this a whizz:
    for a in `pkginfo | nawk '/SPRO/{print $2}'` ; do pkgchk $a ; doneDoes it report anything? If it doesn't, I wouldn't lose too much sleep over the warnings.
    Paul

  • How to build a report in web Intelligence using Store procedure under Microsoft SQL Server 2000

    Post Author: ltkin
    CA Forum: WebIntelligence Reporting
    Hi,
    How to build a report in web Intelligence using Store procedure under Microsoft SQL Server 2000 ?
    Regards,

    Hi ltkin,
    Unfortunately, it is not possible in Xir2 to create Webi reports from stored procedures.
    Webi reports can only be created from Universe. So in Business Objects XIR3 we can create a special universe that enables Web Intelligence user's to access stored procedures residing in the database. This is the only way that Web Intelligence user's can access stored procedures.
    Please let me know if the above information helps.
    Regards,
    Pavan

  • How to Install Solaris 10 on Sun Server

    Dear All,
    Can any one help me to Install Solaris 10 on Sun Server.
    Or if you guys can suggest me which document i can refer for Solaris 10 installation.
    Thnaks in advance to all.
    Rgds,
    Shrinet

    You can go to doc.sun.com for all Solaris documentation. This should be the link you need, which is for the latest version of Solaris 10 (10/09).
    http://docs.sun.com/app/docs/coll/1236.11?l=en
    If you need an older version, you can find them all here:
    http://docs.sun.com/app/docs/prod/solaris.10?l=en&a=view
    -- Alan

  • Installation of Solaris 10 on SUN Sparc M4000

    Hi
    I am trying to install Solaris 10 on SUN SPARC M4000.
    Here is the error I have:
    +Enter filename [kernel/sparcv9/unix]: /platform/sun4v/kernel/sparcv9/unix+
    +Enter default directory for modules [platform/sun4v/kernel /kernel /usr/kernel]:+
    krtld: load_exec: fail to expand cpu/$CPU
    krtld: error during initial load/link phase
    panic - boot: exitto64 returned from client program
    Program terminated
    It seems that version of Solaris I trying to install is not support by the Hardware, when I use another Solaris 10 DVD, it works...
    But the problem is that I need to install this Solaris version because others softwares are depending on that.
    If someone knows how to make this installation possible, it will be very helpfull.
    Thanks in advance.
    BR
    Racine

    Minimum Supported
    Solaris[tm] Operating Environment Versions for the M4000 are as follows
    OpenSolaris 2009.06
    SPARC64 VI:
    10 - 11/06 (U3) plus required patches (minimum)
    10 - 08/07 (U4) (recommended)
    SPARC64 VII:
    10 - 08/07 (U4) plus required patches (minimum)
    10 - 5/08 (U5) (recommended)
    A full matrix for the M4000 which details the minimum patch requirements to support the h/w is available from https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=1145383.1

  • Oracle 9i and IDS under sun solaris 8

    Need some help on oracle 9i and IDS under sun OS
    i want some clariffication in my project.
    If i develop my application under "sun solaris 8" OS for x86 with "oracle 9i"
    as the backend and "IDS" (internet developer suite) as the front end, Can my
    application be ported to the other environment i.e "SUNFIRE 280R" as the
    server with sun solaris 8 as the OS and the same DB and front-end ?.
    will there be any porting problems ?.
    i am new to this environment.And i don't have SUNFIRE 280R server with me and
    the customer won't supply it.
    can anybody guide me please ?.(i am looking for the suggestions form those who
    really worked on this environment.)
    Murthy

    Andrea...for a faster response, please post this question in the Database - Installation forum:
    Database Installation

Maybe you are looking for