You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write-PipelineTelemetryError -category "Build" -type "warning""Specific version of $compiler not found, falling back to use the one in PATH."
79
+
echo"Warning: Specific version of $compiler not found, falling back to use the one in PATH."
87
80
fi
88
81
CC="$(command -v "$compiler")"
89
82
CXX="$(command -v "$cxxCompiler")"
90
83
else
91
-
Write-PipelineTelemetryError -category "Build""No usable version of $compiler found."
84
+
echo"No usable version of $compiler found."
92
85
exit 1
93
86
fi
94
87
else
95
88
if [ "$compiler"="clang" ] && [ "$majorVersion"-lt 5 ];then
96
89
if [ "$build_arch"="arm" ] || [ "$build_arch"="armel" ];then
97
90
ifcommand -v "$compiler"> /dev/null;then
98
-
Write-PipelineTelemetryError -category "Build" -type "warning""Found clang version $majorVersion which is not supported on arm/armel architectures, falling back to use clang from PATH."
91
+
echo"Warning: Found clang version $majorVersion which is not supported on arm/armel architectures, falling back to use clang from PATH."
99
92
CC="$(command -v "$compiler")"
100
93
CXX="$(command -v "$cxxCompiler")"
101
94
else
102
-
Write-PipelineTelemetryError -category "Build""Found clang version $majorVersion which is not supported on arm/armel architectures, and there is no clang in PATH."
95
+
echo"Found clang version $majorVersion which is not supported on arm/armel architectures, and there is no clang in PATH."
0 commit comments