Vec<T> works!!!!!!!!!!

This commit is contained in:
2025-05-12 21:37:13 +03:00
parent 8be9917349
commit a45b7cbb21
146 changed files with 446 additions and 7030 deletions

View File

@@ -1,12 +1,12 @@
LIB=libc+
COM_FLAGS = -fPIC -Isrc/include
CC_FLAGS = -std=c23
CXX_FLAGS = -std=c++23 -nostdinc++
LD_FLAGS = -nostdlib++ -lsupc++
CC_FLAGS = -std=c23 -ggdb
CXX_FLAGS = -std=c++23 -nostdinc++ -ggdb
LD_FLAGS = -nostdlib++ -lsupc++ -ggdb
CC=gcc
CXX=g++
LD=g++
LD=gcc
AR=ar
cxx_sources=$(wildcard src/*.cpp)