Nls conversion not supported

Hello,
os: Linux 4
oracle : 10.2.0.2.0
when performing recovery for cloned database
man-12703 this character set conversion is not supported.
Thanks.

2703, 00000, "this character set conversion is not supported"
// *Cause: The requested conversion between two character sets in the CONVERT
//         function is not implemented
// *Action:please share with us via COPY & PASTE exactly what you do & how Oracle responds
ALWAYS
Post Operating System (OS) name & version for DB server system.
Post results of
SELECT * from v$version
or post Oracle version to 4 decimal places

Similar Messages

  • AutoVue server does not support file conversion

    We've developed the ISDK for viewing the files and it's working fine. As the next step, it's required to use AutoVue Web Services to convert the files to pdf and jpeg formats.
    I've deployed the AutoVueWS.war and VueServlet.war files in our application server and ping method works fine. But the 'Convert' method in web services gives below error.
    javax.xml.ws.soap.SOAPFaultException: convert failed:File conversion not supported. ConvertOption[|Format:PDF|ScaleType:TYPE_SIZE|ScaleFactor:0|Width:800.0|Height:600.0|PageType:RANGE|FromPage:1|ToPage:1|ColorDepth:-1|FileName:c:/output/readme.txt-1357634753084.1.PDF|StepsPerInch:0.0|CameraView:NONE]
         at com.sun.xml.internal.ws.fault.SOAP11Fault.getProtocolException(SOAP11Fault.java:178)
         at com.sun.xml.internal.ws.fault.SOAPFaultBuilder.createException(SOAPFaultBuilder.java:111)
         at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:108)
         at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:78)
         at com.sun.xml.internal.ws.client.sei.SEIStub.invoke(SEIStub.java:107)
         at $Proxy32.convert(Unknown Source)
         at autovuewsclient2.AutoVueWSClient2.main(AutoVueWSClient2.java:50)
    The client code is as below.
    VueBeanWS_Service service = new VueBeanWS_Service();
    //create proxy
    VueBeanWS proxy = service.getVueBeanWSPort();
    //call autovue ping Web method
    System.out.print (proxy.ping("Hello from Java") );
    //Call the convert Web method.
    try{
    ConvertOption option = new ConvertOption();
    option.setFormat(Format.PDF);
    option.setPage(1);
    option.setScaleType(ScaleType.TYPE_SIZE);
    option.setHeight(600);
    option.setWidth(800);
    String URI = "http://wordpress.org/extend/plugins/about/readme.txt";
    byte[] file = proxy.convert(URI, option, null, false);
    FileOutputStream fos = new FileOutputStream("c:/temp/output1.pdf");
    fos.write(file);
    fos.close();
    catch(Exception e){
    e.printStackTrace();
    File in the above URI is downloaded to the AutoVue Server properly. But the conversion is failed.
    Please help me to solve this error.

    Hi,
    To convert files to PDF format, AutoVue uses a built-in proprietary PDF print driver called the AutoVue Document Converter. The above error may occur if this print driver is not properly installed. To install the AutoVue Document Converter print driver, execute the InstallPdfPrintDriver.exe program from your AutoVue installation directory. Before proceeding with the install make sure the "Print Spooler" service is started.
    Here are the necessary steps in order to enable the "Print Spooler":
    1. Go to Start > Settings > Control Panel > Administrative Tools.
    2. Select Services.
    3. Select the "Print Spooler" service and make sure to start it.
    4. Try to install the AutoVue Document Converter print driver.
    Thanks,
    Daniel

  • Conversion of a data object of type "C" to type "l" is not supported

    Experts:
    i have below code in my FM; defined as remote-enabled module.
    when i execute i get the error analysis as:
      You attempted to move one data object to another.
    This is not possible here because the conversion of a data object
      of type "C" to type "l" is not supported.
    This at the line    move <FS2> TO <wwa_mdm_name_value_pair>-VALUE .
    what are the steps to debug this?  Thanks!
      DATA: tt_mdm_name_value_pair_table TYPE mdm_name_value_pair_table.
      FIELD-SYMBOLS : <wwa_mdm_name_value_pair> LIKE LINE OF tt_mdm_name_value_pair_table.
      FIELD-SYMBOLS <FS1> TYPE ANY.
      FIELD-SYMBOLS <FS2> TYPE any.
      data:st_mdm_name_value_pair type mdm_name_value_pair.
      assign  st_mdm_name_value_pair to <wwa_mdm_name_value_pair>.
    assign st_mdm_name_value_pair-code to <FS1>.
    assign st_mdm_name_value_pair-value to <FS2>.
      clear wa_ZSTRESULT.
      loop at T_UPDATE into wa_ZSTRESULT.
        assign wa_ZSTRESULT-field to <FS1>.
        <wwa_mdm_name_value_pair>-CODE = <FS1>.
        assign wa_ZSTRESULT-VALUE to <FS2>.
        move <FS2> TO <wwa_mdm_name_value_pair>-VALUE .
        append <wwa_mdm_name_value_pair> to tt_mdm_name_value_pair_table.
      endloop.

    resolved using GET REFERENCE.. code looks as below:  Thanks!
      DATA: tt_mdm_name_value_pair_table TYPE mdm_name_value_pair_table.
      FIELD-SYMBOLS : <wwa_mdm_name_value_pair> TYPE LINE OF mdm_name_value_pair_table.
      FIELD-SYMBOLS <FS1> TYPE ANY.
      FIELD-SYMBOLS <FS2> TYPE DATA.
      TYPES t_dref TYPE REF TO DATA.
      DATA dref TYPE REF TO DATA.
      DATA: TT_UPDATE TYPE ZTYRESULT.
      FIELD-SYMBOLS : <WA_UPDATE> LIKE LINE OF TT_UPDATE.
      data:   st_mdm_name_value_pair type mdm_name_value_pair.
      assign  st_mdm_name_value_pair to <wwa_mdm_name_value_pair>.
    assign st_mdm_name_value_pair-code to <FS1>.
    assign st_mdm_name_value_pair-value to <FS2>.
      clear wa_ZSTRESULT.
      TT_UPDATE = T_UPDATE.
      loop at TT_UPDATE assigning <WA_UPDATE>.
        assign <WA_UPDATE>-FIELD to <FS1>.
        <wwa_mdm_name_value_pair>-CODE = <FS1>.
        assign <WA_UPDATE>-VALUE  to  <FS2>.
        GET REFERENCE OF <WA_UPDATE>-VALUE INTO dref.
    *    MOVE dref TO <wwa_mdm_name_value_pair>-VALUE.
        <wwa_mdm_name_value_pair>-VALUE = dref.
        append <wwa_mdm_name_value_pair> to tt_mdm_name_value_pair_table.
      endloop.

  • Conversion of type "u" to type "v" not supported (cl_abap_tabledescr)

    Help! I am struggling with implementing a solution using cl_abap_tabledescr.
    At below  statement :
    <f_interim_data> = <f_ref_data>.
    I get the error:
    Conversion of type "u" to type "v" not supported. 
    Coding:
    DATA:
        l_r_tabledescr      TYPE  REF TO cl_abap_tabledescr,
        l_r_itab            type  ref to data,
        l_r_data_ref        type  ref to data,
        l_r_data            type  ref to data.
      field-symbols:
        <gt_itab>          TYPE ANY TABLE,
        <gt_itab_BCCMP07>  TYPE STANDARD TABLE.
      field-symbols:
        <f_ref_data>            type  any,
        <f_new_data>            type  any,
        <f_interim_data>        type  any.
      go_tdescr ?= cl_abap_tabledescr=>describe_by_data( i_th_ref_data ).
      go_sdescr ?= go_tdescr->get_table_line_type( ).
      gd_tabnam     = 'I_TH_REF_DATA'.
      loop at go_sdescr->components INTO gs_component.
        "   Build fieldname
        CONCATENATE gd_tabnam gs_component-name INTO gd_tabfield
                                                SEPARATED BY '-'.
        CLEAR: gs_comp.
        gs_comp-name  = gs_component-name.
        gs_comp-type ?= cl_abap_datadescr=>describe_by_data( gd_tabfield ).
        APPEND gs_comp TO gt_components.
      endloop.
    Begin create dynamic standard table copy of I_TH_REF_DATA
      "   Create instances of dynamic structure and dynamic internal table
      go_sdescr_new  = cl_abap_structdescr=>create( P_COMPONENTS = gt_components p_strict = abap_false ).
      go_tdescr      = cl_abap_tabledescr=>create( go_sdescr_new ).
      "   Create data refence followed by table creation
      CREATE DATA gdo_handle TYPE HANDLE go_tdescr.
      ASSIGN gdo_handle->* TO <gt_itab_BCCMP07>.
    End create dynamic standard table copy of I_TH_REF_DATA
    "Generate ref record
      create data l_r_data_ref like line of <gt_itab_BCCMP07>.
      assign l_r_data_ref->* to <f_interim_data>.
      loop at i_th_ref_data assigning <f_ref_data>.
         <f_interim_data> = <f_ref_data>.
          append <f_interim_data> to <gt_itab_BCCMP07>.

    Hi ,
    Check the code below which is similar to waht you are doing. It gets the existing fields from a structure and then adds some extra fields to it ( decimals 3 )and creates a dyn table. If you need it with decimals 2 then use WTGXXX data element
    DATA:lf_startdate TYPE sy-datum,
           li_index(2) TYPE n,
           la_datum TYPE type_date.
      DATA:i_comp TYPE cl_abap_structdescr=>component_table,
           i_tot_comp TYPE cl_abap_structdescr=>component_table,
           lf_struct TYPE REF TO cl_abap_structdescr,
           lf_element TYPE REF TO cl_abap_elemdescr,
           la_comp LIKE LINE OF i_comp,
           lf_new_type TYPE REF TO cl_abap_structdescr,
           lf_new_tab TYPE REF TO cl_abap_tabledescr.
      CLEAR: lf_startdate,li_index,la_datum,i_comp[],i_tot_comp[].
    *--Getting Compoents from existing type
      lf_struct ?= cl_abap_typedescr=>describe_by_name( 'TYPE_PUT' ).
      i_comp = lf_struct->get_components( ).
      APPEND LINES OF i_comp TO i_tot_comp.
    *--Adding weekly bukets fields based on date in selection screen
      DO.
        li_index = sy-index.
        IF lf_startdate GT s_lfdat-high.
          EXIT.
        ENDIF.
        IF li_index EQ 1.
          PERFORM get_first_day_of_week USING s_lfdat-low
                                        CHANGING lf_startdate.
          la_datum-dat = lf_startdate .
    *--Element Description
          lf_element ?= cl_abap_elemdescr=>describe_by_name( 'MESXXX' ).
          CONCATENATE 'MES0' li_index  INTO la_comp-name.
          la_datum-field = la_comp-name.
    *--Field Type
          la_comp-type =
            cl_abap_elemdescr=>get_p( p_length = lf_element->length
                                      p_decimals = lf_element->decimals ).
          APPEND la_comp TO i_tot_comp.
          CLEAR: la_comp.
          APPEND la_datum TO i_datum.
          CLEAR: la_datum.
          CONTINUE.
        ENDIF.
        lf_startdate = lf_startdate + 6.
        la_datum-dat = lf_startdate .
        lf_element ?= cl_abap_elemdescr=>describe_by_name( 'MESXXX' ).
        CONCATENATE 'MES0' li_index  INTO la_comp-name.
        la_datum-field = la_comp-name.
        la_comp-type =
          cl_abap_elemdescr=>get_p( p_length = lf_element->length
                                    p_decimals = lf_element->decimals ).
    *--Fill the component table
        APPEND la_comp TO i_tot_comp.
        CLEAR: la_comp.
        APPEND la_datum TO i_datum.
        CLEAR: la_datum.
      ENDDO.
    *--Create type
      TRY.
          lf_new_type = cl_abap_structdescr=>create( i_tot_comp ).
        CATCH cx_sy_struct_creation .                       "#EC NO_HANDLER
      ENDTRY.
    *--Create Table type
      TRY.
          lf_new_tab =
          cl_abap_tabledescr=>create( p_line_type = lf_new_type
          p_table_kind = cl_abap_tabledescr=>tablekind_std p_unique = ' ' ).
        CATCH cx_sy_table_creation .                        "#EC NO_HANDLER
      ENDTRY.
    *--data to handle the new table type
      CREATE DATA wf_data TYPE HANDLE lf_new_tab.
    *--data to handle the work area
      CREATE DATA wf_str TYPE HANDLE lf_new_type.
    *--Assign to fs
      ASSIGN wf_data->* TO <fs_tab>.
      ASSIGN wf_str->* TO <fs_line>.

  • I have tried to convert and this is what I get for an answerFile does not support conversion? How can that be Its a PDF??

    File does not support conversion? How can that be Its a PDF??

    Hi vang,
    Kindly refer this FAQ link:What file formats does Adobe PDF Pack support?
    Regards,
    Florence

  • Failed. Format conversion is not supported

    Hello again, this error happened when I was playing around with Creative Audio Converter
    Failed. Format conversion is not supported
    This error happened when I was converting a song from WMA Pro, 128 Kbps, 44khz, 2 Channel 24-Bit to WMA Pro, 128 Kbps, 44khz, 5.1 Channel 24-Bit
    Why is this error happening? And if the conversion is not supported, then why did Creative bother to put this format on their sound cards? Or is this another of Microsoft's problem?
    Thank You.

    Thank you very much for answering my query about that, at this moment i am very interested on 5.1 channel conversion. I have written to other ppl on other forums about 5.1 channel conversion. One person told me that there are a lot of ways to do it, depending on what kind of 5.1 upmixing do you want to perform. What kinds of upmixing do you use for 5.1 channel conversion? What do you recomend?
    Thank You very much

  • Audio Converter in MediaSource-Format Conversion is not support

    Just bought a ZEN Micro and I have a question about the Audio Converter in MediaSource. Everytime I try to convert a file I am getting this error: Format Conversion is Not supported.Fo example I just tried to convert a 92kbps MP3 to a 28kbps MP3. I also tried to convert the same file to a 28 WMA. Both times I got the Format Conversion is Not Supported Error. I have tried a few different files with no success.Please HELP!
    I emailed customer service and they told me to just reinstall MediaSource..Seems like thats the standard answer to everything...Any other suggestions would be helpful!
    Thanks

    Faztang,
    Reinstalling MediaSource can often resolve problems like this because they may be caused by a file that was not copied over correctly during install. This is usually a good first suggestion but it certainly isn't the only suggestion they will offer.
    What if you use the standalone version of the file converter, does it give you the same errors? Also if you haven't yet uninstalled and reinstalled you might try installing into a different directory as that can help with this also.
    Jeremy

  • IMP-00016: required character set conversion (type 1 to 871) not supported

    I am running Oracle DB: 8.1.7.4
    Hit a problem when I export from Source DB: US7ASCII
    and then, import into Target DB: UTF8.
    Is there any workaround if this is the only export dump available?
    Many thanks in advance.

    Thanks for the prompt reply.
    Both source and target are in the same version: 8.1.7.4.
    The error gotten:
    Import: Release 8.1.7.4.0 - Production on Fri Aug 22 15:37:37 2008
    (c) Copyright 2000 Oracle Corporation. All rights reserved.
    Connected to: Oracle8i Release 8.1.7.4.0 - Production
    JServer Release 8.1.7.4.0 - Production
    IMP-00016: required character set conversion (type 1 to 871) not supported
    IMP-00000: Import terminated unsuccessfully
    Many thanks in advance.

  • IMP-00016  required character set conversion (type 178 to 871) not supported

    Hi, I am importing Portal release 2 handson to our test database whose character set is UTF8,durning importing, the following error message comes out 'IMP-00016: required character set conversion (type 178 to 871) not supported',what should i do? thank u in advance . My mail address is:[email protected] .

    Thanks for the prompt reply.
    Both source and target are in the same version: 8.1.7.4.
    The error gotten:
    Import: Release 8.1.7.4.0 - Production on Fri Aug 22 15:37:37 2008
    (c) Copyright 2000 Oracle Corporation. All rights reserved.
    Connected to: Oracle8i Release 8.1.7.4.0 - Production
    JServer Release 8.1.7.4.0 - Production
    IMP-00016: required character set conversion (type 1 to 871) not supported
    IMP-00000: Import terminated unsuccessfully
    Many thanks in advance.

  • Conversations Features not supported

    after i updated my phone with symbian anna, i open the conversation at messages after that a message appears MESSAGING: FEATURES NOT SUPPORTED. does symbian anna dont support Conversation?? my phone is n8

    all i can suggest is reinstall from ovisuite

  • Acrobat XI does not support the conversion?

    I have Acrobat XI when I take a batch of PDF files and try to combine them into one PDF file I keep getting this error message......
    "Acrobat does not support the conversion of one or more of your files to PDF. Please remove these files or go to Settings and choose the PDF Portfolio option". I am making a electronic disk and the Portfolio option won't work for what I am doing. Does anyone know how to fix this? I have converted these files before and never had any problems with this. I have tried this on a new computer and now I get the error message. I attached a picture of the error.
    I have Acrobat XI on a
    Dell Optiplex 3020
    Windows 7 Pro 64 bit

    I just got done and went through every file and opened them to check the Document properties, then security tab, then security method and all of them say no security. Have any other ideas?

  • Acrobat XI does not support conversion of MS Office Publisher documents?

    I recently obtained a new computer and loaded it with MS Office 2013 and Acrobat Pro XI.
    I tried to convert a publisher document to a pdf, and Pro XI apparently does not support .pub files, only .doc, .xls, and .ppt. 
    When I had Office 2010 and Acrobat X, I could convert publisher documents.  What happened?

    I just got done and went through every file and opened them to check the Document properties, then security tab, then security method and all of them say no security. Have any other ideas?

  • Included Mini-DVI to DVI adapter does not support HDCP and iTunes HD movies

    Hi.
    Just downloaded Twilight in HD (to own) from the iTunes Store and had the annoying message about HDCP not being supported by my display, and that I could not play the movie in HD.
    My Mac Mini is plugged to a very HDCP-compliant Sony Bravia 40" LCD TV via Apple's mini-DVI to DVI adapter (included in the new Mac Mini's box) and a DVI to HDMI cable.
    (HDCP works well for this TV with a PS3, another Sony Blu-Ray player (the 2 are for zones A and B), an AppleTV)
    Since I have other recent Macs with a Mini DisplayPort, I happen to also have an Apple branded Mini DisplayPort to DVI adapter.
    So I replaced the (mini-DVI to DVI) adapter by the (Mini DisplayPort to DVI) adapter and plugged it on the Mini DisplayPort on the Mac Mini.
    I can now play the HD version on my Sony TV!!
    This really sounds like a joke!
    A joke that is going to make me go the shop and buy another (Mini DisplayPort to DVI) adapter, since I like to always have one, as well as the VGA adapter, with my MacBooks.
    Let's hope there will sonn be an iTunes, Leopard, or mini-DVI to DVI adapter firmware update very soon to fix this.

    I am actually very surprised that your miniDisplayPort to DVI transition works with HD content.
    I'd consider that a bonus and cherish it until Apple removes that functionality in a future update.
    It is probably a bug as it should not work.
    The thing to keep in mind is that DVI cables do not support the necessary DRM/encryption signals for HD video content.
    This is one of the main reason DisplayPort was introduced.
    So I am not surprised that miniDVI to DVI to HDCP does not play HD content on your TV.
    In fact this is +expected behavior+ due to the lack of DRM/encryption signals.
    No matter how you convert from miniDVI to DVI, the port cannot create something that it doesn't have in the first place.
    The more I am surprised that the miniDisplayPort to DVI to HDCP transition provides these signals. I would have expected them to be filtered out in the DVI cable in the middle as this cable cannot pass something on that DVI is not designed to carry (HD DRM/encryption signals).
    It could very well be a 'bug' in the miniDisplayPort to DVI cable controller, which Apple might 'fix' in a future driver update.
    It is likely a mistake that this works.
    What you really need is a miniDisplayPort to DisplayPort to HDCP conversion. Or directly a miniDisplayPort to HDCP cable. Those are the only routes that are guaranteed to work passing HD video DRM/encryption signals along.
    But as far as i know neither of these two cables are available yet.
    Which might be the reason why Apple - for the time being - allows your miniDisplayPort to DVI route to work. Emphasis on +for the time being+.
    I would not count on the fact that this will work forever.
    And I would certainly not count on a software update that will make the DVI route work. This will never work due to DVI's incapacity of providing DRM/encryption signals for HD content.

  • "error: thread-local storage not supported for this target"

    I have a program that uses the __thread specifier, to be run on a Solaris 9/UltraSprac.
    I am not able to compile it using gcc 3.4.4 or 4.0.4, it emits the msg "error: thread-local storage not supported for this target".
    xz@gamera% gcc -v -Wall -D_REENTRANT -c -o func_stack.o func_stack.c
    Reading specs from /opt/gcc/3.4.4/lib/gcc/sparc-sun-solaris2.8/3.4.4/specs
    Configured with: ../srcdir/configure --prefix=/opt/gcc/3.4.4 --disable-nls
    Thread model: posix
    gcc version 3.4.4
    /opt/gcc/3.4.4/libexec/gcc/sparc-sun-solaris2.8/3.4.4/cc1 -quiet -v -D_REENTRANT -DMESS func_stack.c -quiet -dumpbase func_stack.c -mcpu=v7 -auxbase-strip func_stack.o -Wall -version -o /var/tmp//cc0poHSN.s
    ignoring nonexistent directory "/usr/local/include"
    ignoring nonexistent directory "/opt/gcc/3.4.4/lib/gcc/sparc-sun-solaris2.8/3.4.4/../../../../sparc-sun-solaris2.8/include"
    #include "..." search starts here:
    #include <...> search starts here:
    /opt/gcc/3.4.4/include
    /opt/gcc/3.4.4/lib/gcc/sparc-sun-solaris2.8/3.4.4/include
    /usr/include
    End of search list.
    GNU C version 3.4.4 (sparc-sun-solaris2.8)
            compiled by GNU C version 3.4.4.
    GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
    func_stack.c:16: error: thread-local storage not supported for this target
    func_stack.c:17: error: thread-local storage not supported for this target
    func_stack.c:19: error: thread-local storage not supported for this target
    xs@gamera% gcc -v -D_REENTRANT  -c -o func_stack.o func_stack.c
    Using built-in specs.
    Target: sparc-sun-solaris2.9
    Configured with: /net/clpt-v490-0/export/data/bldmstr/20070711_mars_gcc/src/configure --prefix=/usr/sfw --enable-shared --with-system-zlib --enable-checking=release --disable-libmudflap --enable-languages=c,c++ --enable-version-specific-runtime-libs --with-cpu=v9 --with-ld=/usr/ccs/bin/ld --without-gnu-ld
    Thread model: posix
    gcc version 4.0.4 (gccfss)
    /pkg/gcc/4.0.4/bin/../libexec/gcc/sparc-sun-solaris2.9/4.0.4/cc1 -quiet -v -I. -iprefix /pkg/gcc/4.0.4/bin/../lib/gcc/sparc-sun-solaris2.9/4.0.4/ -D__sparcv8 -D_REENTRANT -DMESS func_stack.c -quiet -dumpbase func_stack.c -mcpu=v9 -auxbase-strip func_stack.o -version -m32 -o /tmp/ccjsdswh.s -r /tmp/cc2w4ZRo.ir
    ignoring nonexistent directory "/pkg/gcc/4.0.4/bin/../lib/gcc/sparc-sun-solaris2.9/4.0.4/../../../../sparc-sun-solaris2.9/include"
    ignoring nonexistent directory "/usr/local/include"
    ignoring nonexistent directory "/usr/sfw/lib/gcc/sparc-sun-solaris2.9/4.0.4/include"
    ignoring nonexistent directory "/usr/sfw/lib/../sparc-sun-solaris2.9/include"
    #include "..." search starts here:
    #include <...> search starts here:
    /pkg/gcc/4.0.4/bin/../lib/gcc/sparc-sun-solaris2.9/4.0.4/include
    /usr/sfw/include
    /usr/include
    End of search list.
    GNU C version 4.0.4 (gccfss) (sparc-sun-solaris2.9)
            compiled by GNU C version 4.0.4 (gccfss).
    GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
    func_stack.c:16: error: thread-local storage not supported for this target
    func_stack.c:17: error: thread-local storage not supported for this target
    func_stack.c:19: error: thread-local storage not supported for this targetJust as comparison, the corresponding output of compiling another file which does not have __thread declaration is as follows:
    xz@gamera% gcc -v -Wall -D_REENTRANT -c -o common.o common.c
    Reading specs from /opt/gcc/3.4.4/lib/gcc/sparc-sun-solaris2.8/3.4.4/specs
    Configured with: ../srcdir/configure --prefix=/opt/gcc/3.4.4 --disable-nls
    Thread model: posix
    gcc version 3.4.4
    /opt/gcc/3.4.4/libexec/gcc/sparc-sun-solaris2.8/3.4.4/cc1 -quiet -v -D_REENTRANT -DMESS common.c -quiet -dumpbase common.c -mcpu=v7 -auxbase-strip common.o -Wall -version -o /var/tmp//cc4VxrLz.s
    ignoring nonexistent directory "/usr/local/include"
    ignoring nonexistent directory "/opt/gcc/3.4.4/lib/gcc/sparc-sun-solaris2.8/3.4.4/../../../../sparc-sun-solaris2.8/include"
    #include "..." search starts here:
    #include <...> search starts here:
    /opt/gcc/3.4.4/include
    /opt/gcc/3.4.4/lib/gcc/sparc-sun-solaris2.8/3.4.4/include
    /usr/include
    End of search list.
    GNU C version 3.4.4 (sparc-sun-solaris2.8)
            compiled by GNU C version 3.4.4.
    GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
    /usr/ccs/bin/as -V -Qy -s -xarch=v8 -o common.o /var/tmp//cc4VxrLz.s
    /usr/ccs/bin/as: Sun WorkShop 6 update 2 Compiler Common 6.2 Solaris_9_CBE 2001/04/02Note that the last 2 lines seem to suggest that a Sun assembler is used as the back-end of gcc. I am not sure whether the failure to compile the first file (with __thread) was due to the incompatibility of this Sun assembler. In the first case, the error msg was emitted before these 2 lines are printed.
    I further read a post about gcc 3.3.3's inability to compile code that has __thread in it, on a HP-UX 11.11: http://forums12.itrc.hp.com/service/forums/questionanswer.do?admit=109447627+1216595175060+28353475&threadId=1148976 The conclusion seems to suggest that "the 2.17 GNU assembler did not support thread local storage" and gcc sees that and thus disallows TLS.
    If the assembler is the culprit, then does anyone know whether this "Sun WorkShop 6 update 2" assembler in my installation can work with TLS? And how come a Sun assembler becomes the back-end of gcc? I read that gas (the GNU assembler) is the default backend of gcc. (How) can one specify the assembler to be used for gcc?
    As an aside, I am able to compile my file on this same Solaris 9/UltraSparc platform using the Sun Studio 12 C Compiler:
    xz@gamera% cc -V -# -D_REENTRANT  -c -o func_stack.o func_stack.c
    cc: Sun C 5.9 SunOS_sparc Patch 124867-01 2007/07/12
    ### Note: NLSPATH = /pkg/SUNWspro/12/prod/bin/../lib/locale/%L/LC_MESSAGES/%N.cat:/pkg/SUNWspro/12/prod/bin/../../lib/locale/%L/LC_MESSAGES/%N.cat
    ###     command line files and options (expanded):
    ### -c -D_REENTRANT  -V func_stack.c -o func_stack.o
    /pkg/SUNWspro/12/prod/bin/acomp -xldscope=global -i func_stack.c -y-fbe -y/pkg/SUNWspro/12/prod/bin/fbe -y-xarch=generic -y-xmemalign=8i -y-o -yfunc_stack.o -y-verbose -y-xthreadvar=no%dynamic -y-comdat -xdbggen=no%stabs+dwarf2+usedonly -V -D_REENTRANT  -m32 -fparam_ir -Qy -D__SunOS_5_9 -D__SUNPRO_C=0x590 -D__SVR4 -D__sun -D__SunOS -D__unix -D__sparc -D__BUILTIN_VA_ARG_INCR -D__C99FEATURES__ -Xa -D__PRAGMA_REDEFINE_EXTNAME -Dunix -Dsun -Dsparc -D__RESTRICT -xc99=%all,no%lib -D__FLT_EVAL_METHOD__=0 -I/pkg/SUNWspro/12/prod/include/cc "-g/pkg/SUNWspro/12/prod/bin/cc -V -D_REENTRANT  -c -o func_stack.o " -fsimple=0 -D__SUN_PREFETCH -destination_ir=yabe
    acomp: Sun C 5.9 SunOS_sparc Patch 124867-01 2007/07/12Interestingly, the output no longer mentions the "/usr/ccs/bin/as: Sun WorkShop 6 update 2" assembler.

    Just as another comparison, I compiled a file without __thread on the Solaris 9/UltraSparc platform using gcc 4.0.4. Not surprisingly it worked. But I no longer see the mention of the Sun assembler as in the case of gcc 3.4.4. Nor did I see the mention of "GNU assembler" as in the case of gcc 4.0.4/Solaris 10/x86. Instead, I saw something called "iropt" and "cg". Does anyone know what they are?
    xz@gamera% gcc -v -Wall -D_REENTRANT -c -o common.o common.c
    Using built-in specs.
    Target: sparc-sun-solaris2.9
    Configured with: /net/clpt-v490-0/export/data/bldmstr/20070711_mars_gcc/src/configure --prefix=/usr/sfw --enable-shared --with-system-zlib --enable-checking=release --disable-libmudflap --enable-languages=c,c++ --enable-version-specific-runtime-libs --with-cpu=v9 --with-ld=/usr/ccs/bin/ld --without-gnu-ld
    Thread model: posix
    gcc version 4.0.4 (gccfss)
    /pkg/gcc/4.0.4/bin/../libexec/gcc/sparc-sun-solaris2.9/4.0.4/cc1 -quiet -v -iprefix /pkg/gcc/4.0.4/bin/../lib/gcc/sparc-sun-solaris2.9/4.0.4/ -D__sparcv8 -D_REENTRANT -DMESS common.c -quiet -dumpbase common.c -mcpu=v9 -auxbase-strip common.o -Wall -version -m32 -o /tmp/ccSGJIDD.s -r /tmp/ccKuJz76.ir
    ignoring nonexistent directory "/pkg/gcc/4.0.4/bin/../lib/gcc/sparc-sun-solaris2.9/4.0.4/../../../../sparc-sun-solaris2.9/include"
    ignoring nonexistent directory "/usr/local/include"
    ignoring nonexistent directory "/usr/sfw/lib/gcc/sparc-sun-solaris2.9/4.0.4/include"
    ignoring nonexistent directory "/usr/sfw/lib/../sparc-sun-solaris2.9/include"
    #include "..." search starts here:
    #include <...> search starts here:
    /pkg/gcc/4.0.4/bin/../lib/gcc/sparc-sun-solaris2.9/4.0.4/include
    /usr/sfw/include
    /usr/include
    End of search list.
    GNU C version 4.0.4 (gccfss) (sparc-sun-solaris2.9)
            compiled by GNU C version 4.0.4 (gccfss).
    GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
    /pkg/gcc/4.0.4/SUNW0scgfss/4.0.4/prod/bin/iropt -F -xarch=v8plus -xchip=generic -O1 -xvector=no -xbuiltin=%none -xcache=generic -Qy -h_gcc -o /tmp/ccUl4mVM.ircg /tmp/ccKuJz76.ir -N/dev/null -is /tmp/ccSGJIDD.s
    /pkg/gcc/4.0.4/SUNW0scgfss/4.0.4/prod/bin/cg -Qy -xarch=v8plus -xchip=generic -OO0 -T3 -Qiselect-C0 -Qrm:newregman:coalescing=0 -xcode=abs32 -xcache=generic -xmemalign=8i -il /pkg/gcc/4.0.4/bin/../lib/gcc/sparc-sun-solaris2.9/4.0.4//gccbuiltins.il -xvector=no -xthreadvar=no%dynamic -xbuiltin=%none -Qassembler-ounrefsym=0 -Qiselect-T0 -Qassembler-I -Qassembler-U -comdat -h_gcc -is /tmp/ccSGJIDD.s -ir /tmp/ccUl4mVM.ircg -oo common.o

  • When I send a photo to someone by bluetooth it says "not supported content"

    i just got this BB curve 8520 today and I tried to send a photo to a friend via bluetooth, but they couldn't open it. Instead, it said "not supported content". I can send stuff to my friend from my old Nokia phone. Any idea what's wrong?

    There is another setting for "Start Conversation from", that needs to be set to phone number.

Maybe you are looking for

  • Multiple BSOD Windows 7 Home Premium 64bit Fujitsu Amilo Desktop

    hi, ive had my fujitsu amilo pc for about 7-8 years and its been working fine until just after xmas i started getting bluescreens and pc wouldnt start up.. ive tried everything, memtest shows no problems , heres a list of bsod codes ive wrote down: d

  • OC4J not installed properly

    Hi, I ran a Complete install of OBIEE 10.1.3.4.2 on my Win7 64 bit machine, however, the oc4j_bi folder has a lot of missing files. Even in my Start-->Programs-->Oracle Business Intelligence section i do not see the Start OC4J and Stop OC4J options.

  • ACVHD files to Blu-ray, can I use FCP?

    I am about to buy a Duo Quad 2.66Ghz Mac Pro, 12gb, Raid, ATI 4870 etc. I have tones of ACVHD (.mts) files of family/holiday footage of my Sony CX12 which I want to put on Blu-ray disc. Indeed Apple doesn't support Blu-ray but I read that you can plu

  • Cutting videos with Quicktime

    I can play most video files using Quicktime but I can't always cut them. When I play mpeg files the commands for cut, copy, delete and paste are not in bold--in other words, they are not available. Can anyone help?

  • What features, capabilities, etc. deleted by Apple in iTunes 11?

    Apple only announces a few of the changes in updated software and never releases a detailed list of what has been deleted/changed from the previous version. So I'm asking what is no longer available in iTunes 11, that previously was available in itun