mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-14 03:03:14 +08:00
Remove unnecessary x86 SSE 4.2 popcnt GCC flag
-mpopcnt is only a valid flag for x86 platforms with SSE 4.2. Breaks on anything else, e.g. ARM Builds/runs fine without this flag. I don't see any reference to popcnt instruction so I'm not sure what this is there for.
This commit is contained in:
parent
f7639bc338
commit
9640aa75a6
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ include ../common/Makefile.common
|
||||||
|
|
||||||
CC = gcc
|
CC = gcc
|
||||||
CXX = g++
|
CXX = g++
|
||||||
COMMON_FLAGS += -std=c99 -O3 -mpopcnt -march=native -g
|
COMMON_FLAGS += -std=c99 -O3 -march=native -g
|
||||||
|
|
||||||
#VPATH = ../common ../zlib
|
#VPATH = ../common ../zlib
|
||||||
OBJDIR = obj
|
OBJDIR = obj
|
||||||
|
|
Loading…
Reference in a new issue