Home | History | Annotate | Download | only in Configurations

Lines Matching refs:triarch

101             my $triarch = $triplet{$arch};
110 (my $tridefault = $triarch) =~ s/^arm-/$arm-/;
111 (my $tritools = $triarch) =~ s/(?:x|i6)86(_64)?-.*/x86$1/;
133 if (which("$triarch-$cc") !~ m|^$ndk|) {
134 die "no NDK $triarch-$cc on \$PATH";
137 $user{CROSS_COMPILE} = "$triarch-";
141 if (which("$triarch-gcc") !~ m|^$ndk/.*/prebuilt/([^/]+)/|) {
142 die "no NDK $triarch-gcc on \$PATH";
145 $user{CROSS_COMPILE} = "$triarch-";
152 die "no $incroot/$triarch" if (!-d "$incroot/$triarch");
155 $cppflags .= " -isystem \$($ndk_var)/$incroot/$triarch";