From 64047304755779fc58d9021a06a0f12f33573a96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9D=D0=B8=D0=BA=D0=BE=D0=BB=D0=B0=D0=B9=20=D0=9F=D1=83?= =?UTF-8?q?=D0=B7=D0=B0=D0=BD=D0=BE=D0=B2?= Date: Sun, 13 Dec 2020 11:05:56 +0300 Subject: [PATCH] Remove -m32 option --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 84e563d..ab107bc 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ all: test test: test.c uprintf.c uprintf.h - gcc -std=c99 -Os -m32 -o test test.c uprintf.c + gcc -std=c99 -Os -o test test.c uprintf.c clean: rm -rf test