diff --git a/source/dub/compilers/ldc.d b/source/dub/compilers/ldc.d index 02559c4..f62e964 100644 --- a/source/dub/compilers/ldc.d +++ b/source/dub/compilers/ldc.d @@ -83,6 +83,8 @@ case "": break; case "x86": arch_flags = ["-march=x86"]; break; case "x86_64": arch_flags = ["-march=x86-64"]; break; + case "aarch64": arch_flags = ["-march=aarch64"]; break; + case "powerpc64": arch_flags = ["-march=powerpc64"]; break; default: if (arch_override.canFind('-')) arch_flags = ["-mtriple="~arch_override];