Re: [PATCH v7 16/17] scripts/oss-fuzz: use hardlinks instead of copying

2020-10-23 Thread Darren Kenny
On Friday, 2020-10-23 at 11:07:45 -04, Alexander Bulekov wrote: > Prior to this, fuzzers in the output oss-fuzz directory were exactly > the same executable, with a different name to do argv[0]-based > fuzz-target selection. This is a waste of space, especially since these > binaries can weigh many

[PATCH v7 16/17] scripts/oss-fuzz: use hardlinks instead of copying

2020-10-23 Thread Alexander Bulekov
Prior to this, fuzzers in the output oss-fuzz directory were exactly the same executable, with a different name to do argv[0]-based fuzz-target selection. This is a waste of space, especially since these binaries can weigh many MB. Instead of copying, use hard links, to cut down on wasted space. W