mirror of
https://gitlab.com/niansa/libjustlm.git
synced 2025-03-06 20:49:17 +01:00
add msvc support -polyfill unistd
This commit is contained in:
parent
4b19bc49a5
commit
2d57ade1b8
4 changed files with 14 additions and 3 deletions
|
@ -11,7 +11,7 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
#include <iostream>
|
||||
#include <unistd.h>
|
||||
#include "../msvc_compat_unistd.h"
|
||||
#include <sstream>
|
||||
#include <unordered_set>
|
||||
#include <ggml.h>
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 29cf5596fe0c37213f9b74e80d8f631193a93f0f
|
||||
Subproject commit ffb06a345e3a9e30d39aaa5b46a23201a74be6de
|
|
@ -11,7 +11,7 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
#include <iostream>
|
||||
#include <unistd.h>
|
||||
#include "../msvc_compat_unistd.h"
|
||||
#include <sstream>
|
||||
#include <thread>
|
||||
#include <unordered_set>
|
||||
|
|
11
msvc_compat_unistd.h
Normal file
11
msvc_compat_unistd.h
Normal file
|
@ -0,0 +1,11 @@
|
|||
#if defined(_WIN32) && defined(_MSC_VER)
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#ifndef NOMINMAX
|
||||
#define NOMINMAX
|
||||
#endif
|
||||
#include <windows.h>
|
||||
#include <io.h>
|
||||
#include <stdio.h> // for _fseeki64
|
||||
#else
|
||||
#include <unistd.h>
|
||||
#endif
|
Loading…
Add table
Reference in a new issue