Skip to content

Commit

Permalink
Fix OnDiskInvertedLists file path for windows patching (#1044) (#1045)
Browse files Browse the repository at this point in the history
(cherry picked from commit 9702dd0)

Co-authored-by: Naveen Tatikonda <[email protected]>
  • Loading branch information
1 parent fe6fdf0 commit 83eade5
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 83eade5

Please sign in to comment.