You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
city.c conditionally includes citycrc.h if the macro __SSE_4_2__ is defined, which it is on all processors sold in the last decade. However, this file is not checked into git and the make all step fails.
I'm trying to get this software into Homebrew. While our binary builds use -march=core2 and will thus be unaffected, builds from source always use -march=native and thus break compilation.
city.c
conditionally includescitycrc.h
if the macro__SSE_4_2__
is defined, which it is on all processors sold in the last decade. However, this file is not checked into git and themake all
step fails.Steps to reproduce:
git clone --recursive https://github.com/mcveanlab/mccortex
mccortex/libs/misc
and add-march=native
to theOPT
variablemake
Expected behavior:
No errors.
Actual behavior:
The text was updated successfully, but these errors were encountered: