Lines Matching full:architecture
42 # Canonize architecture name.
46 if ( $arch =~ m{\A\s*(?:32|IA-?32|IA-?32 architecture|i[3456]86|x86)\s*\z}i ) {
73 # Canonize Intel(R) Many Integrated Core Architecture name.
90 { # Return legal approved architecture name.
92 "32" => "IA-32 architecture",
96 "mic" => "Intel(R) Many Integrated Core Architecture",
112 { # Return architecture name suitable for Intel compiler setup scripts.
190 "target-architecture|target-arch|architecture|arch=s" =>
193 die "Bad value of --target-architecture option: \"$_[ 1 ]\"\n";
195 "target-mic-architecture|target-mic-arch|mic-architecture|mic-arch=s" =>
198 die "Bad value of --target-mic-architecture option: \"$_[ 1 ]\"\n";
259 … die "Unknown architecture specified in LIBOMP_ARCH environment variable: \"$ENV{ LIBOMP_ARCH }\"";
262 # Otherwise use host architecture.
267 # Detect target Intel(R) Many Integrated Core Architecture.
272 …die "Unknown architecture specified in LIBOMP_MIC_ARCH environment variable: \"$ENV{ LIBOMP_MIC_AR…
275 # Otherwise use default Intel(R) Many Integrated Core Architecture.
379 B<Platform.pm> -- Few subroutines to get OS, architecture and platform name in form suitable for
406 Environment variable LIBOMP_ARCH specifies target architecture to report. If LIBOMP_ARCH is not def…
407 the script assumes host architecture is target one.
415 Input string is an architecture name to canonize. The function recognizes many variants, for exampl…
416 C<32e>, C<Intel64>, C<Intel(R) 64>, etc. Returned string is a canonized architecture name,
421 Input string is architecture name. The function recognizes the same variants as C<arch_canon()> doe…
422 Returned string is a name approved by Intel Legal, one of: C<IA-32 architecture>, C<Intel(R) 64>
427 Input string is architecture name. The function recognizes the same variants as C<arch_canon()> doe…
428 Returned string is an architecture name suitable for passing to compiler setup scripts
429 (e. g. C<iccvars.sh>), one of: C<IA-32 architecture>, C<Intel(R) 64> or C<undef> if input string is…
440 C<--target-architecture=I<str>> and C<--target-os=I<str>> options. Typical usage is:
462 Canonized name of host architecture.
470 Host platform name (concatenated canonized OS name, underscore, and canonized architecture name).
474 Canonized name of target architecture.
482 Target platform name (concatenated canonized OS name, underscore, and canonized architecture name).