Global: remove stb_printf

Doesn't gain any performance boost
This commit is contained in:
Carter Li
2024-10-29 08:51:17 +08:00
parent bc550a5ea7
commit a3a042f02b
9 changed files with 0 additions and 1991 deletions
-9
View File
@@ -81,7 +81,6 @@ cmake_dependent_option(ENABLE_LIBZFS "Enable libzfs" ON "LINUX OR FreeBSD OR Sun
option(ENABLE_SYSTEM_YYJSON "Use system provided (instead of fastfetch embedded) yyjson library" OFF)
option(ENABLE_ASAN "Build fastfetch with ASAN (address sanitizer)" OFF)
option(ENABLE_LTO "Enable link-time optimization in release mode if supported" ON)
option(ENABLE_STBPRINTF "Enable stb_printf" OFF)
option(BUILD_TESTS "Build tests" OFF) # Also create test executables
option(SET_TWEAK "Add tweak to project version" ON) # This is set to off by github actions for release builds
option(IS_MUSL "Build with musl libc" OFF) # Used by Github Actions
@@ -1053,10 +1052,6 @@ elseif(SunOS)
)
endif()
if(ENABLE_STBPRINTF)
list(APPEND LIBFASTFETCH_SRC src/util/stb_printf.c)
endif()
if(ENABLE_DIRECTX_HEADERS)
message(STATUS "Enabling DirectX headers for WSL")
list(APPEND LIBFASTFETCH_SRC src/detection/gpu/gpu_wsl.cpp)
@@ -1097,10 +1092,6 @@ add_library(libfastfetch OBJECT
${LIBFASTFETCH_SRC}
)
if(ENABLE_STBPRINTF)
target_compile_definitions(libfastfetch PUBLIC FF_USE_STBPRINTF)
endif()
if(yyjson_FOUND)
target_compile_definitions(libfastfetch PUBLIC FF_USE_SYSTEM_YYJSON)
target_link_libraries(libfastfetch PUBLIC yyjson::yyjson)
-9
View File
@@ -1,9 +0,0 @@
{
"home": "https://github.com/nothings/stb/blob/master/stb_sprintf.h",
"license": "MIT or Public domain (embed in source)",
"version": "v1.10",
"author": "nothings",
"patches": [
"https://github.com/nothings/stb/pull/1695"
]
}
-1906
View File
File diff suppressed because it is too large Load Diff
-3
View File
@@ -266,9 +266,6 @@ void ffListFeatures(void)
#if FF_HAVE_EMBEDDED_PCIIDS
"Embedded pciids\n"
#endif
#if FF_USE_STBPRINTF
"stb_printf\n"
#endif
""
, stdout);
}
-2
View File
@@ -9,8 +9,6 @@
#include <sysinfoapi.h>
#endif
#include "util/stb_printf.h"
static inline double ffTimeGetTick(void) //In msec
{
#ifdef _WIN32
-7
View File
@@ -20,15 +20,8 @@ void ffStrbufInitVF(FFstrbuf* strbuf, const char* format, va_list arguments)
{
assert(format != NULL);
#ifndef FF_USE_STBPRINTF
int len = vasprintf(&strbuf->chars, format, arguments);
assert(len >= 0);
#else
int len = vsnprintf(NULL, 0, format, arguments);
assert(len >= 0);
strbuf->chars = (char*) malloc(sizeof(char) * (len + 1));
vsnprintf(strbuf->chars, len + 1, format, arguments);
#endif
strbuf->allocated = (uint32_t)(len + 1);
strbuf->length = (uint32_t)len;
-2
View File
@@ -18,8 +18,6 @@
#define FASTFETCH_STRBUF_DEFAULT_ALLOC 32
#include "stb_printf.h"
typedef struct FFstrbuf
{
uint32_t allocated;
-3
View File
@@ -1,3 +0,0 @@
#define STB_SPRINTF_IMPLEMENTATION 1
#pragma GCC diagnostic ignored "-Wsign-conversion"
#include "3rdparty/stb/stb_sprintf.h"
-50
View File
@@ -1,50 +0,0 @@
#pragma once
#ifdef FF_USE_STBPRINTF
#include <stdio.h>
#include <stdint.h>
#include "3rdparty/stb/stb_sprintf.h"
static inline char *STB_SPRINTF_DECORATE(printf_callback)(const char* __restrict buf, void* __restrict user, int len)
{
fwrite(buf, 1, (uint32_t) len, (FILE *)user);
return (char *) buf;
}
static inline int STB_SPRINTF_DECORATE(vfprintf)(FILE* file, char const* __restrict fmt, va_list va)
{
char tmp[STB_SPRINTF_MIN];
return STB_SPRINTF_DECORATE(vsprintfcb)(STB_SPRINTF_DECORATE(printf_callback), file, tmp, fmt, va);
}
#define vfprintf(...) STB_SPRINTF_DECORATE(vfprintf)(__VA_ARGS__)
static inline int STBSP__ATTRIBUTE_FORMAT(1,2) STB_SPRINTF_DECORATE(printf)(char const* __restrict fmt, ...)
{
va_list va;
va_start(va, fmt);
int result = STB_SPRINTF_DECORATE(vfprintf)(stdout, fmt, va);
va_end(va);
return result;
}
#define printf(...) STB_SPRINTF_DECORATE(printf)(__VA_ARGS__)
static inline int STBSP__ATTRIBUTE_FORMAT(2,3) STB_SPRINTF_DECORATE(fprintf)(FILE* __restrict file, char const* __restrict fmt, ...)
{
va_list va;
va_start(va, fmt);
int result = STB_SPRINTF_DECORATE(vfprintf)(file, fmt, va);
va_end(va);
return result;
}
#define fprintf(...) STB_SPRINTF_DECORATE(fprintf)(__VA_ARGS__)
#define vsprintf(...) STB_SPRINTF_DECORATE(vsprintf)(__VA_ARGS__)
#define vsnprintf(...) STB_SPRINTF_DECORATE(vsnprintf)(__VA_ARGS__)
#define sprintf(...) STB_SPRINTF_DECORATE(sprintf)(__VA_ARGS__)
#define snprintf(...) STB_SPRINTF_DECORATE(snprintf)(__VA_ARGS__)
#endif