An error occurred fetching the project authors.
  1. 12 Oct, 2020 7 commits
  2. 25 Sep, 2020 1 commit
  3. 09 Aug, 2020 1 commit
  4. 03 Apr, 2020 1 commit
  5. 08 Mar, 2020 2 commits
  6. 01 Feb, 2020 1 commit
  7. 01 Jan, 2020 1 commit
  8. 12 Dec, 2019 1 commit
  9. 09 Dec, 2019 1 commit
  10. 26 Sep, 2019 1 commit
  11. 12 Sep, 2019 1 commit
  12. 20 Aug, 2019 1 commit
  13. 07 Aug, 2019 1 commit
  14. 05 Aug, 2019 1 commit
    • KOBAYASHI Shuji's avatar
      Use new specifiers/modifiers of `mrb_vfromat()` · 334afb16
      KOBAYASHI Shuji authored
      The binary sizes (gems are only `mruby-bin-mruby`) are reduced slightly in
      my environment than before the introduction of new specifiers/modifiers
      (5116789a) with this change.
      
        ------------+-------------------+-------------------+--------
         BINARY     | BEFORE (5116789a) |   AFTER (This PR) |  RATIO
        ------------+-------------------+-------------------+--------
         mruby      |      593416 bytes |      593208 bytes | -0.04%
         libmruby.a |      769048 bytes |      767264 bytes | -0.23%
        ------------+-------------------+-------------------+--------
      
      BTW, I accidentally changed `tasks/toolchains/visualcpp.rake` at #4613,
      so I put it back.
      334afb16
  15. 18 Jun, 2019 1 commit
  16. 06 May, 2019 1 commit
    • KOBAYASHI Shuji's avatar
      Avoid using `mrb_str_to_cstr` if possible · e2604c15
      KOBAYASHI Shuji authored
      Because it always allocate new string. Replace with the followings:
      
      - Use `RSRING_PTR` if string is guaranteed to be null-terminated.
      - Use `mrb_string_value_cstr` or `mrb_get_args("z")` if return value isn't
        modified.
      e2604c15
  17. 05 May, 2019 1 commit
  18. 18 Feb, 2019 1 commit
  19. 22 Nov, 2018 1 commit
  20. 01 Sep, 2018 1 commit
  21. 25 Aug, 2018 1 commit
  22. 10 Aug, 2018 1 commit
  23. 21 Jul, 2018 1 commit
  24. 14 Jun, 2018 6 commits
  25. 05 Jun, 2018 1 commit
    • Sebastián Katzer's avatar
      Declare inet_ntop and inet_pton as static · e7a46991
      Sebastián Katzer authored
      To avoid conflicts with multiple definitions of inet_ntop and inet_pton if compiled with # define _WIN32_WINNT _WIN32_WINNT_VISTA
      
      C:/mingw-w64/x86_64-7.2.0-posix-seh-rt_v5-rev1/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/7.2.0/../../../../x86_64-w64-mingw32/lib/../lib/libWs2_32.a(dghfs00169.o):(.text+0x0): multiple definition of `inet_pton'
      722C:/projects/iss/mruby/build/host/lib/libmruby.a(socket.o):C:/projects/iss/mruby/mrbgems/mruby-socket/src/socket.c:80: first defined here
      
      define _WIN32_WINNT _WIN32_WINNT_VISTA
      e7a46991
  26. 17 Apr, 2018 3 commits