Skip to content

Commit

Permalink
consume latest cxplat
Browse files Browse the repository at this point in the history
  • Loading branch information
mtfriesen committed Nov 15, 2024
1 parent f063e73 commit 9a8ed48
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bpfexport/bpfexport.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ main(
ebpf_result_t result;
int exit_code = 0;

if (argc == 2 && !_strcmpi("--clear", argv[1])) {
if (argc == 2 && !_stricmp("--clear", argv[1])) {
for (uint32_t i = 0; i < RTL_NUMBER_OF(EbpfXdpSectionInfo); i++) {
result = ebpf_store_delete_section_information(&EbpfXdpSectionInfo[i]);
if (result != EBPF_SUCCESS) {
Expand Down
2 changes: 1 addition & 1 deletion submodules/cxplat
Submodule cxplat updated 1 files
+1 −1 submodules/undocked
7 changes: 7 additions & 0 deletions test/pktfuzz/pktfuzz.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@
%(AdditionalIncludeDirectories);
</AdditionalIncludeDirectories>
</ClCompile>
<!-- ASAN prefers linking dynamically. -->
<ClCompile Condition="'$(Configuration)'=='Debug'">
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
</ClCompile>
<ClCompile Condition="'$(Configuration)'=='Release'">
<RuntimeLibrary>MultiThreadedDll</RuntimeLibrary>
</ClCompile>
<Link>
<AdditionalDependencies>onecore.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
Expand Down

0 comments on commit 9a8ed48

Please sign in to comment.