openMSX SoftFabTask: build_openmsx_make
log in
2024-07-01 18:44
Overview
Data
Wrapper Log
1Using Python: python3
2make -f build/main.mk run-3rdparty \
3 OPENMSX_TARGET_CPU=x86_64 \
4 OPENMSX_TARGET_OS=mingw-w64 \
5 OPENMSX_FLAVOUR=opt \
6 3RDPARTY_FLAG=true \
7 PYTHON=python3
8make[1]: Entering directory '/home/openmsx/openMSX'
9Using Python: python3
10make -f build/3rdparty.mk \
11 BUILD_PATH=derived/x86_64-mingw-w64-opt-3rd/3rdparty \
12 OPENMSX_TARGET_CPU=x86_64 \
13 OPENMSX_TARGET_OS=mingw-w64 \
14 _CC=x86_64-w64-mingw32-gcc _CFLAGS="-m64 -O3 -DNDEBUG -ffast-math -fomit-frame-pointer" \
15 _LDFLAGS="-m64" \
16 WINDRES=x86_64-w64-mingw32-windres \
17 LINK_MODE=3RD_STA \
18 PYTHON=python3
19make[2]: Entering directory '/home/openmsx/openMSX'
20make[2]: Nothing to be done for 'all'.
21make[2]: Leaving directory '/home/openmsx/openMSX'
22make[1]: Leaving directory '/home/openmsx/openMSX'
23make -f build/main.mk bindist \
24 OPENMSX_TARGET_CPU=x86_64 \
25 OPENMSX_TARGET_OS=mingw-w64 \
26 OPENMSX_FLAVOUR=opt \
27 3RDPARTY_FLAG=true \
28 PYTHON=python3
29make[1]: Entering directory '/home/openmsx/openMSX'
30Using Python: python3
31Build configuration:
32Updating derived/x86_64-mingw-w64-opt-3rd/config/Version.ii...
33 Platform: x86_64-mingw-w64
34 Flavour: opt
35 Compiler: x86_64-w64-mingw32-g++
36 Subset: full build
37Compiling Version.cc...
38Compiling utils/win32-dirent.cc...
39Compiling video/AviRecorder.cc...
40Compiling video/ADVram.cc...
41Compiling video/AviWriter.cc...
42Compiling video/CharacterConverter.cc...
43src/utils/win32-dirent.cc: In function 'openmsx::DIR* openmsx::opendir(const char*)':
44src/utils/win32-dirent.cc:42:43: error: no matching function for call to 'utf8to16(std::string_view&)'
45 42 | std::wstring nameW = utf8::utf8to16(name2);
46 | ^
47In file included from src/utils/win32-dirent.cc:25:
48src/utils/utf8_checked.hh:227:17: note: candidate: 'template<class u16bit_iterator, class octet_iterator> u16bit_iterator utf8::utf8to16(octet_iterator, octet_iterator, u16bit_iterator)'
49 227 | u16bit_iterator utf8to16(octet_iterator start, octet_iterator end,
50 | ^~~~~~~~
51src/utils/utf8_checked.hh:227:17: note: template argument deduction/substitution failed:
52src/utils/win32-dirent.cc:42:43: note: candidate expects 3 arguments, 1 provided
53 42 | std::wstring nameW = utf8::utf8to16(name2);
54 | ^
55In file included from src/utils/win32-dirent.cc:25:
56src/utils/utf8_checked.hh:335:28: note: candidate: 'std::wstring utf8::utf8to16(zstring_view)'
57 335 | [[nodiscard]] std::wstring utf8to16 (zstring_view utf8);
58 | ^~~~~~~~
59src/utils/utf8_checked.hh:335:52: note: no known conversion for argument 1 from 'std::string_view' {aka 'std::basic_string_view<char>'} to 'zstring_view'
60 335 | [[nodiscard]] std::wstring utf8to16 (zstring_view utf8);
61 | ~~~~~~~~~~~~~^~~~
62src/utils/win32-dirent.cc: In function 'void openmsx::seekdir(openmsx::DIR*, off_t)':
63src/utils/win32-dirent.cc:108:12: warning: unused variable 'n' [-Wunused-variable]
64 108 | for (auto n : xrange(offset)) {
65 | ^
66make[1]: *** [build/main.mk:498: derived/x86_64-mingw-w64-opt-3rd/obj/utils/win32-dirent.cc.o] Error 1
67make[1]: *** Waiting for unfinished jobs....
68make[1]: Leaving directory '/home/openmsx/openMSX'
69make: *** [build/main.mk:649: staticbindist] Error 2