test result: FAILED. 97 passed; 7 failed; 0 ignored; 0 measured; 0 filtered out
of all the remaining failures, 6 of them are due to 'error: the option
`Z` is only accepted on the nightly compiler', the only real error
standing out is test_enum from a macro definition conflict ?
error: expected parameter declarator
static_assert(offsetof(CBINDGEN_STRUCT(P), tag) == 0,"unexpected offset for tag");
/usr/include/stddef.h:69:32: note: expanded from macro 'offsetof'
#define offsetof(type, member) __builtin_offsetof(type, member)
Base has /usr/bin/llvm-config after the switch to LLVM 10, so crystal
would run the wrong llvm-config and fail to build (with a linker
error). The bootstrap crystal.o needs LLVM 8. Using llvm-config from
ports works for now, because ports devel/llvm is still LLVM 8.
ok sthen@
Implicit copy ctor have been deprecated since C++11
https://github.com/godotengine/godot/pull/35762
tested by me with clang 8 (no breakage) and by naddy@ with clang 10 -
successfully. Thanks!
- add option to archive every toot as a JSON file (@jpmens)
- add community docs including Code of Conduct and pull request template
- --quiet mode suppresses most logging
- --archive-deleted flag restricts archiving to only toots that are deleted
- tildes didn't work for archive paths - now they do.
- the version number is now correct
Drop the use of '.machine ppc' in assembly code, since it's not supported by
clang's integrated assembler and causes no ill effects to do so (hint from
bcallah@ a few monthes ago, thanks!).
"Fine with me" jasper@
- add support for managing symbolic links under version control
- new -S option for 'got commit' and 'got stage' to skip symlink safety checks
- add a 'got info' command which displays work tree meta-data
- display more context in "no such entry found in tree" error messages
- fix spurious 'got cherrypick' error with a path prefix and an empty tree
- fix committing file additions from a work tree with a path prefix
- fix build error with clang 10 due to missing for-loop block grouping (naddy@)
- make 'got log' -R and -P options work in combination
This defines G_GNUC_FALLTHROUGH to expand to __attribute__((fallthrough))
on LLVM 10, so it can silence warnings from -Wimplicit-fallthrough.
ok ajacoutot@