mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-11-09 22:28:38 +01:00
add target for building 32bit lib
This commit is contained in:
parent
8ffb2dc03c
commit
c863d511af
1 changed files with 3 additions and 0 deletions
3
Makefile
3
Makefile
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue