Skip to content

Commit

Permalink
Add pinsyscalls stub, clang fixes, and malloc cleanup to build quirks.
Browse files Browse the repository at this point in the history
  • Loading branch information
bluhm committed Dec 22, 2023
1 parent 20ca5fb commit fc248e7
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions Buildquirks.pm
Original file line number Diff line number Diff line change
Expand Up @@ -915,6 +915,43 @@ my %quirks = (
cleandirs => [ "lib/libc" ],
builddirs => [ "lib/libc" ],
},
'2023-12-04T14:24:29Z' => {
comment => "clang fixes after LLVM update",
updatedirs => [
"gnu/llvm",
"gnu/usr.bin/clang",
"gnu/lib/libcxx",
"gnu/lib/libcxxabi",
],
cleandirs => [
"sys/arch/amd64/compile/GENERIC.MP",
],
builddirs => [
"gnu/usr.bin/clang",
],
},
'2023-12-07T14:00:16Z' => {
comment => "kernel pinsyscalls(2) stub",
updatedirs => [
"sys",
"lib/libc",
"libexec/ld.so",
],
prebuildcommands => [
"make includes",
"make -C sys/arch/amd64/compile/GENERIC.MP config",
"make -C sys/arch/amd64/compile/GENERIC.MP clean",
],
builddirs => [ "sys/arch/amd64/compile/GENERIC.MP" ],
commands => [ "reboot" ],
},
'2023-12-19T06:59:28Z' => {
comment => "libc malloc bytes cleanup",
updatedirs => [ "sys", "lib/libc" ],
prebuildcommands => [ "make includes" ],
cleandirs => [ "lib/libc" ],
builddirs => [ "lib/libc" ],
},
);

#### Patches ####
Expand Down

0 comments on commit fc248e7

Please sign in to comment.