mirror of
https://github.com/thepigeongenerator/tetris_clone
synced 2026-02-08 07:33:34 +01:00
execute program in 32 bit mode, as we don't need that wide of an adress space
This commit is contained in:
2
makefile
2
makefile
@@ -12,7 +12,7 @@ NAME := $(shell basename $(PWD))
|
|||||||
CC := clang
|
CC := clang
|
||||||
STD := c17
|
STD := c17
|
||||||
LANG = c
|
LANG = c
|
||||||
CFLAGS := $(shell pkg-config --cflags sdl2 SDL2_ttf) -Wall -Wextra -Wpedantic -Wno-pointer-arith
|
CFLAGS := $(shell pkg-config --cflags sdl2 SDL2_ttf) -m32 -Wall -Wextra -Wpedantic -Wno-pointer-arith
|
||||||
LDFLAGS := $(shell pkg-config --libs sdl2 SDL2_ttf) -lm
|
LDFLAGS := $(shell pkg-config --libs sdl2 SDL2_ttf) -lm
|
||||||
DEBUG ?= 0
|
DEBUG ?= 0
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user