add target for building 32bit lib

This commit is contained in:
Alex 2019-04-13 23:19:48 +00:00
parent 8ffb2dc03c
commit c863d511af
1 changed files with 3 additions and 0 deletions

View File

@ -23,9 +23,12 @@ $(OBJ) : $(HEADERS)
release: CXX_FLAGS += -DNDEBUG -DEMU_RELEASE_BUILD -Ofast
release: LD_FLAGS += -lpthread
release32: CXX_FLAGS += -m32
release32: LD_FLAGS += -m32
debug: CXX_FLAGS += -g3 -fsanitize=address
debug: LD_FLAGS += -lasan
release: library
release32: release
debug: library
all: release