Remove -march=native
It causes issues for some platforms. And for a tiny program which only got run once, we don't really need it anyway. This should fix #2. Signed-off-by: Wen-chien Jesse Sung <jesse@cola.voip.idv.tw>
This commit is contained in:
parent
bd704d85e8
commit
6d30d778f5
1 changed files with 4 additions and 4 deletions
2
Makefile
2
Makefile
|
@ -1,5 +1,5 @@
|
||||||
CC = gcc
|
CC = gcc
|
||||||
CFLAGS = -O2 -march=native
|
CFLAGS = -O2
|
||||||
TARGET = hex2hcd
|
TARGET = hex2hcd
|
||||||
PREFIX = /usr/local
|
PREFIX = /usr/local
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue