Advertisement
Guest User

Untitled

a guest
Sep 16th, 2013
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.69 KB | None | 0 0
  1. -g -O2 conftest.c >&5
  2. configure:3137: $? = 0
  3. configure:3141: test -z
  4. || test ! -s conftest.err
  5. configure:3144: $? = 0
  6. configure:3147: test -s conftest.o
  7. configure:3150: $? = 0
  8. configure:3161: result: yes
  9. configure:3173: checking for short
  10. configure:3197: gcc -c -g -O2 conftest.c >&5
  11. configure:3203: $? = 0
  12. configure:3207: test -z
  13. || test ! -s conftest.err
  14. configure:3210: $? = 0
  15. configure:3213: test -s conftest.o
  16. configure:3216: $? = 0
  17. configure:3227: result: yes
  18. configure:3230: checking size of short
  19. configure:3549: gcc -o conftest.exe -g -O2 conftest.c >&5
  20. configure:3552: $? = 0
  21. configure:3554: ./conftest.exe
  22. ./configure: line 3555: ./conftest.exe: No such file or directory
  23. configure:3557: $? = 127
  24. configure: program exited with status 127
  25. configure: failed program was:
  26. | /* confdefs.h. */
  27. |
  28. | #define PACKAGE_NAME ""
  29. | #define PACKAGE_TARNAME ""
  30. | #define PACKAGE_VERSION ""
  31. | #define PACKAGE_STRING ""
  32. | #define PACKAGE_BUGREPORT ""
  33. | #define NDEBUG 1
  34. | #define DISABLE_CORE 1
  35. | #define HAVE_SYS_TYPES_H 1
  36. | #define HAVE_SYS_STAT_H 1
  37. | #define HAVE_STDLIB_H 1
  38. | #define HAVE_STRING_H 1
  39. | #define HAVE_MEMORY_H 1
  40. | #define HAVE_STRINGS_H 1
  41. | #define HAVE_INTTYPES_H 1
  42. | #define HAVE_STDINT_H 1
  43. | #define HAVE_UNISTD_H 1
  44. | /* end confdefs.h. */
  45. | #include <stdio.h>
  46. | #if HAVE_SYS_TYPES_H
  47. | # include <sys/types.h>
  48. | #endif
  49. | #if HAVE_SYS_STAT_H
  50. | # include <sys/stat.h>
  51. | #endif
  52. | #if STDC_HEADERS
  53. | # include <stdlib.h>
  54. | # include <stddef.h>
  55. | #else
  56. | # if HAVE_STDLIB_H
  57. | # include <stdlib.h>
  58. | # endif
  59. | #endif
  60. | #if HAVE_STRING_H
  61. | # if !STDC_HEADERS && HAVE_MEMORY_H
  62. | # include <memory.h>
  63. | # endif
  64. | # include <string.h>
  65. | #endif
  66. | #if HAVE_STRINGS_H
  67. | # include <strings.h>
  68. | #endif
  69. | #if HAVE_INTTYPES_H
  70. | # include <inttypes.h>
  71. | #else
  72. | # if HAVE_STDINT_H
  73. | # include <stdint.h>
  74. | # endif
  75. | #endif
  76. | #if HAVE_UNISTD_H
  77. | # include <unistd.h>
  78. | #endif
  79. | long longval () { return (long) (sizeof (short)); }
  80. | unsigned long ulongval () { return (long) (sizeof (short)); }
  81. | #include <stdio.h>
  82. | #include <stdlib.h>
  83. | int
  84. | main ()
  85. | {
  86. |
  87. | FILE *f = fopen ("conftest.val", "w");
  88. | if (! f)
  89. | exit (1);
  90. | if (((long) (sizeof (short))) < 0)
  91. | {
  92. | long i = longval ();
  93. | if (i != ((long) (sizeof (short))))
  94. | exit (1);
  95. | fprintf (f, "%ld\n", i);
  96. | }
  97. | else
  98. | {
  99. | unsigned long i = ulongval ();
  100. | if (i != ((long) (sizeof (short))))
  101. | exit (1);
  102. | fprintf (f, "%lu\n", i);
  103. | }
  104. | exit (ferror (f) || fclose (f) != 0);
  105. |
  106. | ;
  107. | return 0;
  108. | }
  109. configure:3567: error: cannot compute sizeof (short), 77
  110. See `config.log' for more details.
  111.  
  112. ##
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement