eof
eof

Reputation: 557

eBPF file getting stripped in %install section

I'm packaging an application including an eBPF program. I currently have the following in the %install section of my spec file:

%install
...
cp program-ebpf $RPM_BUILD_ROOT/program/
...

rpmbuild fails with /usr/bin/strip: Unable to recognize the format of the input file .... The file is of course not a regular binary as it's eBPF bytecode.

Question: How do I copy this file into my RPM without triggering strip? This only seems to happen on newer versions of rpmbuild? Older versions don't call strip if using the cp command.

Upvotes: 0

Views: 41

Answers (0)

Related Questions