kbzowski

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 18 total)
  • Author
    Posts
  • in reply to: CppEngineHost is hanging up frequently #7711
    kbzowski
    Participant

    It is rather strange. After replacing dll with debugable version – all errors are gone…
    I will continue my tests and report if it hang again.

    in reply to: GCC 5.2.0 supports in VisualGDB #6837
    kbzowski
    Participant

    Hi,

    Well, I have updated to R3 and… still the same:

    $ gdb –version
    GNU gdb (GDB) 7.9.1

    $ gcc –version
    gcc (GCC) 5.2.0

    in reply to: Possible bug in 5.0 in IntelliSense #6828
    kbzowski
    Participant

    Faulty entries disappeared after upgrading to 5.0R2.
    Previously after clicking Remove they stayed without any change.

    Problem seems to be solved.

     

    in reply to: MEF Cache #6761
    kbzowski
    Participant

    It fixed the problem. Thank you.

    in reply to: MEF Cache #6738
    kbzowski
    Participant

    Uninstalling, rebooting, and installing again did not fix the problem.

    This is info about my installation. AFAIK I am using only Resharper.

    Microsoft Visual Studio Enterprise 2015 Version 14.0.23107.0 D14REL Microsoft .NET Framework Version 4.6.00081

    Installed Version: Enterprise

    Architecture and Modeling Tools   00322-80000-00000-AA476 Microsoft Architecture and Modeling Tools

    UML® and Unified Modeling Language™ are trademarks or registered trademarks of the Object Management Group, Inc. in the United States and other countries.

    LightSwitch for Visual Studio 2015   00322-80000-00000-AA476 Microsoft LightSwitch for Visual Studio 2015

    Visual Basic 2015   00322-80000-00000-AA476 Microsoft Visual Basic 2015

    Visual C# 2015   00322-80000-00000-AA476 Microsoft Visual C# 2015

    Visual C++ 2015   00322-80000-00000-AA476 Microsoft Visual C++ 2015

    Application Insights Tools for Visual Studio Package   1.0 Application Insights Tools for Visual Studio

    ASP.NET and Web Tools   14.0.20626.0 ASP.NET and Web Tools

    ASP.NET Web Frameworks and Tools 2013   5.2.30624.0 For additional information, visit http://www.asp.net/

    Common Azure Tools   1.5 Provides common services for use by Azure Mobile Services and Microsoft Azure Tools.

    GenerateUnitTest   1.0 Generates unit test code for methods in classes under test.

    JetBrains ReSharper Ultimate 2015.1.2   Build 102.0.20150721.105606 JetBrains ReSharper Ultimate package for Microsoft Visual Studio. For more information about ReSharper Ultimate, visit http://www.jetbrains.com/resharper. Copyright © 2015 JetBrains, Inc.

    Microsoft Azure Mobile Services Tools   1.4 Microsoft Azure Mobile Services Tools

    Microsoft Code Digger   0.9 Microsoft Code Digger

    Microsoft.Pex.VisualStudio   1.0 Pex

    NuGet Package Manager   3.0.0 NuGet Package Manager in Visual Studio. For more information about NuGet, visit http://docs.nuget.org/.

    Office Developer Tools for Visual Studio 2015 ENU   14.0.23025 Microsoft Office Developer Tools for Visual Studio 2015 ENU

    PreEmptive Analytics Visualizer   1.2 Microsoft Visual Studio extension to visualize aggregated summaries from the PreEmptive Analytics product.

    SQL Server Data Tools   14.0.50616.0 Microsoft SQL Server Data Tools

    VisualGDB   5.0 Allows developing and debugging Embedded, Linux, Android and other GCC/GDB-based applications with Visual Studio.

    Workflow Manager Tools 1.0   1.0 This package contains the necessary Visual Studio integration components for Workflow Manager.

    • This reply was modified 8 years, 9 months ago by kbzowski.
    • This reply was modified 8 years, 9 months ago by kbzowski.
    • This reply was modified 8 years, 9 months ago by kbzowski.
    in reply to: VS Error after finished debugging #2929
    kbzowski
    Participant

    Well it is unfortunate case that error shows only with VisualGDB solutions. I have checked almost all solution types available in VS, and only after debugging VisualGDB that error appears. Sorry for the inconvenience. I will submit bug to their support.

    Thank you for your help and your time.

    in reply to: VS Error after finished debugging #2933
    kbzowski
    Participant
    in reply to: Possible bug in Custom Debug Steps #2790
    kbzowski
    Participant

    It works, but It would be very nice to see Custom Debug Step connected to GDB launching.
    Many people use Environmental Modules to load libraries before debugging – so I think it will be helpful.

    in reply to: Possible bug in Custom Debug Steps #2788
    kbzowski
    Participant

    Everything looks good there. No errors. Only information about successfully loaded modules.
    I tried also set one export command (which works when it is added to .bashrc) – same thing. No error – doesn’t work.

    VisualGDB: Executing predebug actions
    VisualGDB: Run "export LD_LIBRARY_PATH=/packages/gcc/4.8.1/lib64:/packages/gcc/4.8.1/lib" in directory "/home/kbzowski/femafat" on kbzowski@xx.xx (SSH)
    VisualGDB: Launching gdb
    VisualGDB: Run "/packages/gdb/7.6/bin/gdb --interpreter mi --args "$(TargetPath)"" in directory "$(BuildDir)" on kbzowski@xx.xx (SSH)
    VisualGDB: Executing postdebug actions
    
    in reply to: Application output #2223
    kbzowski
    Participant

    I was talking about remote linux project.
    I will perform update. Thanks you for the information.

    in reply to: .gdbinit #2314
    kbzowski
    Participant
    in reply to: Pretty print of stdlib C++ #2342
    kbzowski
    Participant

    I made some research:
    GCC 4.4.6 + GDB 7.2 (Both Scientific Linux 6.3 defaults) – doesn’t work
    GCC 4.4.6 (from SL 6.3) + GDB 7.5.1 (Manually compiled) – doesn’t work
    GCC 4.8 (Manually compiled) + GDB 7.2 (from SL 6.3) – debugging doesn’t work at all 🙁
    GCC 4.8 + GDB 7.5.1 (Both manually compiled) – works perfect

    I’m a little disappointed. But using newest GCC and GDB has solved my problem.

    in reply to: Pretty print of stdlib C++ #2340
    kbzowski
    Participant

    Yes, it is declared in stl_map.h inside class map.
    First few lines. You can find there declaration of _Rep_type and _M_t

      template ,
    typename _Alloc = std::allocator > >
    class map
    {
    public:
    typedef _Key key_type;
    typedef _Tp mapped_type;
    typedef std::pair value_type;
    typedef _Compare key_compare;
    typedef _Alloc allocator_type;

    private:
    // concept requirements
    typedef typename _Alloc::value_type _Alloc_value_type;
    __glibcxx_class_requires(_Tp, _SGIAssignableConcept)
    __glibcxx_class_requires4(_Compare, bool, _Key, _Key,
    _BinaryFunctionConcept)
    __glibcxx_class_requires2(value_type, _Alloc_value_type, _SameTypeConcept)

    public:
    class value_compare
    : public std::binary_function
    {
    friend class map<_Key, _Tp, _Compare, _Alloc>;
    protected:
    _Compare comp;

    value_compare(_Compare __c)
    : comp(__c) { }

    public:
    bool operator()(const value_type& __x, const value_type& __y) const
    { return comp(__x.first, __y.first); }
    };

    private:
    /// This turns a red-black tree into a [multi]map.
    typedef typename _Alloc::template rebind::other
    _Pair_alloc_type;

    typedef _Rb_tree,
    key_compare, _Pair_alloc_type> _Rep_type;

    /// The actual tree structure.
    _Rep_type _M_t;

    I have checked newest version of stl_map.h from gcc 4.8.0 and declaration of _Rep_type is the same. I can not understand, how that can cause problems.

    in reply to: Pretty print of stdlib C++ #2338
    kbzowski
    Participant

    Is this what you mean?

    typedef _Rb_tree, key_compare, _Pair_alloc_type> _Rep_type;
    in reply to: Pretty print of stdlib C++ #2336
    kbzowski
    Participant

    Hi,
    If I’ve understood you correctly _M_t is according ‘Watch Window’ declared as:

    std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >
Viewing 15 posts - 1 through 15 (of 18 total)