Skip to content

Commit

Permalink
Fix OnDiskInvertedLists file path for windows patching (opensearch-pr…
Browse files Browse the repository at this point in the history
  • Loading branch information
naveentatikonda authored Aug 16, 2023
1 parent 74b87e8 commit 9702dd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/windowsScript.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ git submodule update --init -- jni/external/faiss
# #ifndef __MINGW32__
# #include <sys/mman.h>
# #endif
(Get-Content jni/external/faiss/faiss/OnDiskInvertedLists.cpp).replace('#include <sys/mman.h>', "#ifndef __MINGW32__`n#include <sys/mman.h>`n#endif") | Set-Content jni/external/faiss/faiss/OnDiskInvertedLists.cpp
(Get-Content jni/external/faiss/faiss/invlists/OnDiskInvertedLists.cpp).replace('#include <sys/mman.h>', "#ifndef __MINGW32__`n#include <sys/mman.h>`n#endif") | Set-Content jni/external/faiss/faiss/invlists/OnDiskInvertedLists.cpp
# intrin.h function like __builtin_ctz, __builtin_clzll is not available in MINGW32. So, adding condition to include it if not running on Windows
# Replace '#include <intrin.h>' with
# #ifndef __MINGW32__
Expand Down

0 comments on commit 9702dd0

Please sign in to comment.