Browse Source

removed debugging compiler flags

Iver 4 months ago
parent
commit
e1bff45506
3 changed files with 2 additions and 2 deletions
  1. 2 2
      Makefile
  2. BIN
      build/libsourparse.so
  3. BIN
      build/main.bin

+ 2 - 2
Makefile

@@ -1,7 +1,7 @@
 COMPILER=gcc
-FLAGS_ALL=-fsanitize=address -g -Wall -Wextra -Wno-unused-variable -Wno-unused-parameter -Wno-sequence-point
+FLAGS_ALL=-Wall -Wextra -Wno-unused-variable -Wno-unused-parameter -Wno-sequence-point
 FLAGS_EXAMPLE=-Lbuild/ -lsourparse -Wl,-rpath=build/
-FLAGS_LIB=-lc -shared -fPIC
+FLAGS_LIB=-shared -fPIC
 
 main.bin: sourparse.so
 	$(COMPILER) $(FLAGS_ALL) src/launch_program/main.c -o build/main.bin $(FLAGS_EXAMPLE) 

BIN
build/libsourparse.so


BIN
build/main.bin