Changeset 09553a0 in mainline for uspace/lib/cpp


Ignore:
Timestamp:
2018-07-05T21:41:25Z (7 years ago)
Author:
Dzejrou <dzejrou@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c12d567
Parents:
d62d2c6
git-author:
Dzejrou <dzejrou@…> (2018-06-25 21:52:29)
git-committer:
Dzejrou <dzejrou@…> (2018-07-05 21:41:25)
Message:

cpp+c: added missing linker script modifications and fixed some compile errors for different architectures

Location:
uspace/lib/cpp
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/cpp/include/__bits/string/string.hpp

    rd62d2c6 r09553a0  
    14951495                    return max(capacity_ * 2, hint);
    14961496                else
    1497                     return max(capacity_ * 2, 2ul);
     1497                    return max(capacity_ * 2, size_type{2u});
    14981498            }
    14991499
  • uspace/lib/cpp/src/__bits/runtime.cpp

    rd62d2c6 r09553a0  
    194194        return nullptr;
    195195    }
     196
     197    // Needed on arm.
     198    extern "C" void __cxa_end_cleanup()
     199    { /* DUMMY BODY */ }
    196200}
Note: See TracChangeset for help on using the changeset viewer.