Created
April 20, 2025 11:06
-
-
Save quagly/9dbd928fe4c85cf85d50503824c0c9ff to your computer and use it in GitHub Desktop.
chimera-linux simh configure and build log
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
[ 33%] Built target slirp | |
-- Clean working directory, no uncommitted changes. | |
[ 33%] Built target update_sim_commit | |
[ 33%] Building C object CMakeFiles/simhz64_video_aio.dir/scp.c.o | |
/home/mwest/repos/simh/scp.c:13226:61: warning: format specifies type 'int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
13226 | fprintf (st, " Match Buffer Size: %" SIZE_T_FMT "d\n", exp->buf_size); | |
| ~~~~~~~~~~~~~~~~ ^~~~~~~~~~~~~ | |
| %zu | |
/home/mwest/repos/simh/scp.c:13227:64: warning: format specifies type 'int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
13227 | fprintf (st, " Buffer Insert Offset: %" SIZE_T_FMT "d\n", exp->buf_ins); | |
| ~~~~~~~~~~~~~~~~ ^~~~~~~~~~~~ | |
| %zu | |
/home/mwest/repos/simh/scp.c:13363:99: warning: format specifies type 'int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
13363 | sim_debug (exp->dbit, exp->dptr, "Checking String[0:%" SIZE_T_FMT "d]: %s\n", exp->buf_ins, estr); | |
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~ | |
| %zu | |
/home/mwest/repos/simh/scp.h:272:146: note: expanded from macro 'sim_debug' | |
272 | #define sim_debug(dbits, dptr, ...) do { if ((sim_deb != NULL) && ((dptr) != NULL) && ((dptr)->dctrl & (dbits))) _sim_debug_device (dbits, dptr, __VA_ARGS__);} while (0) | |
| ^~~~~~~~~~~ | |
/home/mwest/repos/simh/scp.c:13376:28: warning: format specifies type 'int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
13375 | sim_debug (exp->dbit, exp->dptr, "Checking String[%" SIZE_T_FMT "d:%" SIZE_T_FMT "d]: %s\n", | |
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
| %zu | |
13376 | exp->buf_size - ep->size - exp->buf_ins, ep->size-exp->buf_ins, estr); | |
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
/home/mwest/repos/simh/scp.h:272:146: note: expanded from macro 'sim_debug' | |
272 | #define sim_debug(dbits, dptr, ...) do { if ((sim_deb != NULL) && ((dptr) != NULL) && ((dptr)->dctrl & (dbits))) _sim_debug_device (dbits, dptr, __VA_ARGS__);} while (0) | |
| ^~~~~~~~~~~ | |
/home/mwest/repos/simh/scp.c:13376:69: warning: format specifies type 'int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
13375 | sim_debug (exp->dbit, exp->dptr, "Checking String[%" SIZE_T_FMT "d:%" SIZE_T_FMT "d]: %s\n", | |
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
| %zu | |
13376 | exp->buf_size - ep->size - exp->buf_ins, ep->size-exp->buf_ins, estr); | |
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
/home/mwest/repos/simh/scp.h:272:146: note: expanded from macro 'sim_debug' | |
272 | #define sim_debug(dbits, dptr, ...) do { if ((sim_deb != NULL) && ((dptr) != NULL) && ((dptr)->dctrl & (dbits))) _sim_debug_device (dbits, dptr, __VA_ARGS__);} while (0) | |
| ^~~~~~~~~~~ | |
/home/mwest/repos/simh/scp.c:13391:27: warning: format specifies type 'unsigned int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
13390 | sim_debug (exp->dbit, exp->dptr, "Checking String[%" SIZE_T_FMT "u:%" SIZE_T_FMT "u]: %s\n", | |
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
| %zu | |
13391 | exp->buf_ins - ep->size, ep->size, estr); | |
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
/home/mwest/repos/simh/scp.h:272:146: note: expanded from macro 'sim_debug' | |
272 | #define sim_debug(dbits, dptr, ...) do { if ((sim_deb != NULL) && ((dptr) != NULL) && ((dptr)->dctrl & (dbits))) _sim_debug_device (dbits, dptr, __VA_ARGS__);} while (0) | |
| ^~~~~~~~~~~ | |
/home/mwest/repos/simh/scp.c:13391:52: warning: format specifies type 'unsigned int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
13390 | sim_debug (exp->dbit, exp->dptr, "Checking String[%" SIZE_T_FMT "u:%" SIZE_T_FMT "u]: %s\n", | |
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
| %zu | |
13391 | exp->buf_ins - ep->size, ep->size, estr); | |
| ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~ | |
/home/mwest/repos/simh/scp.h:272:146: note: expanded from macro 'sim_debug' | |
272 | #define sim_debug(dbits, dptr, ...) do { if ((sim_deb != NULL) && ((dptr) != NULL) && ((dptr)->dctrl & (dbits))) _sim_debug_device (dbits, dptr, __VA_ARGS__);} while (0) | |
| ^~~~~~~~~~~ | |
/home/mwest/repos/simh/scp.c:13413:19: warning: format specifies type 'int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
13412 | sim_debug (exp->dbit, exp->dptr, "Buffer Full - sliding the last %" SIZE_T_FMT "d bytes to start of buffer new insert at: %" SIZE_T_FMT "d\n", | |
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
| %zu | |
13413 | exp->buf_size / 2, exp->buf_ins); | |
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
/home/mwest/repos/simh/scp.h:272:146: note: expanded from macro 'sim_debug' | |
272 | #define sim_debug(dbits, dptr, ...) do { if ((sim_deb != NULL) && ((dptr) != NULL) && ((dptr)->dctrl & (dbits))) _sim_debug_device (dbits, dptr, __VA_ARGS__);} while (0) | |
| ^~~~~~~~~~~ | |
/home/mwest/repos/simh/scp.c:13413:38: warning: format specifies type 'int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
13412 | sim_debug (exp->dbit, exp->dptr, "Buffer Full - sliding the last %" SIZE_T_FMT "d bytes to start of buffer new insert at: %" SIZE_T_FMT "d\n", | |
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
| %zu | |
13413 | exp->buf_size / 2, exp->buf_ins); | |
| ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ | |
/home/mwest/repos/simh/scp.h:272:146: note: expanded from macro 'sim_debug' | |
272 | #define sim_debug(dbits, dptr, ...) do { if ((sim_deb != NULL) && ((dptr) != NULL) && ((dptr)->dctrl & (dbits))) _sim_debug_device (dbits, dptr, __VA_ARGS__);} while (0) | |
| ^~~~~~~~~~~ | |
/home/mwest/repos/simh/scp.c:13503:75: warning: format specifies type 'int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
13503 | fprintf (st, " %" SIZE_T_FMT "d bytes of pending input Data:\n ", snd->insoff-snd->extoff); | |
| ~~~~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~~~~~~ | |
| %zu | |
/home/mwest/repos/simh/scp.c:14248:34: warning: format specifies type 'unsigned int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
14247 | _sim_debug_unit (reason, uptr, "%04" SIZE_T_FMT "X thru %04" SIZE_T_FMT "X same as above\n", | |
| ~~~~~~~~~~~~~~~~~~ | |
| %04zX | |
14248 | i-(16*same), i - 1); | |
| ^~~~~~~~~~~ | |
/home/mwest/repos/simh/scp.c:14248:47: warning: format specifies type 'unsigned int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
14247 | _sim_debug_unit (reason, uptr, "%04" SIZE_T_FMT "X thru %04" SIZE_T_FMT "X same as above\n", | |
| ~~~~~~~~~~~~~~~~~~ | |
| %04zX | |
14248 | i-(16*same), i - 1); | |
| ^~~~~ | |
/home/mwest/repos/simh/scp.c:14296:80: warning: format specifies type 'unsigned int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
14296 | _sim_debug_unit (reason, uptr, "%04" SIZE_T_FMT "X%-48s %s%s%s\n", i, outbuf, strbuf, ebcdicbuf, rad50buf); | |
| ~~~~~~~~~~~~~~~~~~ ^ | |
| %04zX | |
/home/mwest/repos/simh/scp.c:14300:30: warning: format specifies type 'unsigned int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
14299 | _sim_debug_unit (reason, uptr, "%04" SIZE_T_FMT "X thru %04" SIZE_T_FMT "X same as above\n", | |
| ~~~~~~~~~~~~~~~~~~ | |
| %04zX | |
14300 | (i-(16*same)), len - 1); | |
| ^~~~~~~~~~~~~ | |
/home/mwest/repos/simh/scp.c:14300:45: warning: format specifies type 'unsigned int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
14299 | _sim_debug_unit (reason, uptr, "%04" SIZE_T_FMT "X thru %04" SIZE_T_FMT "X same as above\n", | |
| ~~~~~~~~~~~~~~~~~~ | |
| %04zX | |
14300 | (i-(16*same)), len - 1); | |
| ^~~~~~~ | |
/home/mwest/repos/simh/scp.c:16138:78: warning: format specifies type 'unsigned int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
16137 | sim_printf ("%5s:%-9.9s %s(rdx=%u, wd=%u, off=%u, dep=%u, strsz=%" SIZE_T_FMT "u, objsz=%" SIZE_T_FMT "u, elesz=%" SIZE_T_FMT "u, rsz=%" SIZE_T_FMT "u, %s %s%s membytes=%" SIZE_T_FMT "u, macro=%s)\n", dptr->name, rptr->name, rptr->macro, | |
| ~~~~~~~~~~~~~~~~ | |
| %zu | |
16138 | rptr->radix, rptr->width, rptr->offset, rptr->depth, rptr->stride, rptr->obj_size, rptr->size, rsz, rptr->desc ? rptr->desc : "", | |
| ^~~~~~~~~~~~ | |
/home/mwest/repos/simh/scp.c:16138:92: warning: format specifies type 'unsigned int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
16137 | sim_printf ("%5s:%-9.9s %s(rdx=%u, wd=%u, off=%u, dep=%u, strsz=%" SIZE_T_FMT "u, objsz=%" SIZE_T_FMT "u, elesz=%" SIZE_T_FMT "u, rsz=%" SIZE_T_FMT "u, %s %s%s membytes=%" SIZE_T_FMT "u, macro=%s)\n", dptr->name, rptr->name, rptr->macro, | |
| ~~~~~~~~~~~~~~~~ | |
| %zu | |
16138 | rptr->radix, rptr->width, rptr->offset, rptr->depth, rptr->stride, rptr->obj_size, rptr->size, rsz, rptr->desc ? rptr->desc : "", | |
| ^~~~~~~~~~~~~~ | |
/home/mwest/repos/simh/scp.c:16138:108: warning: format specifies type 'unsigned int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
16137 | sim_printf ("%5s:%-9.9s %s(rdx=%u, wd=%u, off=%u, dep=%u, strsz=%" SIZE_T_FMT "u, objsz=%" SIZE_T_FMT "u, elesz=%" SIZE_T_FMT "u, rsz=%" SIZE_T_FMT "u, %s %s%s membytes=%" SIZE_T_FMT "u, macro=%s)\n", dptr->name, rptr->name, rptr->macro, | |
| ~~~~~~~~~~~~~~~~ | |
| %zu | |
16138 | rptr->radix, rptr->width, rptr->offset, rptr->depth, rptr->stride, rptr->obj_size, rptr->size, rsz, rptr->desc ? rptr->desc : "", | |
| ^~~~~~~~~~ | |
/home/mwest/repos/simh/scp.c:16138:120: warning: format specifies type 'unsigned int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
16137 | sim_printf ("%5s:%-9.9s %s(rdx=%u, wd=%u, off=%u, dep=%u, strsz=%" SIZE_T_FMT "u, objsz=%" SIZE_T_FMT "u, elesz=%" SIZE_T_FMT "u, rsz=%" SIZE_T_FMT "u, %s %s%s membytes=%" SIZE_T_FMT "u, macro=%s)\n", dptr->name, rptr->name, rptr->macro, | |
| ~~~~~~~~~~~~~~~~ | |
| %zu | |
16138 | rptr->radix, rptr->width, rptr->offset, rptr->depth, rptr->stride, rptr->obj_size, rptr->size, rsz, rptr->desc ? rptr->desc : "", | |
| ^~~ | |
/home/mwest/repos/simh/scp.c:16140:25: warning: format specifies type 'unsigned int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
16137 | sim_printf ("%5s:%-9.9s %s(rdx=%u, wd=%u, off=%u, dep=%u, strsz=%" SIZE_T_FMT "u, objsz=%" SIZE_T_FMT "u, elesz=%" SIZE_T_FMT "u, rsz=%" SIZE_T_FMT "u, %s %s%s membytes=%" SIZE_T_FMT "u, macro=%s)\n", dptr->name, rptr->name, rptr->macro, | |
| ~~~~~~~~~~~~~~~~ | |
| %zu | |
16138 | rptr->radix, rptr->width, rptr->offset, rptr->depth, rptr->stride, rptr->obj_size, rptr->size, rsz, rptr->desc ? rptr->desc : "", | |
16139 | (rptr->flags & REG_FIT) ? "REG_FIT" : "", (rptr->flags & REG_VMIO) ? " REG_VMIO" : "", | |
16140 | memsize, rptr->macro ? rptr->macro : ""); | |
| ^~~~~~~ | |
20 warnings generated. | |
[ 33%] Building C object CMakeFiles/simhz64_video_aio.dir/sim_card.c.o | |
/home/mwest/repos/simh/sim_card.c:843:59: warning: format specifies type 'unsigned int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
843 | sim_debug(DEBUG_CARD, dptr, "-%" SIZE_T_FMT "u-", i); | |
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~ | |
| %zu | |
/home/mwest/repos/simh/scp.h:272:146: note: expanded from macro 'sim_debug' | |
272 | #define sim_debug(dbits, dptr, ...) do { if ((sim_deb != NULL) && ((dptr) != NULL) && ((dptr)->dctrl & (dbits))) _sim_debug_device (dbits, dptr, __VA_ARGS__);} while (0) | |
| ^~~~~~~~~~~ | |
1 warning generated. | |
[ 33%] Building C object CMakeFiles/simhz64_video_aio.dir/sim_console.c.o | |
/home/mwest/repos/simh/sim_console.c:1302:113: warning: format specifies type 'unsigned int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
1302 | sim_debug (DBG_REP, &sim_remote_console, "sim_rem_con_repeat_svc(line=%" SIZE_T_FMT "u) - interval=%d usecs\n", line, rem->repeat_interval); | |
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
| %zu | |
/home/mwest/repos/simh/scp.h:272:146: note: expanded from macro 'sim_debug' | |
272 | #define sim_debug(dbits, dptr, ...) do { if ((sim_deb != NULL) && ((dptr) != NULL) && ((dptr)->dctrl & (dbits))) _sim_debug_device (dbits, dptr, __VA_ARGS__);} while (0) | |
| ^~~~~~~~~~~ | |
/home/mwest/repos/simh/sim_console.c:1368:125: warning: format specifies type 'unsigned int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat] | |
1368 | sim_debug (DBG_SAM, &sim_remote_console, "sim_rem_con_smp_collect_svc(line=%" SIZE_T_FMT "u) - interval=%d, dither=%d%%\n", line, rem->smp_sample_interval, rem->smp_sample_dither_pct); | |
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
| %zu | |
/home/mwest/repos/simh/scp.h:272:146: note: expanded from macro 'sim_debug' | |
272 | #define sim_debug(dbits, dptr, ...) do { if ((sim_deb != NULL) && ((dptr) != NULL) && ((dptr)->dctrl & (dbits))) _sim_debug_device (dbits, dptr, __VA_ARGS__);} while (0) | |
| ^~~~~~~~~~~ | |
/home/mwest/repos/simh/sim_console.c:4058:15: warning: unused function 'sim_os_poll_kbd_ready' [-Wunused-function] | |
4058 | static t_bool sim_os_poll_kbd_ready (int ms_timeout) | |
| ^~~~~~~~~~~~~~~~~~~~~ | |
3 warnings generated. | |
[ 33%] Building C object CMakeFiles/simhz64_video_aio.dir/sim_disk.c.o | |
/home/mwest/repos/simh/sim_disk.c:2964:24: warning: unused variable 'saved_capac' [-Wunused-variable] | |
2964 | t_addr saved_capac = uptr->capac; | |
| ^~~~~~~~~~~ | |
1 warning generated. | |
[ 33%] Building C object CMakeFiles/simhz64_video_aio.dir/sim_ether.c.o | |
/home/mwest/repos/simh/sim_ether.c:2248:8: warning: unused variable 'tun' [-Wunused-variable] | |
2248 | int tun = -1; /* TUN/TAP Socket */ | |
| ^~~ | |
/home/mwest/repos/simh/sim_ether.c:2249:8: warning: unused variable 'on' [-Wunused-variable] | |
2249 | int on = 1; | |
| ^~ | |
2 warnings generated. | |
[ 33%] Building C object CMakeFiles/simhz64_video_aio.dir/sim_fio.c.o | |
/home/mwest/repos/simh/sim_fio.c:429:5: error: call to undeclared function 'fopen64'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] | |
429 | f = fopen64 (namebuf, mode); | |
| ^ | |
/home/mwest/repos/simh/sim_fio.c:429:5: note: did you mean 'fopen'? | |
/usr/include/fortify/stdio.h:99:26: note: 'fopen' declared here | |
99 | _FORTIFY_FN(fopen) FILE *fopen(const char* _FORTIFY_POS0 __p, const char* _FORTIFY_POS0 __m) | |
| ^ | |
/home/mwest/repos/simh/sim_fio.c:429:3: error: incompatible integer to pointer conversion assigning to 'FILE *' (aka 'struct _IO_FILE *') from 'int' [-Wint-conversion] | |
429 | f = fopen64 (namebuf, mode); | |
| ^ ~~~~~~~~~~~~~~~~~~~~~~~ | |
/home/mwest/repos/simh/sim_fio.c:494:8: error: call to undeclared function 'fseeko64'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] | |
494 | return fseeko64 (st, (off64_t)xpos, origin); | |
| ^ | |
/home/mwest/repos/simh/sim_fio.c:494:8: note: did you mean 'fseeko'? | |
/usr/include/stdio.h:143:5: note: 'fseeko' declared here | |
143 | int fseeko(FILE *, off_t, int); | |
| ^ | |
/home/mwest/repos/simh/sim_fio.c:494:23: error: use of undeclared identifier 'off64_t' | |
494 | return fseeko64 (st, (off64_t)xpos, origin); | |
| ^ | |
/home/mwest/repos/simh/sim_fio.c:499:19: error: call to undeclared function 'ftello64'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] | |
499 | return (t_offset)(ftello64 (st)); | |
| ^ | |
/home/mwest/repos/simh/sim_fio.c:499:19: note: did you mean 'ftello'? | |
/usr/include/stdio.h:144:7: note: 'ftello' declared here | |
144 | off_t ftello(FILE *); | |
| ^ | |
5 errors generated. | |
gmake[3]: *** [CMakeFiles/simhz64_video_aio.dir/build.make:149: CMakeFiles/simhz64_video_aio.dir/sim_fio.c.o] Error 1 | |
gmake[2]: *** [CMakeFiles/Makefile2:2483: CMakeFiles/simhz64_video_aio.dir/all] Error 2 | |
gmake[1]: *** [CMakeFiles/Makefile2:4711: VAX/CMakeFiles/vax.dir/rule] Error 2 | |
gmake: *** [Makefile:1590: vax] Error 2 |
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
-- CMAKE_MODULE_PATH: /home/mwest/repos/simh/cmake;/home/mwest/repos/simh/cmake/installer-customizations | |
-- The C compiler identification is Clang 20.1.3 | |
-- The CXX compiler identification is Clang 20.1.3 | |
-- Detecting C compiler ABI info | |
-- Detecting C compiler ABI info - done | |
-- Check for working C compiler: /usr/bin/cc - skipped | |
-- Detecting C compile features | |
-- Detecting C compile features - done | |
-- Detecting CXX compiler ABI info | |
-- Detecting CXX compiler ABI info - done | |
-- Check for working CXX compiler: /usr/bin/c++ - skipped | |
-- Detecting CXX compile features | |
-- Detecting CXX compile features - done | |
-- CMAKE_BUILD_TYPE defaulted to Release | |
-- Setting NO_DEP_BUILD to TRUE, will NOT BUILD missing dependencies | |
-- Adding Clang-specific optimizations to CMAKE_C_FLAGS_RELEASE | |
-- -fno-strict-overflow | |
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD | |
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success | |
-- Found Threads: TRUE | |
-- Found EDITLINE: /usr/lib/libedit.so | |
-- Looking for semaphore.h | |
-- Looking for semaphore.h - found | |
-- Looking for sem_timedwait | |
-- Looking for sem_timedwait - found | |
-- Looking for sys/ioctl.h | |
-- Looking for sys/ioctl.h - found | |
-- Looking for linux/cdrom.h | |
-- Looking for linux/cdrom.h - not found | |
-- Looking for utime.h | |
-- Looking for utime.h - found | |
-- Looking for glob.h | |
-- Looking for glob.h - found | |
-- Looking for sys/mman.h | |
-- Looking for sys/mman.h - found | |
-- Looking for shm_open | |
-- Looking for shm_open - found | |
-- Looking for dlfcn.h | |
-- Looking for dlfcn.h - found | |
-- Looking for dlopen | |
-- Looking for dlopen - found | |
-- Looking for linux/if_tun.h | |
-- Looking for linux/if_tun.h - not found | |
-- Looking for net/if_tun.h | |
-- Looking for net/if_tun.h - not found | |
-- Could NOT find PCRE (missing: PCRE_LIBRARY PCRE_INCLUDE_DIR) | |
-- Could NOT find ZLIB (missing: ZLIB_LIBRARY) (found version "1.3.1") | |
-- Could NOT find ZLIB (missing: ZLIB_LIBRARY) (found version "1.3.1") | |
-- Could NOT find PNG (missing: PNG_LIBRARY PNG_PNG_INCLUDE_DIR) | |
-- Could NOT find Freetype (missing: FREETYPE_LIBRARY FREETYPE_INCLUDE_DIRS) | |
-- Could NOT find SDL2 (missing: SDL2_DIR) | |
-- Could NOT find SDL2_ttf (missing: SDL2_ttf_DIR) | |
-- Found PkgConfig: /usr/bin/pkg-config (found version "2.4.3") | |
-- REQUIRED (missing: VDEPLUG_LIBRARY VDEPLUG_INCLUDE_DIR) | |
-- Found PCAP: /usr/include | |
-- Checking for module 'libpcre' | |
-- Package 'libpcre' not found | |
-- Checking for module 'zlib' | |
-- Found zlib, version 1.3.1 | |
-- Checking for module 'libpng16' | |
-- Package 'libpng16' not found | |
-- Checking for module 'sdl2' | |
-- Package 'sdl2' not found | |
-- Checking for module 'SDL2' | |
-- Package 'SDL2' not found | |
-- Checking for module 'SDL2_ttf' | |
-- Package 'SDL2_ttf' not found | |
-- Checking for module 'sdl2_ttf' | |
-- Package 'sdl2_ttf' not found | |
-- Checking for module 'vdeplug' | |
-- Package 'vdeplug' not found | |
-- pcap_compile requires BPF_CONST_STRING | |
-- Libraries and features: | |
* Build with video/graphics support. TRUE | |
* Build with networking support .... TRUE | |
* Build internal ROMS .............. Yes | |
* Thread support ................... Platform-detected threading support | |
* zlib ............................. pkg-config ZLIB | |
* Perl-Compatible RegExps........... unknown | |
* PNG, Freetype, SDL2, SDL2_ttf .... unknown | |
* Network support .................. PCAP dynamic, NAT(SLiRP) | |
* OS Feature definitions: | |
.. HAVE_SEMAPHORE | |
.. _GNU_SOURCE | |
.. HAVE_SYS_IOCTL | |
.. HAVE_UTIME | |
.. HAVE_GLOB | |
.. HAVE_SHM_OPEN | |
.. SIM_HAVE_DLOPEN=so | |
* OS Feature libraries: | |
.. Editline::Editline | |
.. dl | |
.. m | |
* 'cppcheck' ....................... disabled. | |
-- Git command is /usr/bin/git | |
-- Adding simulators | |
-- BESM6: No applicable Cyrillic fonts found. | |
Font names tried: | |
.. DejaVuSans.ttf | |
.. LucidaSansRegular.ttf | |
.. FreeSans.ttf | |
.. AppleGothic.ttf | |
.. tahoma.ttf | |
Looked in: | |
.. /usr/share/fonts | |
.. /usr/lib/jvm | |
.. /Library/Fonts | |
.. /System/Library/Fonts | |
.. /System/Library/Frameworks/JavaVM.framework/Versions | |
.. /Fonts | |
BESM6: Not building with panel display. | |
-- No SIMH_PACKAGE_SUFFIX supplied, default is Linux. | |
-- CPack output file name: simh-4.1.0-Linux | |
-- Configuring done (0.9s) | |
-- Generating done (0.2s) | |
-- Build files have been written to: /home/mwest/repos/simh/cmake/mybuild |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment