logo

deblob

remove binary executables from a directory git clone https://hacktivis.me/git/deblob.git
commit: 45883ea90258088de140ca5146dd763fed8b0d1d
parent 40b6e2e76cbb5b63175c7567b73fcb38152fe5bc
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Tue, 20 Dec 2022 18:59:34 +0100

Add GCC Rust Metadata (*.rox)

Diffstat:

Mdeblob.13+++
Mmain.ha2++
2 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/deblob.1 b/deblob.1 @@ -87,6 +87,9 @@ Ren'Py Archives v1/v2/v3 Squirrel bytecode .It Pre-Compiled Headers: Clang, GCC +.It +GCC Rust Metadata, typically +.Sq *.rox .El .Sh EXAMPLES The following code block shows how it can be used in Gentoo's diff --git a/main.ha b/main.ha @@ -68,6 +68,8 @@ const magic: [_][]u8 = [ // GCC Pre-Compiled-Header // Excluded from fixtures (1.2MB+), test with: // echo > empty.h && gcc empty.h + + ['G', 'R', 'S', 'T'] // GCC Rust Metadata (*.rox) ]; const dos_magic: []u8 = ['M', 'Z']; const pe_magic: []u8 = ['P', 'E', 0x00, 0x00];