Skip to content

Commit 7bb7913

Browse files
committed
Removed -march=native from Makefile
1 parent 1a1cbc9 commit 7bb7913

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ifeq ($(BUILD),debug)
99
STRIP_CMD = $(info Skipping `strip` for debug builds)
1010
# ASAN = -lasan
1111
else
12-
CFLAGS_BUILD = -O2 -march=native -Wstringop-overflow=0
12+
CFLAGS_BUILD = -O2 -Wstringop-overflow=0
1313
GLAD_GEN = c
1414
STRIP_CMD = strip --strip-all glava
1515
endif

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
```bash
99
$ git clone --recursive https://github.com/wacossusca34/glava
1010
$ cd glava
11-
$ make
11+
$ CFLAGS="-march=native" make
1212
$ sudo make install
1313
$ glava
1414
```

0 commit comments

Comments
 (0)