OSX 10.15.7 and Xcode 12.0.1 "Architecture not supported"

it would appear that ciso8601 is failing on compile, “unsupported architecture” and “architecture not supported” all over the place on typedef’s . Any flags to work around this, or will there have to be a different module used with home assistant to support Darwin?

Use the following export before running any commands.

export CFLAGS="-D__x86_64__

or prefix the command

CFLAGS="-D__x86_64__" python3 -m pip install homeassistant
1 Like