2 Commits

Author SHA1 Message Date
f2bd4e1132 a newline holds up the build
Some checks failed
Release / Bump Homebrew formula (push) Has been cancelled
2025-11-30 13:18:19 -08:00
fc86d0cb4e Remove Linux only build flag.
Some checks failed
Release / Bump Homebrew formula (push) Has been cancelled
2025-11-30 13:15:07 -08:00
2 changed files with 3 additions and 3 deletions

View File

@@ -2,9 +2,9 @@ cmake_minimum_required(VERSION 3.15)
project(ke C) # Specify C language explicitly
set(CMAKE_C_STANDARD 99)
set(KE_VERSION "2.1.2")
set(KE_VERSION "2.1.4")
set(CMAKE_C_FLAGS "-Wall -Wextra -pedantic -Wshadow -Werror -std=c99 -g -Werror=stringop-truncation")
set(CMAKE_C_FLAGS "-Wall -Wextra -pedantic -Wshadow -Werror -std=c99 -g")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_DEFAULT_SOURCE -D_XOPEN_SOURCE")
# Optionally enable AddressSanitizer (ASan)

2
core.h
View File

@@ -36,4 +36,4 @@ void kwrite(int fd, const char *buf, int len);
void die(const char *s);
#endif
#endif