diff options
author | Linnnus <[email protected]> | 2024-02-14 17:56:30 +0100 |
---|---|---|
committer | Linnnus <[email protected]> | 2024-02-14 17:56:30 +0100 |
commit | cfb648daef74f695e42e3314c05296a72168860c (patch) | |
tree | a4631fcdbc20bccb4640a3fa2484606f44cd2bc4 /Makefile | |
parent | 2b11289379b5ba3d6d67b88211df0862f4b92ebd (diff) |
build: Use stdenv from llvmPackages
This patch updates the flake to use llvmPackages.stdenv rather than the
default pkgs.stdenv. This fixes an issue on MacOS where the ASAN runtime
library isn't found. I have no idea why.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ .POSIX: .PHONY: all install uninstall clean -CC := cc +CC ?= cc CFLAGS := -W -O $(shell pkg-config --cflags libgit2) CFLAGS += -g3 -O0 -fsanitize=address,undefined -fsanitize-trap CFLAGS += -Wall -Wextra -Wconversion -Wdouble-promotion \ |