We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents efc951c + 4cab8ef commit 38ca8e4Copy full SHA for 38ca8e4
makefile.cargo
@@ -21,6 +21,15 @@ ifneq ($(HOST),$(TARGET))
21
$(NULL)
22
endif
23
24
+ ifeq (aarch64-unknown-linux-gnu,$(TARGET))
25
+ # Reset TARGET variable because aarch64 target name used by Rust is not
26
+ # the same as the target name needed for the CXX toolchain.
27
+ TARGET = aarch64-linux-gnu
28
+ CONFIGURE_FLAGS += \
29
+ --with-arch=armv8-a \
30
+ $(NULL)
31
+ endif
32
+
33
ifeq (android,$(findstring android,$(TARGET)))
34
ifneq (,$(STLPORT_CPPFLAGS))
35
CONFIGURE_FLAGS += STLPORT_CPPFLAGS="$(STLPORT_CPPFLAGS)"
0 commit comments