From 62d816d7d69985f132db1b70b16e99e51a5415c8 Mon Sep 17 00:00:00 2001 From: Orestis <orestis.malaspinas@pm.me> Date: Mon, 25 Oct 2021 17:22:28 +0200 Subject: [PATCH] removed san because reasons. at some point we'll add it back --- source_codes/loops_tests/Makefile | 2 +- source_codes/pointeurs/Makefile | 2 +- source_codes/recursivity/Makefile | 2 +- source_codes/refactor_with_functions/Makefile | 2 +- source_codes/sorting/Makefile | 2 +- source_codes/structures/Makefile | 2 +- source_codes/tableaux_1d/Makefile | 2 +- source_codes/tableaux_2d/Makefile | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/source_codes/loops_tests/Makefile b/source_codes/loops_tests/Makefile index 75f84c9..d7822ac 100644 --- a/source_codes/loops_tests/Makefile +++ b/source_codes/loops_tests/Makefile @@ -1,5 +1,5 @@ CC:=gcc -SAN:=-fsanitize=address +# SAN:=-fsanitize=address CFLAGS:=-Wall -Wextra -pedantic -g $(SAN) LDFLAGS:=-lm $(SAN) diff --git a/source_codes/pointeurs/Makefile b/source_codes/pointeurs/Makefile index 75f84c9..d7822ac 100644 --- a/source_codes/pointeurs/Makefile +++ b/source_codes/pointeurs/Makefile @@ -1,5 +1,5 @@ CC:=gcc -SAN:=-fsanitize=address +# SAN:=-fsanitize=address CFLAGS:=-Wall -Wextra -pedantic -g $(SAN) LDFLAGS:=-lm $(SAN) diff --git a/source_codes/recursivity/Makefile b/source_codes/recursivity/Makefile index 75f84c9..d7822ac 100644 --- a/source_codes/recursivity/Makefile +++ b/source_codes/recursivity/Makefile @@ -1,5 +1,5 @@ CC:=gcc -SAN:=-fsanitize=address +# SAN:=-fsanitize=address CFLAGS:=-Wall -Wextra -pedantic -g $(SAN) LDFLAGS:=-lm $(SAN) diff --git a/source_codes/refactor_with_functions/Makefile b/source_codes/refactor_with_functions/Makefile index 75f84c9..d7822ac 100644 --- a/source_codes/refactor_with_functions/Makefile +++ b/source_codes/refactor_with_functions/Makefile @@ -1,5 +1,5 @@ CC:=gcc -SAN:=-fsanitize=address +# SAN:=-fsanitize=address CFLAGS:=-Wall -Wextra -pedantic -g $(SAN) LDFLAGS:=-lm $(SAN) diff --git a/source_codes/sorting/Makefile b/source_codes/sorting/Makefile index 97109d9..36389c6 100644 --- a/source_codes/sorting/Makefile +++ b/source_codes/sorting/Makefile @@ -1,5 +1,5 @@ CC:=gcc -SAN:=-fsanitize=address +# SAN:=-fsanitize=address CFLAGS:=-Wall -Wextra -pedantic -g $(SAN) LDFLAGS:=-lm $(SAN) diff --git a/source_codes/structures/Makefile b/source_codes/structures/Makefile index 75f84c9..d7822ac 100644 --- a/source_codes/structures/Makefile +++ b/source_codes/structures/Makefile @@ -1,5 +1,5 @@ CC:=gcc -SAN:=-fsanitize=address +# SAN:=-fsanitize=address CFLAGS:=-Wall -Wextra -pedantic -g $(SAN) LDFLAGS:=-lm $(SAN) diff --git a/source_codes/tableaux_1d/Makefile b/source_codes/tableaux_1d/Makefile index 75f84c9..d7822ac 100644 --- a/source_codes/tableaux_1d/Makefile +++ b/source_codes/tableaux_1d/Makefile @@ -1,5 +1,5 @@ CC:=gcc -SAN:=-fsanitize=address +# SAN:=-fsanitize=address CFLAGS:=-Wall -Wextra -pedantic -g $(SAN) LDFLAGS:=-lm $(SAN) diff --git a/source_codes/tableaux_2d/Makefile b/source_codes/tableaux_2d/Makefile index 9a1970e..1807f16 100644 --- a/source_codes/tableaux_2d/Makefile +++ b/source_codes/tableaux_2d/Makefile @@ -1,5 +1,5 @@ CC:=gcc -SAN:=-fsanitize=address +# SAN:=-fsanitize=address CFLAGS:=-Wall -Wextra -pedantic -g $(SAN) LDFLAGS:=-lm $(SAN) -- GitLab