Guest User

raindrops mkmf.log

a guest
Feb 22nd, 2016
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 3.17 KB | None | 0 0
  1. have_func: checking for mmap() in sys/mman.h... -------------------- no
  2.  
  3. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/msys64/mingw64/include/ruby-2.2.0/x64-mingw32 -IC:/msys64/mingw64/include/ruby-2.2.0/ruby/backward -IC:/msys64/mingw64/include/ruby-2.2.0 -I. -D_FORTIFY_SOURCE=2 -D__USE_MINGW_ANSI_STDIO=1 -DFD_SETSIZE=2048 -IC:/msys/x86_64/mingw64/lib/libffi-3.2.1/include  -I/mingw64/include/ncurses -D_WIN32_WINNT=0x0501 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64  -march=x86-64 -mtune=generic -O2 -pipe -I/mingw64/include/ncurses -IC:/msys/x86_64/mingw64/lib/libffi-3.2.1/include  conftest.c  -L. -LC:/msys64/mingw64/lib -L. -pipe     -lx64-msvcrt-ruby220  -lgmp -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi  "
  4. checked program was:
  5. /* begin */
  6. 1: #include "ruby.h"
  7. 2:
  8. 3: #include <winsock2.h>
  9. 4: #include <windows.h>
  10. 5: int main(int argc, char **argv)
  11. 6: {
  12. 7:   return 0;
  13. 8: }
  14. /* end */
  15.  
  16. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/msys64/mingw64/include/ruby-2.2.0/x64-mingw32 -IC:/msys64/mingw64/include/ruby-2.2.0/ruby/backward -IC:/msys64/mingw64/include/ruby-2.2.0 -I. -D_FORTIFY_SOURCE=2 -D__USE_MINGW_ANSI_STDIO=1 -DFD_SETSIZE=2048 -IC:/msys/x86_64/mingw64/lib/libffi-3.2.1/include  -I/mingw64/include/ncurses -D_WIN32_WINNT=0x0501 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64  -march=x86-64 -mtune=generic -O2 -pipe -I/mingw64/include/ncurses -IC:/msys/x86_64/mingw64/lib/libffi-3.2.1/include  conftest.c  -L. -LC:/msys64/mingw64/lib -L. -pipe     -lx64-msvcrt-ruby220  -lgmp -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi  "
  17. conftest.c:5:22: fatal error: sys/mman.h: No such file or directory
  18. compilation terminated.
  19. checked program was:
  20. /* begin */
  21.  1: #include "ruby.h"
  22.  2:
  23.  3: #include <winsock2.h>
  24.  4: #include <windows.h>
  25.  5: #include <sys/mman.h>
  26.  6:
  27.  7: /*top*/
  28.  8: extern int t(void);
  29.  9: int main(int argc, char **argv)
  30. 10: {
  31. 11:   if (argc > 1000000) {
  32. 12:     printf("%p", &t);
  33. 13:   }
  34. 14:
  35. 15:   return 0;
  36. 16: }
  37. 17: int t(void) { void ((*volatile p)()); p = (void ((*)()))mmap; return 0; }
  38. /* end */
  39.  
  40. "x86_64-w64-mingw32-gcc -o conftest.exe -IC:/msys64/mingw64/include/ruby-2.2.0/x64-mingw32 -IC:/msys64/mingw64/include/ruby-2.2.0/ruby/backward -IC:/msys64/mingw64/include/ruby-2.2.0 -I. -D_FORTIFY_SOURCE=2 -D__USE_MINGW_ANSI_STDIO=1 -DFD_SETSIZE=2048 -IC:/msys/x86_64/mingw64/lib/libffi-3.2.1/include  -I/mingw64/include/ncurses -D_WIN32_WINNT=0x0501 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64  -march=x86-64 -mtune=generic -O2 -pipe -I/mingw64/include/ncurses -IC:/msys/x86_64/mingw64/lib/libffi-3.2.1/include  conftest.c  -L. -LC:/msys64/mingw64/lib -L. -pipe     -lx64-msvcrt-ruby220  -lgmp -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi  "
  41. conftest.c:5:22: fatal error: sys/mman.h: No such file or directory
  42. compilation terminated.
  43. checked program was:
  44. /* begin */
  45.  1: #include "ruby.h"
  46.  2:
  47.  3: #include <winsock2.h>
  48.  4: #include <windows.h>
  49.  5: #include <sys/mman.h>
  50.  6:
  51.  7: /*top*/
  52.  8: extern int t(void);
  53.  9: int main(int argc, char **argv)
  54. 10: {
  55. 11:   if (argc > 1000000) {
  56. 12:     printf("%p", &t);
  57. 13:   }
  58. 14:
  59. 15:   return 0;
  60. 16: }
  61. 17: int t(void) { mmap(); return 0; }
  62. /* end */
  63.  
  64. --------------------
Advertisement
Add Comment
Please, Sign In to add comment