Advertisement
Guest User

Untitled

a guest
Oct 2nd, 2017
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 56.09 KB | None | 0 0
  1. # Log file generated by
  2. #
  3. # './configure --disable-kmods --enable-vde --enable-vnc --with-makeself=/usr/bin/echo --enable-hardening --disable-java'
  4. #
  5.  
  6. ***** Checking environment *****
  7. Determined build machine: linux.amd64, target machine: linux.amd64
  8.  
  9.  
  10. ***** Checking kBuild *****
  11. found
  12.  
  13.  
  14. ***** Checking Open Watcom *****
  15. ** Open Watcom was not found, using alternative BIOS sources!
  16.  
  17. ***** Checking iasl *****
  18. found version 20170531
  19.  
  20.  
  21. ***** Checking xslt *****
  22. found
  23.  
  24.  
  25. ***** Checking mkisofs *****
  26. found mkisofs 3.01-fix-20151126 (x86_64-unknown-linux-gnu) Copyright (C) 1993-1997 Eric Youngdale (C) 1997-2015 Joerg Schilling
  27.  
  28.  
  29. ***** Checking pthread *****
  30. compiling the following source file:
  31. #include <cstdio>
  32. #include <pthread.h>
  33. extern "C" int main(void)
  34. {
  35. pthread_mutex_t mutex;
  36. if (pthread_mutex_init(&mutex, NULL)) {
  37. printf("pthread_mutex_init() failed\n");
  38. return 1;
  39. }
  40. if (pthread_mutex_lock(&mutex)) {
  41. printf("pthread_mutex_lock() failed\n");
  42. return 1;
  43. }
  44. if (pthread_mutex_unlock(&mutex)) {
  45. printf("pthread_mutex_unlock() failed\n");
  46. return 1;
  47. }
  48. printf("found, OK.\n");
  49. }
  50. using the following command line:
  51. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-lpthread"
  52. executing the binary
  53. found, OK.
  54.  
  55.  
  56. ***** Checking libxml2 *****
  57. compiling the following source file:
  58. #include <cstdio>
  59. #include <libxml/xmlversion.h>
  60. extern "C" int main(void)
  61. {
  62. printf("found version %s", LIBXML_DOTTED_VERSION);
  63. #if LIBXML_VERSION >= 20626
  64. printf(", OK.\n");
  65. return 0;
  66. #else
  67. printf(", expected version 2.6.26 or higher\n");
  68. return 1;
  69. #endif
  70. }
  71. using the following command line:
  72. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-lxml2 -lpthread -I/usr/include/libxml2"
  73. executing the binary
  74. found version 2.9.5, OK.
  75.  
  76.  
  77. ***** Checking libIDL *****
  78. found version 0.8.14
  79.  
  80.  
  81. ***** Checking ssl *****
  82. compiling the following source file:
  83. #include <cstdio>
  84. #include <openssl/opensslv.h>
  85. #include <openssl/ssl.h>
  86. extern "C" int main(void)
  87. {
  88. printf("found version %s", OPENSSL_VERSION_TEXT);
  89. SSL_library_init();
  90. #if OPENSSL_VERSION_NUMBER >= 0x00908000
  91. printf(", OK.\n");
  92. return 0;
  93. #else
  94. printf(", expected version 0.9.8 or higher\n");
  95. return 1;
  96. #endif
  97. }
  98. using the following command line:
  99. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc " -lssl -lcrypto"
  100. executing the binary
  101. found version OpenSSL 1.0.2k 26 Jan 2017, OK.
  102.  
  103.  
  104. ***** Checking libcurl *****
  105. compiling the following source file:
  106. #include <cstdio>
  107. #include <curl/curl.h>
  108. extern "C" int main(void)
  109. {
  110. printf("found version %s", LIBCURL_VERSION);
  111. #if 10000*LIBCURL_VERSION_MAJOR + 100*LIBCURL_VERSION_MINOR + LIBCURL_VERSION_PATCH >= 71901
  112. printf(", OK.\n");
  113. return 0;
  114. #else
  115. printf(", expected version 7.19.1 or higher\n");
  116. return 1;
  117. #endif
  118. }
  119. using the following command line:
  120. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-lcurl "
  121. executing the binary
  122. found version 7.55.0, OK.
  123.  
  124.  
  125. ***** Checking libvpx *****
  126. compiling the following source file:
  127. #include <cstdio>
  128. #include <vpx/vpx_codec.h>
  129. extern "C" int main(void)
  130. {
  131. int version = vpx_codec_version();
  132. int verMajor = VPX_VERSION_MAJOR(version);
  133. int verMinor = VPX_VERSION_MINOR(version);
  134. int verPatch = VPX_VERSION_PATCH(version);
  135. printf("found version %d.%d.%d", verMajor, verMinor, verPatch);
  136. if ( verMajor == 1 && verMinor >= 0
  137. || verMajor == 0 && verMinor == 9 && verPatch >= 5)
  138. {
  139. printf(", OK.\n");
  140. return 0;
  141. }
  142. else
  143. {
  144. printf(", expected version 0.9.5 or higher\n");
  145. return 1;
  146. }
  147. }
  148. using the following command line:
  149. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-lvpx -lm "
  150. /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc: In function 'int main()':
  151. /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc:10:24: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
  152. if ( verMajor == 1 && verMinor >= 0
  153. ^
  154. executing the binary
  155. found version 1.5.0, OK.
  156.  
  157.  
  158. ***** Checking zlib *****
  159. compiling the following source file:
  160. #include <cstdio>
  161. #include <zlib.h>
  162. extern "C" int main(void)
  163. {
  164. printf("found version %s", ZLIB_VERSION);
  165. #if ZLIB_VERNUM >= 0x1210
  166. printf(", OK.\n");
  167. return 0;
  168. #else
  169. printf(", expected version 1.2.1 or higher\n");
  170. return 1;
  171. #endif
  172. }
  173. using the following command line:
  174. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-lz "
  175. executing the binary
  176. found version 1.2.8, OK.
  177.  
  178.  
  179. ***** Checking libpng *****
  180. compiling the following source file:
  181. #include <cstdio>
  182. #include <png.h>
  183. extern "C" int main(void)
  184. {
  185. printf("found version %s", PNG_LIBPNG_VER_STRING);
  186. #if PNG_LIBPNG_VER >= 10205
  187. printf(", OK.\n");
  188. return 0;
  189. #else
  190. printf(", expected version 1.2.5 or higher\n");
  191. return 1;
  192. #endif
  193. }
  194. using the following command line:
  195. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-lpng "
  196. executing the binary
  197. found version 1.6.27, OK.
  198.  
  199.  
  200. ***** Checking SDL *****
  201. compiling the following source file:
  202. #include <cstdio>
  203. #include <SDL.h>
  204. #include <SDL_main.h>
  205. #undef main
  206. extern "C" int main(int argc, char** argv)
  207. {
  208. printf("found version %d.%d.%d",
  209. SDL_MAJOR_VERSION, SDL_MINOR_VERSION, SDL_PATCHLEVEL);
  210. #if SDL_VERSION_ATLEAST(1,2,7)
  211. printf(", OK.\n");
  212. return 0;
  213. #else
  214. printf(", expected version 1.2.7 or higher\n");
  215. return 1;
  216. #endif
  217. }
  218. using the following command line:
  219. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-L/usr/lib64 -Wl,-rpath,/usr/lib64 -lSDL -lpthread -I/usr/include/SDL "
  220. executing the binary
  221. found version 1.2.15, OK.
  222.  
  223.  
  224. ***** Checking X libraries *****
  225. compiling the following source file:
  226. #include <cstdio>
  227. #include <X11/Xlib.h>
  228. extern "C" int main(void)
  229. {
  230. Display *dpy;
  231. int scrn_num;
  232. Screen *scrn;
  233. Window win;
  234.  
  235. dpy = XOpenDisplay(NULL);
  236. scrn_num = DefaultScreen(dpy);
  237. scrn = ScreenOfDisplay(dpy, scrn_num);
  238. win = XCreateWindow(dpy, RootWindowOfScreen(scrn), 0, 0, 100, 100,
  239. 0, 16, InputOutput, CopyFromParent, 0, NULL);
  240. XDestroyWindow(dpy, win);
  241. XCloseDisplay(dpy);
  242. }
  243. using the following command line:
  244. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-L/usr/X11R6/lib -L/usr/X11R6/lib64 -L/usr/local/lib -lXext -lX11 -I/usr/local/include"
  245. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libXext.so when searching for -lXext
  246. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libX11.so when searching for -lX11
  247. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libstdc++.so when searching for -lstdc++
  248. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libstdc++.a when searching for -lstdc++
  249. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libm.so when searching for -lm
  250. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libm.a when searching for -lm
  251. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libgcc_s.so when searching for -lgcc_s
  252. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libc.so when searching for -lc
  253. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libc.a when searching for -lc
  254. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libgcc_s.so when searching for -lgcc_s
  255. found
  256.  
  257.  
  258. ***** Checking Xcursor *****
  259. compiling the following source file:
  260. #include <cstdio>
  261. #include <X11/Xlib.h>
  262. #include <X11/Xcursor/Xcursor.h>
  263. extern "C" int main(void)
  264. {
  265. XcursorImage *cursor = XcursorImageCreate (10, 10);
  266. XcursorImageDestroy(cursor);
  267. return 0;
  268. }
  269. using the following command line:
  270. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-L/usr/X11R6/lib -L/usr/X11R6/lib64 -L/usr/local/lib -lXext -lX11 -lXcursor -I/usr/local/include"
  271. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libXext.so when searching for -lXext
  272. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libX11.so when searching for -lX11
  273. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libXcursor.so when searching for -lXcursor
  274. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libstdc++.so when searching for -lstdc++
  275. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libstdc++.a when searching for -lstdc++
  276. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libm.so when searching for -lm
  277. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libm.a when searching for -lm
  278. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libgcc_s.so when searching for -lgcc_s
  279. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libc.so when searching for -lc
  280. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libc.a when searching for -lc
  281. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libgcc_s.so when searching for -lgcc_s
  282. found
  283.  
  284.  
  285. ***** Checking Xinerama *****
  286. compiling the following source file:
  287. #include <X11/Xlib.h>
  288. #include <X11/extensions/Xinerama.h>
  289. extern "C" int main(void)
  290. {
  291. Display *dpy;
  292. Bool flag;
  293. dpy = XOpenDisplay(NULL);
  294. if (dpy)
  295. {
  296. flag = XineramaIsActive(dpy);
  297. XCloseDisplay(dpy);
  298. }
  299. }
  300. using the following command line:
  301. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-L/usr/X11R6/lib -L/usr/X11R6/lib64 -L/usr/local/lib -lXext -lX11 -lXinerama -I/usr/local/include"
  302. /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc: In function 'int main()':
  303. /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc:6:8: warning: variable 'flag' set but not used [-Wunused-but-set-variable]
  304. Bool flag;
  305. ^
  306. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libXext.so when searching for -lXext
  307. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libX11.so when searching for -lX11
  308. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libXinerama.so when searching for -lXinerama
  309. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libstdc++.so when searching for -lstdc++
  310. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libstdc++.a when searching for -lstdc++
  311. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libm.so when searching for -lm
  312. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libm.a when searching for -lm
  313. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libgcc_s.so when searching for -lgcc_s
  314. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libc.so when searching for -lc
  315. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libc.a when searching for -lc
  316. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libgcc_s.so when searching for -lgcc_s
  317. found
  318.  
  319.  
  320. ***** Checking Xrandr *****
  321. compiling the following source file:
  322. #include <X11/Xlib.h>
  323. #include <X11/extensions/Xrandr.h>
  324. extern "C" int main(void)
  325. {
  326. Display *dpy;
  327. Bool flag;
  328. int major, minor;
  329. dpy = XOpenDisplay(NULL);
  330. if (dpy)
  331. {
  332. flag = XRRQueryVersion(dpy, &major, &minor);
  333. XCloseDisplay(dpy);
  334. }
  335. }
  336. using the following command line:
  337. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-L/usr/X11R6/lib -L/usr/X11R6/lib64 -L/usr/local/lib -lXext -lX11 -lXrandr -I/usr/local/include"
  338. /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc: In function 'int main()':
  339. /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc:6:8: warning: variable 'flag' set but not used [-Wunused-but-set-variable]
  340. Bool flag;
  341. ^
  342. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libXext.so when searching for -lXext
  343. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libX11.so when searching for -lX11
  344. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libXrandr.so when searching for -lXrandr
  345. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libstdc++.so when searching for -lstdc++
  346. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libstdc++.a when searching for -lstdc++
  347. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libm.so when searching for -lm
  348. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libm.a when searching for -lm
  349. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libgcc_s.so when searching for -lgcc_s
  350. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libc.so when searching for -lc
  351. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libc.a when searching for -lc
  352. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libgcc_s.so when searching for -lgcc_s
  353. found
  354.  
  355.  
  356. ***** Checking Xmu *****
  357. compiling the following source file:
  358. #include <cstdio>
  359. #include <X11/Xatom.h>
  360. #include <X11/Xlib.h>
  361. #include <X11/Xutil.h>
  362. #include <X11/Xmu/StdCmap.h>
  363. extern "C" int main(void)
  364. {
  365. Display *dpy;
  366. int scrn_num;
  367. Screen *scrn;
  368.  
  369. dpy = XOpenDisplay(NULL);
  370. if (dpy)
  371. {
  372. scrn_num = DefaultScreen(dpy);
  373. scrn = ScreenOfDisplay(dpy, scrn_num);
  374. Status status = XmuLookupStandardColormap(dpy, RootWindowOfScreen(scrn), 0,
  375. 24, XA_RGB_DEFAULT_MAP, False, True);
  376. printf("Status = %x\n", status);
  377. XCloseDisplay(dpy);
  378. }
  379. return 0;
  380. }
  381. using the following command line:
  382. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-L/usr/X11R6/lib -L/usr/X11R6/lib64 -L/usr/local/lib -lXext -lX11 -lXmu -I/usr/local/include"
  383. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libXext.so when searching for -lXext
  384. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libX11.so when searching for -lX11
  385. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libXmu.so when searching for -lXmu
  386. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libstdc++.so when searching for -lstdc++
  387. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libstdc++.a when searching for -lstdc++
  388. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libm.so when searching for -lm
  389. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libm.a when searching for -lm
  390. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libgcc_s.so when searching for -lgcc_s
  391. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libc.so when searching for -lc
  392. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libc.a when searching for -lc
  393. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libgcc_s.so when searching for -lgcc_s
  394. found
  395.  
  396.  
  397. ***** Checking Mesa / GLU *****
  398. compiling the following source file:
  399. #include <cstdio>
  400. #include <X11/Xlib.h>
  401. #include <GL/glx.h>
  402. #include <GL/glu.h>
  403. extern "C" int main(void)
  404. {
  405. Display *dpy;
  406. int major, minor;
  407.  
  408. dpy = XOpenDisplay(NULL);
  409. if (dpy)
  410. {
  411. Bool glx_version = glXQueryVersion(dpy, &major, &minor);
  412. XCloseDisplay(dpy);
  413. if (glx_version)
  414. {
  415. printf("found version %u.%u, OK.\n", major, minor);
  416. return 0;
  417. }
  418. }
  419. printf("found (inactive), OK.\n");
  420. return 0;
  421. }
  422. using the following command line:
  423. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-L/usr/X11R6/lib -L/usr/X11R6/lib64 -L/usr/local/lib -lXext -lX11 -lGL -I/usr/local/include"
  424. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libXext.so when searching for -lXext
  425. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libX11.so when searching for -lX11
  426. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libGL.so when searching for -lGL
  427. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libstdc++.so when searching for -lstdc++
  428. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libstdc++.a when searching for -lstdc++
  429. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libm.so when searching for -lm
  430. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libm.a when searching for -lm
  431. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libgcc_s.so when searching for -lgcc_s
  432. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libc.so when searching for -lc
  433. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libc.a when searching for -lc
  434. /usr/lib64/gcc/x86_64-slackware-linux/5.3.0/../../../../x86_64-slackware-linux/bin/ld: skipping incompatible /usr/X11R6/lib/libgcc_s.so when searching for -lgcc_s
  435. executing the binary
  436. found version 1.4, OK.
  437.  
  438.  
  439. ***** Checking Qt5 *****
  440. (Qt5 from pkg-config)
  441. compiling the following source file:
  442. #include <QtGlobal>
  443. extern "C" int main(void)
  444. {
  445. #if QT_VERSION >= 0x050302
  446. return 0;
  447. #else
  448. return 1;
  449. #endif
  450. }
  451. using the following command line:
  452. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-L/usr/lib64 -lQt5Core -lpthread -I/usr/include/qt5/QtCore -I/usr/include/qt5"
  453. In file included from /usr/include/qt5/QtCore/qglobal.h:83:0,
  454. from /usr/include/qt5/QtCore/QtGlobal:1,
  455. from /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc:1:
  456. /usr/include/qt5/QtCore/qcompilerdetection.h:562:6: error: #error Qt requires a C++11 compiler and yours does not seem to be that.
  457. # error Qt requires a C++11 compiler and yours does not seem to be that.
  458. ^
  459. In file included from /usr/include/qt5/QtCore/qatomic.h:46:0,
  460. from /usr/include/qt5/QtCore/qglobal.h:1145,
  461. from /usr/include/qt5/QtCore/QtGlobal:1,
  462. from /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc:1:
  463. /usr/include/qt5/QtCore/qbasicatomic.h:61:4: error: #error "Qt requires C++11 support"
  464. # error "Qt requires C++11 support"
  465. ^
  466. In file included from /usr/include/qt5/QtCore/QtGlobal:1:0,
  467. from /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc:1:
  468. /usr/include/qt5/QtCore/qglobal.h:1133:23: error: expected ',' or '...' before '&&' token
  469. void qAsConst(const T &&) Q_DECL_EQ_DELETE;
  470. ^
  471. In file included from /usr/include/qt5/QtCore/qatomic.h:46:0,
  472. from /usr/include/qt5/QtCore/qglobal.h:1145,
  473. from /usr/include/qt5/QtCore/QtGlobal:1,
  474. from /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc:1:
  475. /usr/include/qt5/QtCore/qbasicatomic.h:90:13: error: 'QAtomicOps' does not name a type
  476. typedef QAtomicOps<T> Ops;
  477. ^
  478. In file included from /usr/include/qt5/QtCore/QtGlobal:1:0,
  479. from /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc:1:
  480. /usr/include/qt5/QtCore/qbasicatomic.h:93:23: error: 'QAtomicOpsSupport' was not declared in this scope
  481. Q_STATIC_ASSERT_X(QAtomicOpsSupport<sizeof(T)>::IsSupported, "template parameter is an integral of a size not supported on this platform");
  482. ^
  483. /usr/include/qt5/QtCore/qglobal.h:756:110: note: in definition of macro 'Q_STATIC_ASSERT'
  484. enum {Q_STATIC_ASSERT_PRIVATE_JOIN(q_static_assert_result, __COUNTER__) = sizeof(QStaticAssertFailure<!!(Condition)>)}
  485. ^
  486. /usr/include/qt5/QtCore/qbasicatomic.h:93:5: note: in expansion of macro 'Q_STATIC_ASSERT_X'
  487. Q_STATIC_ASSERT_X(QAtomicOpsSupport<sizeof(T)>::IsSupported, "template parameter is an integral of a size not supported on this platform");
  488. ^
  489. /usr/include/qt5/QtCore/qbasicatomic.h:93:51: error: '::IsSupported' has not been declared
  490. Q_STATIC_ASSERT_X(QAtomicOpsSupport<sizeof(T)>::IsSupported, "template parameter is an integral of a size not supported on this platform");
  491. ^
  492. /usr/include/qt5/QtCore/qglobal.h:756:110: note: in definition of macro 'Q_STATIC_ASSERT'
  493. enum {Q_STATIC_ASSERT_PRIVATE_JOIN(q_static_assert_result, __COUNTER__) = sizeof(QStaticAssertFailure<!!(Condition)>)}
  494. ^
  495. /usr/include/qt5/QtCore/qbasicatomic.h:93:5: note: in expansion of macro 'Q_STATIC_ASSERT_X'
  496. Q_STATIC_ASSERT_X(QAtomicOpsSupport<sizeof(T)>::IsSupported, "template parameter is an integral of a size not supported on this platform");
  497. ^
  498. /usr/include/qt5/QtCore/qglobal.h:756:120: error: template argument 1 is invalid
  499. enum {Q_STATIC_ASSERT_PRIVATE_JOIN(q_static_assert_result, __COUNTER__) = sizeof(QStaticAssertFailure<!!(Condition)>)}
  500. ^
  501. /usr/include/qt5/QtCore/qglobal.h:761:47: note: in expansion of macro 'Q_STATIC_ASSERT'
  502. #define Q_STATIC_ASSERT_X(Condition, Message) Q_STATIC_ASSERT(Condition)
  503. ^
  504. /usr/include/qt5/QtCore/qbasicatomic.h:93:5: note: in expansion of macro 'Q_STATIC_ASSERT_X'
  505. Q_STATIC_ASSERT_X(QAtomicOpsSupport<sizeof(T)>::IsSupported, "template parameter is an integral of a size not supported on this platform");
  506. ^
  507. In file included from /usr/include/qt5/QtCore/qatomic.h:46:0,
  508. from /usr/include/qt5/QtCore/qglobal.h:1145,
  509. from /usr/include/qt5/QtCore/QtGlobal:1,
  510. from /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc:1:
  511. /usr/include/qt5/QtCore/qbasicatomic.h:95:14: error: 'Ops' has not been declared
  512. typename Ops::Type _q_value;
  513. ^
  514. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::load() const':
  515. /usr/include/qt5/QtCore/qbasicatomic.h:99:44: error: 'Ops' has not been declared
  516. T load() const Q_DECL_NOTHROW { return Ops::load(_q_value); }
  517. ^
  518. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'void QBasicAtomicInteger<T>::store(T)':
  519. /usr/include/qt5/QtCore/qbasicatomic.h:100:45: error: 'Ops' has not been declared
  520. void store(T newValue) Q_DECL_NOTHROW { Ops::store(_q_value, newValue); }
  521. ^
  522. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::loadAcquire() const':
  523. /usr/include/qt5/QtCore/qbasicatomic.h:102:51: error: 'Ops' has not been declared
  524. T loadAcquire() const Q_DECL_NOTHROW { return Ops::loadAcquire(_q_value); }
  525. ^
  526. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'void QBasicAtomicInteger<T>::storeRelease(T)':
  527. /usr/include/qt5/QtCore/qbasicatomic.h:103:52: error: 'Ops' has not been declared
  528. void storeRelease(T newValue) Q_DECL_NOTHROW { Ops::storeRelease(_q_value, newValue); }
  529. ^
  530. /usr/include/qt5/QtCore/qbasicatomic.h: In static member function 'static bool QBasicAtomicInteger<T>::isReferenceCountingNative()':
  531. /usr/include/qt5/QtCore/qbasicatomic.h:107:86: error: 'Ops' has not been declared
  532. static Q_DECL_CONSTEXPR bool isReferenceCountingNative() Q_DECL_NOTHROW { return Ops::isReferenceCountingNative(); }
  533. ^
  534. /usr/include/qt5/QtCore/qbasicatomic.h: In static member function 'static bool QBasicAtomicInteger<T>::isReferenceCountingWaitFree()':
  535. /usr/include/qt5/QtCore/qbasicatomic.h:108:88: error: 'Ops' has not been declared
  536. static Q_DECL_CONSTEXPR bool isReferenceCountingWaitFree() Q_DECL_NOTHROW { return Ops::isReferenceCountingWaitFree(); }
  537. ^
  538. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'bool QBasicAtomicInteger<T>::ref()':
  539. /usr/include/qt5/QtCore/qbasicatomic.h:110:40: error: 'Ops' has not been declared
  540. bool ref() Q_DECL_NOTHROW { return Ops::ref(_q_value); }
  541. ^
  542. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'bool QBasicAtomicInteger<T>::deref()':
  543. /usr/include/qt5/QtCore/qbasicatomic.h:111:42: error: 'Ops' has not been declared
  544. bool deref() Q_DECL_NOTHROW { return Ops::deref(_q_value); }
  545. ^
  546. /usr/include/qt5/QtCore/qbasicatomic.h: In static member function 'static bool QBasicAtomicInteger<T>::isTestAndSetNative()':
  547. /usr/include/qt5/QtCore/qbasicatomic.h:113:79: error: 'Ops' has not been declared
  548. static Q_DECL_CONSTEXPR bool isTestAndSetNative() Q_DECL_NOTHROW { return Ops::isTestAndSetNative(); }
  549. ^
  550. /usr/include/qt5/QtCore/qbasicatomic.h: In static member function 'static bool QBasicAtomicInteger<T>::isTestAndSetWaitFree()':
  551. /usr/include/qt5/QtCore/qbasicatomic.h:114:81: error: 'Ops' has not been declared
  552. static Q_DECL_CONSTEXPR bool isTestAndSetWaitFree() Q_DECL_NOTHROW { return Ops::isTestAndSetWaitFree(); }
  553. ^
  554. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'bool QBasicAtomicInteger<T>::testAndSetRelaxed(T, T)':
  555. /usr/include/qt5/QtCore/qbasicatomic.h:117:14: error: 'Ops' has not been declared
  556. { return Ops::testAndSetRelaxed(_q_value, expectedValue, newValue); }
  557. ^
  558. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'bool QBasicAtomicInteger<T>::testAndSetAcquire(T, T)':
  559. /usr/include/qt5/QtCore/qbasicatomic.h:119:14: error: 'Ops' has not been declared
  560. { return Ops::testAndSetAcquire(_q_value, expectedValue, newValue); }
  561. ^
  562. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'bool QBasicAtomicInteger<T>::testAndSetRelease(T, T)':
  563. /usr/include/qt5/QtCore/qbasicatomic.h:121:14: error: 'Ops' has not been declared
  564. { return Ops::testAndSetRelease(_q_value, expectedValue, newValue); }
  565. ^
  566. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'bool QBasicAtomicInteger<T>::testAndSetOrdered(T, T)':
  567. /usr/include/qt5/QtCore/qbasicatomic.h:123:14: error: 'Ops' has not been declared
  568. { return Ops::testAndSetOrdered(_q_value, expectedValue, newValue); }
  569. ^
  570. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'bool QBasicAtomicInteger<T>::testAndSetRelaxed(T, T, T&)':
  571. /usr/include/qt5/QtCore/qbasicatomic.h:126:14: error: 'Ops' has not been declared
  572. { return Ops::testAndSetRelaxed(_q_value, expectedValue, newValue, &currentValue); }
  573. ^
  574. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'bool QBasicAtomicInteger<T>::testAndSetAcquire(T, T, T&)':
  575. /usr/include/qt5/QtCore/qbasicatomic.h:128:14: error: 'Ops' has not been declared
  576. { return Ops::testAndSetAcquire(_q_value, expectedValue, newValue, &currentValue); }
  577. ^
  578. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'bool QBasicAtomicInteger<T>::testAndSetRelease(T, T, T&)':
  579. /usr/include/qt5/QtCore/qbasicatomic.h:130:14: error: 'Ops' has not been declared
  580. { return Ops::testAndSetRelease(_q_value, expectedValue, newValue, &currentValue); }
  581. ^
  582. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'bool QBasicAtomicInteger<T>::testAndSetOrdered(T, T, T&)':
  583. /usr/include/qt5/QtCore/qbasicatomic.h:132:14: error: 'Ops' has not been declared
  584. { return Ops::testAndSetOrdered(_q_value, expectedValue, newValue, &currentValue); }
  585. ^
  586. /usr/include/qt5/QtCore/qbasicatomic.h: In static member function 'static bool QBasicAtomicInteger<T>::isFetchAndStoreNative()':
  587. /usr/include/qt5/QtCore/qbasicatomic.h:134:82: error: 'Ops' has not been declared
  588. static Q_DECL_CONSTEXPR bool isFetchAndStoreNative() Q_DECL_NOTHROW { return Ops::isFetchAndStoreNative(); }
  589. ^
  590. /usr/include/qt5/QtCore/qbasicatomic.h: In static member function 'static bool QBasicAtomicInteger<T>::isFetchAndStoreWaitFree()':
  591. /usr/include/qt5/QtCore/qbasicatomic.h:135:84: error: 'Ops' has not been declared
  592. static Q_DECL_CONSTEXPR bool isFetchAndStoreWaitFree() Q_DECL_NOTHROW { return Ops::isFetchAndStoreWaitFree(); }
  593. ^
  594. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndStoreRelaxed(T)':
  595. /usr/include/qt5/QtCore/qbasicatomic.h:138:14: error: 'Ops' has not been declared
  596. { return Ops::fetchAndStoreRelaxed(_q_value, newValue); }
  597. ^
  598. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndStoreAcquire(T)':
  599. /usr/include/qt5/QtCore/qbasicatomic.h:140:14: error: 'Ops' has not been declared
  600. { return Ops::fetchAndStoreAcquire(_q_value, newValue); }
  601. ^
  602. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndStoreRelease(T)':
  603. /usr/include/qt5/QtCore/qbasicatomic.h:142:14: error: 'Ops' has not been declared
  604. { return Ops::fetchAndStoreRelease(_q_value, newValue); }
  605. ^
  606. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndStoreOrdered(T)':
  607. /usr/include/qt5/QtCore/qbasicatomic.h:144:14: error: 'Ops' has not been declared
  608. { return Ops::fetchAndStoreOrdered(_q_value, newValue); }
  609. ^
  610. /usr/include/qt5/QtCore/qbasicatomic.h: In static member function 'static bool QBasicAtomicInteger<T>::isFetchAndAddNative()':
  611. /usr/include/qt5/QtCore/qbasicatomic.h:146:80: error: 'Ops' has not been declared
  612. static Q_DECL_CONSTEXPR bool isFetchAndAddNative() Q_DECL_NOTHROW { return Ops::isFetchAndAddNative(); }
  613. ^
  614. /usr/include/qt5/QtCore/qbasicatomic.h: In static member function 'static bool QBasicAtomicInteger<T>::isFetchAndAddWaitFree()':
  615. /usr/include/qt5/QtCore/qbasicatomic.h:147:82: error: 'Ops' has not been declared
  616. static Q_DECL_CONSTEXPR bool isFetchAndAddWaitFree() Q_DECL_NOTHROW { return Ops::isFetchAndAddWaitFree(); }
  617. ^
  618. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndAddRelaxed(T)':
  619. /usr/include/qt5/QtCore/qbasicatomic.h:150:14: error: 'Ops' has not been declared
  620. { return Ops::fetchAndAddRelaxed(_q_value, valueToAdd); }
  621. ^
  622. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndAddAcquire(T)':
  623. /usr/include/qt5/QtCore/qbasicatomic.h:152:14: error: 'Ops' has not been declared
  624. { return Ops::fetchAndAddAcquire(_q_value, valueToAdd); }
  625. ^
  626. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndAddRelease(T)':
  627. /usr/include/qt5/QtCore/qbasicatomic.h:154:14: error: 'Ops' has not been declared
  628. { return Ops::fetchAndAddRelease(_q_value, valueToAdd); }
  629. ^
  630. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndAddOrdered(T)':
  631. /usr/include/qt5/QtCore/qbasicatomic.h:156:14: error: 'Ops' has not been declared
  632. { return Ops::fetchAndAddOrdered(_q_value, valueToAdd); }
  633. ^
  634. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndSubRelaxed(T)':
  635. /usr/include/qt5/QtCore/qbasicatomic.h:159:14: error: 'Ops' has not been declared
  636. { return Ops::fetchAndSubRelaxed(_q_value, valueToAdd); }
  637. ^
  638. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndSubAcquire(T)':
  639. /usr/include/qt5/QtCore/qbasicatomic.h:161:14: error: 'Ops' has not been declared
  640. { return Ops::fetchAndSubAcquire(_q_value, valueToAdd); }
  641. ^
  642. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndSubRelease(T)':
  643. /usr/include/qt5/QtCore/qbasicatomic.h:163:14: error: 'Ops' has not been declared
  644. { return Ops::fetchAndSubRelease(_q_value, valueToAdd); }
  645. ^
  646. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndSubOrdered(T)':
  647. /usr/include/qt5/QtCore/qbasicatomic.h:165:14: error: 'Ops' has not been declared
  648. { return Ops::fetchAndSubOrdered(_q_value, valueToAdd); }
  649. ^
  650. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndAndRelaxed(T)':
  651. /usr/include/qt5/QtCore/qbasicatomic.h:168:14: error: 'Ops' has not been declared
  652. { return Ops::fetchAndAndRelaxed(_q_value, valueToAdd); }
  653. ^
  654. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndAndAcquire(T)':
  655. /usr/include/qt5/QtCore/qbasicatomic.h:170:14: error: 'Ops' has not been declared
  656. { return Ops::fetchAndAndAcquire(_q_value, valueToAdd); }
  657. ^
  658. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndAndRelease(T)':
  659. /usr/include/qt5/QtCore/qbasicatomic.h:172:14: error: 'Ops' has not been declared
  660. { return Ops::fetchAndAndRelease(_q_value, valueToAdd); }
  661. ^
  662. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndAndOrdered(T)':
  663. /usr/include/qt5/QtCore/qbasicatomic.h:174:14: error: 'Ops' has not been declared
  664. { return Ops::fetchAndAndOrdered(_q_value, valueToAdd); }
  665. ^
  666. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndOrRelaxed(T)':
  667. /usr/include/qt5/QtCore/qbasicatomic.h:177:14: error: 'Ops' has not been declared
  668. { return Ops::fetchAndOrRelaxed(_q_value, valueToAdd); }
  669. ^
  670. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndOrAcquire(T)':
  671. /usr/include/qt5/QtCore/qbasicatomic.h:179:14: error: 'Ops' has not been declared
  672. { return Ops::fetchAndOrAcquire(_q_value, valueToAdd); }
  673. ^
  674. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndOrRelease(T)':
  675. /usr/include/qt5/QtCore/qbasicatomic.h:181:14: error: 'Ops' has not been declared
  676. { return Ops::fetchAndOrRelease(_q_value, valueToAdd); }
  677. ^
  678. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndOrOrdered(T)':
  679. /usr/include/qt5/QtCore/qbasicatomic.h:183:14: error: 'Ops' has not been declared
  680. { return Ops::fetchAndOrOrdered(_q_value, valueToAdd); }
  681. ^
  682. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndXorRelaxed(T)':
  683. /usr/include/qt5/QtCore/qbasicatomic.h:186:14: error: 'Ops' has not been declared
  684. { return Ops::fetchAndXorRelaxed(_q_value, valueToAdd); }
  685. ^
  686. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndXorAcquire(T)':
  687. /usr/include/qt5/QtCore/qbasicatomic.h:188:14: error: 'Ops' has not been declared
  688. { return Ops::fetchAndXorAcquire(_q_value, valueToAdd); }
  689. ^
  690. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndXorRelease(T)':
  691. /usr/include/qt5/QtCore/qbasicatomic.h:190:14: error: 'Ops' has not been declared
  692. { return Ops::fetchAndXorRelease(_q_value, valueToAdd); }
  693. ^
  694. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'T QBasicAtomicInteger<T>::fetchAndXorOrdered(T)':
  695. /usr/include/qt5/QtCore/qbasicatomic.h:192:14: error: 'Ops' has not been declared
  696. { return Ops::fetchAndXorOrdered(_q_value, valueToAdd); }
  697. ^
  698. /usr/include/qt5/QtCore/qbasicatomic.h: At global scope:
  699. /usr/include/qt5/QtCore/qbasicatomic.h:230:13: error: 'QAtomicOps' does not name a type
  700. typedef QAtomicOps<Type> Ops;
  701. ^
  702. /usr/include/qt5/QtCore/qbasicatomic.h:231:22: error: 'Ops' has not been declared
  703. typedef typename Ops::Type AtomicType;
  704. ^
  705. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'X* QBasicAtomicPointer<X>::load() const':
  706. /usr/include/qt5/QtCore/qbasicatomic.h:235:47: error: 'Ops' has not been declared
  707. Type load() const Q_DECL_NOTHROW { return Ops::load(_q_value); }
  708. ^
  709. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'void QBasicAtomicPointer<X>::store(QBasicAtomicPointer<X>::Type)':
  710. /usr/include/qt5/QtCore/qbasicatomic.h:236:48: error: 'Ops' has not been declared
  711. void store(Type newValue) Q_DECL_NOTHROW { Ops::store(_q_value, newValue); }
  712. ^
  713. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'X* QBasicAtomicPointer<X>::loadAcquire() const':
  714. /usr/include/qt5/QtCore/qbasicatomic.h:241:54: error: 'Ops' has not been declared
  715. Type loadAcquire() const Q_DECL_NOTHROW { return Ops::loadAcquire(_q_value); }
  716. ^
  717. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'void QBasicAtomicPointer<X>::storeRelease(QBasicAtomicPointer<X>::Type)':
  718. /usr/include/qt5/QtCore/qbasicatomic.h:242:55: error: 'Ops' has not been declared
  719. void storeRelease(Type newValue) Q_DECL_NOTHROW { Ops::storeRelease(_q_value, newValue); }
  720. ^
  721. /usr/include/qt5/QtCore/qbasicatomic.h: In static member function 'static bool QBasicAtomicPointer<X>::isTestAndSetNative()':
  722. /usr/include/qt5/QtCore/qbasicatomic.h:244:79: error: 'Ops' has not been declared
  723. static Q_DECL_CONSTEXPR bool isTestAndSetNative() Q_DECL_NOTHROW { return Ops::isTestAndSetNative(); }
  724. ^
  725. /usr/include/qt5/QtCore/qbasicatomic.h: In static member function 'static bool QBasicAtomicPointer<X>::isTestAndSetWaitFree()':
  726. /usr/include/qt5/QtCore/qbasicatomic.h:245:81: error: 'Ops' has not been declared
  727. static Q_DECL_CONSTEXPR bool isTestAndSetWaitFree() Q_DECL_NOTHROW { return Ops::isTestAndSetWaitFree(); }
  728. ^
  729. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'bool QBasicAtomicPointer<X>::testAndSetRelaxed(QBasicAtomicPointer<X>::Type, QBasicAtomicPointer<X>::Type)':
  730. /usr/include/qt5/QtCore/qbasicatomic.h:248:14: error: 'Ops' has not been declared
  731. { return Ops::testAndSetRelaxed(_q_value, expectedValue, newValue); }
  732. ^
  733. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'bool QBasicAtomicPointer<X>::testAndSetAcquire(QBasicAtomicPointer<X>::Type, QBasicAtomicPointer<X>::Type)':
  734. /usr/include/qt5/QtCore/qbasicatomic.h:250:14: error: 'Ops' has not been declared
  735. { return Ops::testAndSetAcquire(_q_value, expectedValue, newValue); }
  736. ^
  737. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'bool QBasicAtomicPointer<X>::testAndSetRelease(QBasicAtomicPointer<X>::Type, QBasicAtomicPointer<X>::Type)':
  738. /usr/include/qt5/QtCore/qbasicatomic.h:252:14: error: 'Ops' has not been declared
  739. { return Ops::testAndSetRelease(_q_value, expectedValue, newValue); }
  740. ^
  741. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'bool QBasicAtomicPointer<X>::testAndSetOrdered(QBasicAtomicPointer<X>::Type, QBasicAtomicPointer<X>::Type)':
  742. /usr/include/qt5/QtCore/qbasicatomic.h:254:14: error: 'Ops' has not been declared
  743. { return Ops::testAndSetOrdered(_q_value, expectedValue, newValue); }
  744. ^
  745. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'bool QBasicAtomicPointer<X>::testAndSetRelaxed(QBasicAtomicPointer<X>::Type, QBasicAtomicPointer<X>::Type, X*&)':
  746. /usr/include/qt5/QtCore/qbasicatomic.h:257:14: error: 'Ops' has not been declared
  747. { return Ops::testAndSetRelaxed(_q_value, expectedValue, newValue, &currentValue); }
  748. ^
  749. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'bool QBasicAtomicPointer<X>::testAndSetAcquire(QBasicAtomicPointer<X>::Type, QBasicAtomicPointer<X>::Type, X*&)':
  750. /usr/include/qt5/QtCore/qbasicatomic.h:259:14: error: 'Ops' has not been declared
  751. { return Ops::testAndSetAcquire(_q_value, expectedValue, newValue, &currentValue); }
  752. ^
  753. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'bool QBasicAtomicPointer<X>::testAndSetRelease(QBasicAtomicPointer<X>::Type, QBasicAtomicPointer<X>::Type, X*&)':
  754. /usr/include/qt5/QtCore/qbasicatomic.h:261:14: error: 'Ops' has not been declared
  755. { return Ops::testAndSetRelease(_q_value, expectedValue, newValue, &currentValue); }
  756. ^
  757. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'bool QBasicAtomicPointer<X>::testAndSetOrdered(QBasicAtomicPointer<X>::Type, QBasicAtomicPointer<X>::Type, X*&)':
  758. /usr/include/qt5/QtCore/qbasicatomic.h:263:14: error: 'Ops' has not been declared
  759. { return Ops::testAndSetOrdered(_q_value, expectedValue, newValue, &currentValue); }
  760. ^
  761. /usr/include/qt5/QtCore/qbasicatomic.h: In static member function 'static bool QBasicAtomicPointer<X>::isFetchAndStoreNative()':
  762. /usr/include/qt5/QtCore/qbasicatomic.h:265:82: error: 'Ops' has not been declared
  763. static Q_DECL_CONSTEXPR bool isFetchAndStoreNative() Q_DECL_NOTHROW { return Ops::isFetchAndStoreNative(); }
  764. ^
  765. /usr/include/qt5/QtCore/qbasicatomic.h: In static member function 'static bool QBasicAtomicPointer<X>::isFetchAndStoreWaitFree()':
  766. /usr/include/qt5/QtCore/qbasicatomic.h:266:84: error: 'Ops' has not been declared
  767. static Q_DECL_CONSTEXPR bool isFetchAndStoreWaitFree() Q_DECL_NOTHROW { return Ops::isFetchAndStoreWaitFree(); }
  768. ^
  769. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'X* QBasicAtomicPointer<X>::fetchAndStoreRelaxed(QBasicAtomicPointer<X>::Type)':
  770. /usr/include/qt5/QtCore/qbasicatomic.h:269:14: error: 'Ops' has not been declared
  771. { return Ops::fetchAndStoreRelaxed(_q_value, newValue); }
  772. ^
  773. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'X* QBasicAtomicPointer<X>::fetchAndStoreAcquire(QBasicAtomicPointer<X>::Type)':
  774. /usr/include/qt5/QtCore/qbasicatomic.h:271:14: error: 'Ops' has not been declared
  775. { return Ops::fetchAndStoreAcquire(_q_value, newValue); }
  776. ^
  777. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'X* QBasicAtomicPointer<X>::fetchAndStoreRelease(QBasicAtomicPointer<X>::Type)':
  778. /usr/include/qt5/QtCore/qbasicatomic.h:273:14: error: 'Ops' has not been declared
  779. { return Ops::fetchAndStoreRelease(_q_value, newValue); }
  780. ^
  781. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'X* QBasicAtomicPointer<X>::fetchAndStoreOrdered(QBasicAtomicPointer<X>::Type)':
  782. /usr/include/qt5/QtCore/qbasicatomic.h:275:14: error: 'Ops' has not been declared
  783. { return Ops::fetchAndStoreOrdered(_q_value, newValue); }
  784. ^
  785. /usr/include/qt5/QtCore/qbasicatomic.h: In static member function 'static bool QBasicAtomicPointer<X>::isFetchAndAddNative()':
  786. /usr/include/qt5/QtCore/qbasicatomic.h:277:80: error: 'Ops' has not been declared
  787. static Q_DECL_CONSTEXPR bool isFetchAndAddNative() Q_DECL_NOTHROW { return Ops::isFetchAndAddNative(); }
  788. ^
  789. /usr/include/qt5/QtCore/qbasicatomic.h: In static member function 'static bool QBasicAtomicPointer<X>::isFetchAndAddWaitFree()':
  790. /usr/include/qt5/QtCore/qbasicatomic.h:278:82: error: 'Ops' has not been declared
  791. static Q_DECL_CONSTEXPR bool isFetchAndAddWaitFree() Q_DECL_NOTHROW { return Ops::isFetchAndAddWaitFree(); }
  792. ^
  793. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'X* QBasicAtomicPointer<X>::fetchAndAddRelaxed(qptrdiff)':
  794. /usr/include/qt5/QtCore/qbasicatomic.h:281:14: error: 'Ops' has not been declared
  795. { return Ops::fetchAndAddRelaxed(_q_value, valueToAdd); }
  796. ^
  797. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'X* QBasicAtomicPointer<X>::fetchAndAddAcquire(qptrdiff)':
  798. /usr/include/qt5/QtCore/qbasicatomic.h:283:14: error: 'Ops' has not been declared
  799. { return Ops::fetchAndAddAcquire(_q_value, valueToAdd); }
  800. ^
  801. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'X* QBasicAtomicPointer<X>::fetchAndAddRelease(qptrdiff)':
  802. /usr/include/qt5/QtCore/qbasicatomic.h:285:14: error: 'Ops' has not been declared
  803. { return Ops::fetchAndAddRelease(_q_value, valueToAdd); }
  804. ^
  805. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'X* QBasicAtomicPointer<X>::fetchAndAddOrdered(qptrdiff)':
  806. /usr/include/qt5/QtCore/qbasicatomic.h:287:14: error: 'Ops' has not been declared
  807. { return Ops::fetchAndAddOrdered(_q_value, valueToAdd); }
  808. ^
  809. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'X* QBasicAtomicPointer<X>::fetchAndSubRelaxed(qptrdiff)':
  810. /usr/include/qt5/QtCore/qbasicatomic.h:290:14: error: 'Ops' has not been declared
  811. { return Ops::fetchAndSubRelaxed(_q_value, valueToAdd); }
  812. ^
  813. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'X* QBasicAtomicPointer<X>::fetchAndSubAcquire(qptrdiff)':
  814. /usr/include/qt5/QtCore/qbasicatomic.h:292:14: error: 'Ops' has not been declared
  815. { return Ops::fetchAndSubAcquire(_q_value, valueToAdd); }
  816. ^
  817. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'X* QBasicAtomicPointer<X>::fetchAndSubRelease(qptrdiff)':
  818. /usr/include/qt5/QtCore/qbasicatomic.h:294:14: error: 'Ops' has not been declared
  819. { return Ops::fetchAndSubRelease(_q_value, valueToAdd); }
  820. ^
  821. /usr/include/qt5/QtCore/qbasicatomic.h: In member function 'X* QBasicAtomicPointer<X>::fetchAndSubOrdered(qptrdiff)':
  822. /usr/include/qt5/QtCore/qbasicatomic.h:296:14: error: 'Ops' has not been declared
  823. { return Ops::fetchAndSubOrdered(_q_value, valueToAdd); }
  824. ^
  825.  
  826.  
  827. (Qt5 from '/usr/lib/qt5')
  828. compiling the following source file:
  829. #include <QtGlobal>
  830. extern "C" int main(void)
  831. {
  832. #if QT_VERSION >= 0x050302
  833. return 0;
  834. #else
  835. return 1;
  836. #endif
  837. }
  838. using the following command line:
  839. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-L/usr/lib/qt5/lib -lQt5CoreVBox -lpthread -I/usr/lib/qt5/include -I/usr/lib/qt5/include/QtCore -DQT_SHARED"
  840. /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
  841. compilation terminated.
  842.  
  843.  
  844. compiling the following source file:
  845. #include <QtGlobal>
  846. extern "C" int main(void)
  847. {
  848. #if QT_VERSION >= 0x050302
  849. return 0;
  850. #else
  851. return 1;
  852. #endif
  853. }
  854. using the following command line:
  855. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-L/usr/lib/qt5/lib -lQt5Core -lpthread -I/usr/lib/qt5/include -I/usr/lib/qt5/include/QtCore -DQT_SHARED"
  856. /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
  857. compilation terminated.
  858.  
  859.  
  860. (Qt5 from '/usr/share/qt5')
  861. compiling the following source file:
  862. #include <QtGlobal>
  863. extern "C" int main(void)
  864. {
  865. #if QT_VERSION >= 0x050302
  866. return 0;
  867. #else
  868. return 1;
  869. #endif
  870. }
  871. using the following command line:
  872. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-L/usr/share/qt5/lib -lQt5CoreVBox -lpthread -I/usr/share/qt5/include -I/usr/share/qt5/include/QtCore -DQT_SHARED"
  873. /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
  874. compilation terminated.
  875.  
  876.  
  877. compiling the following source file:
  878. #include <QtGlobal>
  879. extern "C" int main(void)
  880. {
  881. #if QT_VERSION >= 0x050302
  882. return 0;
  883. #else
  884. return 1;
  885. #endif
  886. }
  887. using the following command line:
  888. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-L/usr/share/qt5/lib -lQt5Core -lpthread -I/usr/share/qt5/include -I/usr/share/qt5/include/QtCore -DQT_SHARED"
  889. /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
  890. compilation terminated.
  891.  
  892.  
  893. (Qt5 from '/usr/lib64/qt5')
  894. compiling the following source file:
  895. #include <QtGlobal>
  896. extern "C" int main(void)
  897. {
  898. #if QT_VERSION >= 0x050302
  899. return 0;
  900. #else
  901. return 1;
  902. #endif
  903. }
  904. using the following command line:
  905. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-L/usr/lib64/qt5/lib -lQt5CoreVBox -lpthread -I/usr/lib64/qt5/include -I/usr/lib64/qt5/include/QtCore -DQT_SHARED"
  906. /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
  907. compilation terminated.
  908.  
  909.  
  910. compiling the following source file:
  911. #include <QtGlobal>
  912. extern "C" int main(void)
  913. {
  914. #if QT_VERSION >= 0x050302
  915. return 0;
  916. #else
  917. return 1;
  918. #endif
  919. }
  920. using the following command line:
  921. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-L/usr/lib64/qt5/lib -lQt5Core -lpthread -I/usr/lib64/qt5/include -I/usr/lib64/qt5/include/QtCore -DQT_SHARED"
  922. /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
  923. compilation terminated.
  924.  
  925.  
  926. (Qt5 from '/usr')
  927. compiling the following source file:
  928. #include <QtGlobal>
  929. extern "C" int main(void)
  930. {
  931. #if QT_VERSION >= 0x050302
  932. return 0;
  933. #else
  934. return 1;
  935. #endif
  936. }
  937. using the following command line:
  938. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-L/usr/lib -lQt5CoreVBox -lpthread -I/usr/include -I/usr/include/QtCore -DQT_SHARED"
  939. /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
  940. compilation terminated.
  941.  
  942.  
  943. compiling the following source file:
  944. #include <QtGlobal>
  945. extern "C" int main(void)
  946. {
  947. #if QT_VERSION >= 0x050302
  948. return 0;
  949. #else
  950. return 1;
  951. #endif
  952. }
  953. using the following command line:
  954. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-L/usr/lib -lQt5Core -lpthread -I/usr/include -I/usr/include/QtCore -DQT_SHARED"
  955. /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
  956. compilation terminated.
  957.  
  958.  
  959. (Qt5 from '/usr/local')
  960. compiling the following source file:
  961. #include <QtGlobal>
  962. extern "C" int main(void)
  963. {
  964. #if QT_VERSION >= 0x050302
  965. return 0;
  966. #else
  967. return 1;
  968. #endif
  969. }
  970. using the following command line:
  971. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-L/usr/local/lib -lQt5CoreVBox -lpthread -I/usr/local/include -I/usr/local/include/QtCore -DQT_SHARED"
  972. /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
  973. compilation terminated.
  974.  
  975.  
  976. compiling the following source file:
  977. #include <QtGlobal>
  978. extern "C" int main(void)
  979. {
  980. #if QT_VERSION >= 0x050302
  981. return 0;
  982. #else
  983. return 1;
  984. #endif
  985. }
  986. using the following command line:
  987. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-L/usr/local/lib -lQt5Core -lpthread -I/usr/local/include -I/usr/local/include/QtCore -DQT_SHARED"
  988. /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
  989. compilation terminated.
  990.  
  991.  
  992. (Qt5 from '/tmp/SBo/VirtualBox-5.1.28/tools/linux.amd64/qt/v5.*')
  993. compiling the following source file:
  994. #include <QtGlobal>
  995. extern "C" int main(void)
  996. {
  997. #if QT_VERSION >= 0x050302
  998. return 0;
  999. #else
  1000. return 1;
  1001. #endif
  1002. }
  1003. using the following command line:
  1004. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-L/tmp/SBo/VirtualBox-5.1.28/tools/linux.amd64/qt/v5.*/lib -lQt5CoreVBox -lpthread -I/tmp/SBo/VirtualBox-5.1.28/tools/linux.amd64/qt/v5.*/include -I/tmp/SBo/VirtualBox-5.1.28/tools/linux.amd64/qt/v5.*/include/QtCore -DQT_SHARED"
  1005. /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
  1006. compilation terminated.
  1007.  
  1008.  
  1009. compiling the following source file:
  1010. #include <QtGlobal>
  1011. extern "C" int main(void)
  1012. {
  1013. #if QT_VERSION >= 0x050302
  1014. return 0;
  1015. #else
  1016. return 1;
  1017. #endif
  1018. }
  1019. using the following command line:
  1020. g++ -fPIC -g -O -Wall -o /tmp/SBo/VirtualBox-5.1.28/.tmp_out /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc "-L/tmp/SBo/VirtualBox-5.1.28/tools/linux.amd64/qt/v5.*/lib -lQt5Core -lpthread -I/tmp/SBo/VirtualBox-5.1.28/tools/linux.amd64/qt/v5.*/include -I/tmp/SBo/VirtualBox-5.1.28/tools/linux.amd64/qt/v5.*/include/QtCore -DQT_SHARED"
  1021. /tmp/SBo/VirtualBox-5.1.28/.tmp_src.cc:1:20: fatal error: QtGlobal: No such file or directory
  1022. compilation terminated.
  1023.  
  1024.  
  1025. ** qt5 not found!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement