Fix build errors with latest bpf_conformance update #544
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR does what dependabot tried to do in #543 but fixes the build errors that PR encountered.
The elfio line added is due to a dependency change inside bpf_conformance where src depends on elfio.
The execute_process line change is because a build error has been there since #519 where https://github.com/vbpf/ebpf-verifier/actions/runs/6275811448/job/17044135123 for example shows (starting at line 27 in the log):
Unknown command: 'ARGS'
NuGet.Commands.CommandException: Unknown command: 'ARGS'
at NuGet.CommandLine.CommandManager.GetCommand(String commandName)
at NuGet.CommandLine.CommandLineParser.ParseCommandLine(IEnumerable`1 commandLineArgs)
at NuGet.CommandLine.Program.MainCore(String workingDirectory, String[] args)
Feeds used:
https://api.nuget.org/v3/index.json
C:\Program Files (x86)\Microsoft SDKs\NuGetPackages\
execute_process should not have ARGS whereas
exec_program does.
Once this PR is merged into #543 then the checks for that PR should pass, allowing it to be merged.