mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-04-04 16:20:42 +02:00
Revert "ggml : do not use _GNU_SOURCE gratuitously (#1027)"
This reverts commit 3f7a03ebe3
.
This commit is contained in:
parent
d6509bf78d
commit
8ba42095c5
11
Makefile
11
Makefile
@ -36,12 +36,11 @@ CFLAGS = -I. -O3 -DNDEBUG -std=c11 -fPIC
|
|||||||
CXXFLAGS = -I. -I./examples -O3 -DNDEBUG -std=c++11 -fPIC
|
CXXFLAGS = -I. -I./examples -O3 -DNDEBUG -std=c++11 -fPIC
|
||||||
LDFLAGS =
|
LDFLAGS =
|
||||||
|
|
||||||
# clock_gettime came in POSIX.1b (1993)
|
# ref: https://github.com/ggerganov/whisper.cpp/issues/37
|
||||||
# CLOCK_MONOTONIC came in POSIX.1-2001 / SUSv3 as optional
|
ifneq ($(wildcard /usr/include/musl/*),)
|
||||||
# posix_memalign came in POSIX.1-2001 / SUSv3
|
CFLAGS += -D_POSIX_SOURCE -D_GNU_SOURCE
|
||||||
# M_PI is an XSI extension since POSIX.1-2001 / SUSv3, came in XPG1 (1985)
|
CXXFLAGS += -D_POSIX_SOURCE -D_GNU_SOURCE
|
||||||
CFLAGS += -D_XOPEN_SOURCE=600
|
endif
|
||||||
CXXFLAGS += -D_XOPEN_SOURCE=600
|
|
||||||
|
|
||||||
# RLIMIT_MEMLOCK came in BSD, is not specified in POSIX.1,
|
# RLIMIT_MEMLOCK came in BSD, is not specified in POSIX.1,
|
||||||
# and on macOS its availability depends on enabling Darwin extensions
|
# and on macOS its availability depends on enabling Darwin extensions
|
||||||
|
@ -6,8 +6,8 @@
|
|||||||
// ref: https://github.com/ggerganov/whisper.cpp/issues/171
|
// ref: https://github.com/ggerganov/whisper.cpp/issues/171
|
||||||
//
|
//
|
||||||
|
|
||||||
#include "common-sdl.h"
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
#include "common-sdl.h"
|
||||||
#include "whisper.h"
|
#include "whisper.h"
|
||||||
|
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
@ -3,8 +3,8 @@
|
|||||||
// A very quick-n-dirty implementation serving mainly as a proof of concept.
|
// A very quick-n-dirty implementation serving mainly as a proof of concept.
|
||||||
//
|
//
|
||||||
|
|
||||||
#include "common-sdl.h"
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
#include "common-sdl.h"
|
||||||
#include "whisper.h"
|
#include "whisper.h"
|
||||||
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
@ -1,3 +1,11 @@
|
|||||||
|
// Defines fileno on msys:
|
||||||
|
#ifndef _GNU_SOURCE
|
||||||
|
#define _GNU_SOURCE
|
||||||
|
#include <cstddef>
|
||||||
|
#include <cstdint>
|
||||||
|
#include <cstdio>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "llama-util.h"
|
#include "llama-util.h"
|
||||||
#include "llama.h"
|
#include "llama.h"
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
// Talk with AI
|
// Talk with AI
|
||||||
//
|
//
|
||||||
|
|
||||||
#include "common-sdl.h"
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
#include "common-sdl.h"
|
||||||
#include "whisper.h"
|
#include "whisper.h"
|
||||||
#include "llama.h"
|
#include "llama.h"
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
// Talk with AI
|
// Talk with AI
|
||||||
//
|
//
|
||||||
|
|
||||||
#include "common-sdl.h"
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
#include "common-sdl.h"
|
||||||
#include "whisper.h"
|
#include "whisper.h"
|
||||||
#include "gpt-2.h"
|
#include "gpt-2.h"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user