According to clang --help:
--target=<value> Generate code for the given target
In order to check which targets are available with your distribution of clang:
clang -print-targets
So for example, you can do:
clang++ --target=arm64 -o hello.exe hello.cpp