Loading...
You are not logged-in Login/Register





  • Posts   Search Threads
  • StanJanuary 20, 2009 6:01 AM PST   
    Unexpected PDB error; RPC (23) '(0x000006BA)' with intel 11

    Hello,

    Since I did switch to latest version of the compiler - in one of the project constantly I'm getting above error. If I do switch to version 10 - error dissapear.

    After investigation (several hours :(( ) - I've discovered that anonymous local structure did cause error:

    foo() {

    struct {
    std::string a;
    std::strinb b;
    } _foo_f
    }

    I should probably report that as a bug - but (I'm quite tired with this error - fighting with that over 3 days -  and perhaps I'm doing something stupid??) - did anybody else observe such problem? Or can give any comment?

    Thanks,
    Stan


    cGPSmapper

    Jennifer Jiang (Intel)January 20, 2009 9:40 AM PST
    Rate
     
    Re: Unexpected PDB error; RPC (23) '(0x000006BA)' with intel 11

    I recently saw the same error with a program too. But your testcase is great and I can duplicate the problem with following code.
    #include <string> 
    void foo() 
    {
     struct {
     std::string a;
     std::string b;
     } _foo_f;
    }
    
    int main(int argc, char* argv[])
    {
     foo();
     return 0;
    }
    
    

    C:testissues>icl /Zi pdb.cpp
    Intel(R) C++ Compiler Professional for applications running on IA-32, Version 11
    .0    Build 20081105 Package ID: w_cproc_p_11.0.066
    Copyright (C) 1985-2008 Intel Corporation.  All rights reserved.

    pdb.cpp
    Microsoft (R) Incremental Linker Version 9.00.21022.08
    Copyright (C) Microsoft Corporation.  All rights reserved.

    -out:pdb.exe
    -debug
    -pdb:pdb.pdb
    pdb.obj
    pdb.obj : fatal error LNK1318: Unexpected PDB error; RPC (23) '(0x000006BA)'

    I'll create a bug report to the compiler. Thanks for creating a testcase.

    Jennifer



    Download Intel(R) Compiler Product Updates: Registration Center.
    Try Intel(R) Compiler Products: Intel Software Evaluation Center

    Jennifer Jiang (Intel)January 20, 2009 9:56 AM PST
    Rate
     
    Re: Unexpected PDB error; RPC (23) '(0x000006BA)' with intel 11

    Hi Stan,
    which version of 10.1 you're using? I've tried 10.1.025/10.1.021, all failed with the same error.

    Thanks!
    Jennifer



    Download Intel(R) Compiler Product Updates: Registration Center.
    Try Intel(R) Compiler Products: Intel Software Evaluation Center

    StanJanuary 21, 2009 2:51 AM PST
    Rate
     
    Re: Unexpected PDB error; RPC (23) '(0x000006BA)' with intel 11

    Hi Stan,
    which version of 10.1 you're using? I've tried 10.1.025/10.1.021, all failed with the same error.

    Thanks!
    Jennifer

    Hello Jennifer,

    Thanks a lot for confirmation. At first I though that problem is more complex and related to other parts of the code -(especially as I was just introducing latest boost + latest STLport - and was sure for 2 days (and nights) that there is a problem related to these libraries) now see that there is a simple relation to such structure.

    My fault - I've realised - I've removed previous versions of compiler - and MS compiler was used - therefore seems that it's older problem.

    Thanks again, waiting for a fix :)
    Stan


    cGPSmapper

    Jennifer Jiang (Intel)July 22, 2009 4:53 PM PDT
    Rate
     
    Re: Unexpected PDB error; RPC (23) '(0x000006BA)' with intel 11

    Quoting - Stan
    Thanks again, waiting for a fix :)
    Stan
    This issue is fixed. The fix is in the latest 11.0.075 or 11.1.35 or newer.
    You can find the latest 11.1 at our eval-center or registration-center.

    Jennifer


    Download Intel(R) Compiler Product Updates: Registration Center.
    Try Intel(R) Compiler Products: Intel Software Evaluation Center

Forum jump:  

Intel Software Network Forums Statistics

16,371 users have contributed to 46,345 threads and 163,979 posts to date.

In the past 24 hours, we have 17 new thread(s) 90 new posts(s), and 65 new user(s).

In the past 3 days, the most popular thread for everyone has been Formula for the intersection of straight lines The most posts were made to Take a look at John Burkhard&# The post with the most views is \"-check none\" generates error

Please welcome our newest member theoriginalgunn


For more complete information about compiler optimizations, see our Optimization Notice.