From 93be5d86b2add333b59d2aef0261386ba85c8eec Mon Sep 17 00:00:00 2001 From: Zeex Date: Sat, 21 Oct 2017 23:51:18 +0600 Subject: [PATCH] Correct cmake command in readme --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 2d9baee..76cf3e7 100644 --- a/readme.md +++ b/readme.md @@ -92,7 +92,7 @@ Now you can clone this repo and build the compiler: git clone https://github.com/Zeex/pawn.git ~/pawn cd ~/pawn mkdir build && cd build -cmake ../source/compiler -DCMAKE_BUILD_TYPE=Release +cmake ../source/compiler -DCMAKE_C_FLAGS=-m32 -DCMAKE_BUILD_TYPE=Release make ``` @@ -121,7 +121,7 @@ brew install cmake git clone https://github.com/Zeex/pawn.git ~/pawn cd ~/pawn mkdir build && cd build -cmake ../source/compiler -DCMAKE_BUILD_TYPE=Release +cmake ../source/compiler -DCMAKE_C_FLAGS=-m32 -DCMAKE_BUILD_TYPE=Release make ```