File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -44,12 +44,21 @@ MSBuild version 17.10.4+10fbfbf2e for .NET Framework
4444MSBUILD : error MSB1003: Specify a project or solution file. The current working directory does not contain a project or solution file.
4545```
4646
47+ ### Compiling the runtime
48+
4749!!! note "Pre-built eBPF for Windows binaries"
4850 You may be able to download precompiled binaries from the [ efW CI/CD] pipeline.
4951 Look for an artifact called "Build-x64-Debug", which should contain
5052 ` setup-ebpf.ps1 ` mentioned below.
5153
52- After compilation finishes you can install the runtime:
54+ The upstream instructions currently explain how to compile the full project, which takes quite a long time.
55+ It is possible to build only some parts from the command line:
56+
57+ * Installer: ` msbuild /m /p:Configuration=Debug /p:Platform=x64 ebpf-for-windows.sln -t:"installer\ebpf-for-windows" `
58+ * Unit tests: ` msbuild /m /p:Configuration=Debug /p:Platform=x64 ebpf-for-windows.sln -t:"tests\unit_tests" `
59+ * Clean: ` msbuild /m /p:Configuration=Debug /p:Platform=x64 ebpf-for-windows.sln -t:"Clean" `
60+
61+ After compilation of the installer finishes you can install the runtime:
5362
5463```
5564.\x64\Debug\setup-ebpf.ps1
You can’t perform that action at this time.
0 commit comments