Created
August 31, 2017 14:09
-
-
Save mcne65/c353035df7442cb385b29c78ed4bdc9c to your computer and use it in GitHub Desktop.
Ruby
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Ones that have their own macros. | |
major AC_HEADER_MAJOR | |
minor AC_HEADER_MAJOR | |
makedev AC_HEADER_MAJOR | |
bcopy AC_HEADER_STDC | |
bcmp AC_HEADER_STDC | |
bzero AC_HEADER_STDC | |
ioctl AC_PROG_GCC_TRADITIONAL | |
memchr AC_HEADER_STDC | |
memcpy AC_HEADER_STDC | |
memcmp AC_FUNC_MEMCMP | |
memmove AC_HEADER_STDC | |
memset AC_HEADER_STDC | |
index AC_HEADER_STDC | |
rindex AC_HEADER_STDC | |
getgroups AC_TYPE_GETGROUPS | |
getpgrp AC_FUNC_GETPGRP | |
setpgrp AC_FUNC_SETPGRP | |
signal AC_TYPE_SIGNAL | |
alloca AC_FUNC_ALLOCA | |
fnmatch AC_FUNC_FNMATCH | |
getloadavg AC_FUNC_GETLOADAVG | |
mmap AC_FUNC_MMAP | |
setvbuf AC_FUNC_SETVBUF_REVERSED | |
strcoll AC_FUNC_STRCOLL | |
strftime AC_FUNC_STRFTIME | |
utime AC_FUNC_UTIME_NULL | |
vfork AC_FUNC_VFORK | |
vprintf AC_FUNC_VPRINTF | |
vfprintf AC_FUNC_VPRINTF | |
vsprintf AC_FUNC_VPRINTF | |
wait3 AC_FUNC_WAIT3 | |
# Others. | |
ftime AC_CHECK_FUNCS | |
gethostname AC_CHECK_FUNCS | |
gettimeofday AC_CHECK_FUNCS | |
getusershell AC_CHECK_FUNCS | |
getcwd AC_CHECK_FUNCS | |
getwd AC_CHECK_FUNCS | |
mkdir AC_CHECK_FUNCS | |
mkfifo AC_CHECK_FUNCS | |
mktime AC_CHECK_FUNCS | |
putenv AC_CHECK_FUNCS | |
re_comp AC_CHECK_FUNCS | |
regcmp AC_CHECK_FUNCS | |
regcomp AC_CHECK_FUNCS | |
rmdir AC_CHECK_FUNCS | |
select AC_CHECK_FUNCS | |
socket AC_CHECK_FUNCS | |
stime AC_CHECK_FUNCS | |
strcspn AC_CHECK_FUNCS | |
strdup AC_CHECK_FUNCS | |
strerror AC_CHECK_FUNCS | |
strspn AC_CHECK_FUNCS | |
strstr AC_CHECK_FUNCS | |
strtod AC_CHECK_FUNCS | |
strtol AC_CHECK_FUNCS | |
strtoul AC_CHECK_FUNCS | |
uname AC_CHECK_FUNCS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"x86_64-w64-mingw32-gcc -o conftest.exe -IC:/tools/ruby24/include/ruby-2.4.0/x64-mingw32 -IC:/tools/ruby24/include/ruby-2.4.0/ruby/backward -IC:/tools/ruby24/include/ruby-2.4.0 -I. -D_FORTIFY_SOURCE=2 -D__USE_MINGW_ANSI_STDIO=1 -DFD_SETSIZE=2048 -IC:/msys64/mingw64/lib/libffi-3.2.1/include -D_WIN32_WINNT=0x0501 -D__MINGW_USE_VC2005_COMPAT -D_FILE_OFFSET_BITS=64 -march=x86-64 -mtune=generic -O2 -pipe -IC:/msys64/mingw64/lib/libffi-3.2.1/include conftest.c -L. -LC:/tools/ruby24/lib -L. -pipe -lx64-msvcrt-ruby240 -lgmp -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi " | |
checked program was: | |
/* begin */ | |
1: #include "ruby.h" | |
2: | |
3: #include <winsock2.h> | |
4: #include <windows.h> | |
5: int main(int argc, char **argv) | |
6: { | |
7: return 0; | |
8: } | |
/* end */ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@colby-swandale