Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix iostream related issues #5047

Merged
merged 5 commits into from
Aug 26, 2018
Merged

Fix iostream related issues #5047

merged 5 commits into from
Aug 26, 2018

Commits on Aug 20, 2018

  1. add stubs for more exception throw calls

    Fixes #3358
    igrr committed Aug 20, 2018
    Configuration menu
    Copy the full SHA
    fa67b92 View commit details
    Browse the repository at this point in the history
  2. libc: make putc_r implementation weak

    newlib provides its own implementation of _putc_r, which will call
    _write_r (possibly after buffering). Make our implementation weak to
    allow using the one from newlib.
    
    Fixes #4630
    igrr committed Aug 20, 2018
    Configuration menu
    Copy the full SHA
    97d0806 View commit details
    Browse the repository at this point in the history
  3. libc: fix incorrect return value of _write_r call

    Should return number of bytes written, actually returned zero. This
    resulted in std::cout going into failed state after the first write.
    igrr committed Aug 20, 2018
    Configuration menu
    Copy the full SHA
    074dff7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6e906b2 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2018

  1. Configuration menu
    Copy the full SHA
    775b0a0 View commit details
    Browse the repository at this point in the history