2021-10-27 07:13:52

This commit is contained in:
marvin
2021-10-27 07:13:52 +02:00
parent 2a085e18d4
commit 7eef456ae4

View File

@@ -19,7 +19,15 @@ ln -snvf $HOME/libft libft
Only for Linux
```
sudo apt-get install -qq -y make gcc clang valgrind libbsd-dev libncurses-dev build-essential
sudo apt-get install -qq -y make gcc clang valgrind build-essential
# for make d (alelievr/libft-unit-test)
sudo apt-get install -qq -y libbsd-dev libncurses-dev
vi 42test/libft/libft/Makefile
LIB = libft.so
so: $(OBJ) $(OBJ_BONUS)
@$(CC) $(CFLAGS) -shared -fPIC -o $(LIB) $(OBJ) $(OBJ_BONUS)
:wq
```
## Update