Skip to content

Commit 439cdc0

Browse files
committed
fix: restore CXX ?= g++ in Makefile (remove hardcoded local toolchain path)
1 parent 499646b commit 439cdc0

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@ TARGET := fastp
2323

2424
BIN_TARGET := ${TARGET}
2525

26-
CXX := /var/tmp/kimy/workspace/build-env/bin/x86_64-conda-linux-gnu-g++
27-
INCLUDE_DIRS ?= /var/tmp/kimy/workspace/build-env/include
28-
LIBRARY_DIRS ?= /var/tmp/kimy/workspace/build-env/lib
26+
CXX ?= g++
2927
CXXFLAGS := -std=c++23 -pthread -g -O3 -MD -MP -I. -I${DIR_INC} $(foreach includedir,$(INCLUDE_DIRS),-I$(includedir)) $(HWY_CFLAGS) $(ISAL_CFLAGS) $(DEFLATE_CFLAGS) ${CXXFLAGS}
3028
LIBS := -lisal -ldeflate -lhwy -lpthread
3129

0 commit comments

Comments
 (0)