diff --git a/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Make.h b/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Make.h index 59c3c08388..3e3047a1e2 100644 --- a/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Make.h +++ b/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Make.h @@ -52,9 +52,10 @@ protected: addGCCOptimisationProperty (props); props.add (new ChoicePropertyComponent (architectureTypeValue, "Architecture", - { "", "Native", "32-bit (-m32)", "64-bit (-m64)", "ARM v6", "ARM v7" }, - { { String() }, "-march=native", "-m32", "-m64", "-march=armv6", "-march=armv7" }), - "Specifies the 32/64-bit architecture to use."); + { "", "Native", "32-bit (-m32)", "64-bit (-m64)", "ARM v6", "ARM v7", "ARM v8-a" }, + { { String() }, "-march=native", "-m32", "-m64", "-march=armv6", "-march=armv7", "-march=armv8-a" }), + "Specifies the 32/64-bit architecture to use. If you don't see the required architecture in this list, you can also specify the desired " + "flag on the command-line when invoking make by passing \"TARGET_ARCH=-march=\""); auto isBuildingAnyPlugins = (project.shouldBuildVST() || project.shouldBuildVST3() || project.shouldBuildUnityPlugin());