On 2018-04-24, [email protected] <[email protected]> wrote: > build failures: 73
I briefly looked over all of them. The most common problems are: * libstdc++ not found * undefined symbol errors: symbols are referenced, but the library containing them isn't explicitly linked (on the command line) and only pulled in as an inter-library dependency. That works with our ancient binutils ld, but not with lld. * clang6: C++ narrowing problems because negative values are assigned to char variables and char is unsigned on aarch64/armv7/ powerpc. -- Christian "naddy" Weisgerber [email protected]
