Common files for building various examples. Should not be used directly. But if you copy an example to other place this folder should be copied also and should have the same relative path for copied example.
Build Instructions
Note: Some of the following directions refer to a shell window. This refers
to the command prompt environment/window normally used on your system:
cmd.exe command prompt window for Windows* systems
sh, bash, csh, ksh, etc. (or compatible) shell window for Windows*, Linux*or OS X* systems
Set up the environment for using Intel TBB:
To set up the environment for Windows* OS:
It is strongly recommended to set up the environment when installing Intel TBB.
Do this by selecting the appropriate check-box during the install. However, if the environment is not set up
during installation, or you wish to build for an alternate architecture or Microsoft* Visual Studio* version,
it may be set up, for a given type of shell window, by using one of the following commands:
For cmd.exe (command prompt):
<installdir>/bin/tbbvars.bat (arch) [vs]
where:
(arch) argument represents target architecture. Its possible values are 'ia32' or 'intel64'.
[vs] argument represents target version of Microsoft* Visual Studio*. Its possible values are:
'vs<msvs_version>' - to use TBB with Microsoft* Visual Studio* <msvs_version> runtime DLLs, e.g.: tbbvars intel64 vs2015 Note: for the most up to date supported versions of Microsoft* Visual Studio*, see the release notes.
'all' - to use TBB statically linked with Microsoft Visual C++ runtime.
If [vs] is not set the 'all' value will be used by default.
To set up the environment for Linux* OS and OS X*:
The environment may be set up, for a given type of shell window, by using one of the following commands:
(arch) argument represents target architecture. Its possible values are 'ia32' or 'intel64'.
[platform] argument represents target platform. Its possible values are 'linux' or 'android'.
[TBBROOT_detection_mode] argument represents TBBROOT path detection method. Its only possible value is 'auto_tbbroot'. In this case the environment variable TBBROOT is detected automatically by using the tbbvars script directory path.
Environment setup need only be performed once per shell window to be used.
Always source tbbvars.sh or tbbvars.csh rather than executing them directly.
If the arguments to the sourced script are ignored (consult documentation for your shell) the alternative way to specify target is environment variables COMPILERVARS_ARCHITECTURE to pass (arch) to the script and COMPILERVARS_PLATFORM to pass [platform].
Build each example by using one of the following methods:
To build by using a Microsoft* Visual Studio* project (Windows* systems):
Identify the solution (*.sln) file for the example you wish to build and run. The *.sln file for each example is in the example's msvs sub-directory.
Open the project by using one of the following methods:
Navigate to the *.sln file from My Computer, by using Windows Explorer, or by using another file browser. Double-click the *.sln file to invoke Microsoft* Visual Studio* and open the project.
Invoke Microsoft* Visual Studio* from the Start menu and use the "Open Project" dialog to navigate to and open the project.
Press <ctrl-F5> to build and run the example.
If you copied an example to another place separately from libraries you need to
set %TBBROOT% variable pointing to <installdir> folder.
To build by using a Xcode* IDE project (OS X* systems):
Note: XCode project instructions are not applicable for the Intel TBB Sample Bundle for Intel® System Studio
because Intel System Studio does not support OS X. For additional information, see the
Release Notes.
Identify the project (*.xcodeproj) file for the example you wish to build and run. The *.xcodeproj file is in the example's xcode sub-directory.
Open the project by using one of the following methods:
Navigate to the *.xcodeproj file by using the Finder.Double-click the *.xcodeproj file to invoke the Xcode* IDE and open the project.
Invoke the Xcode* IDE and use the "File -> Open" dialog to navigate to and open the project.
Press <Apple-R>, or press the "Build and Go" button in the toolbox, to build and run the example.
To build by using a Makefile (Windows*, Linux* or OS X* systems):
Open a shell window
For Windows* systems, make sure this shell window has the proper environment
defined for use with Microsoft* Visual Studio*. Such shell can be invoked from the Start menu, under Microsoft* Visual Studio*, Microsoft* Visual Studio Tools*, Microsoft* Visual Studio* Command Prompt.
Set up the environment in this shell window for use with Intel TBB.
See above for how to set up the environment for Windows*, Linux* or OS X* systems.
Unless you installed Intel TBB yourself, you may not have write permissions to the directory
containing the example. In this case, make a copy of the example, and use the copy for the following steps.
In the shell window, navigate to the directory for the example
(or to the directory for the copy of the example if you made one in the previous step).
Use one or more of the following commands to build and run the example.
Here, make refers to the make command normally used on your system: this could be
nmake, gmake, or make on Windows* systems, or make or gmake on Linux* or OS X* systems.
make
Default build and run. Equivalent to 'make release test'.
make release
Compile and link against the release version of Intel TBB runtime library. The resulting executable is left in the directory for the example.
make debug
Compile and link against the debug version of Intel TBB runtime library. The resulting executable is left in the directory for the example.
make test
Run an executable previously produced by one of the above commands.
make [(above options or targets)] CXX={icl, icc}
Build and run as above, but use Intel® C++ Compiler instead of default, native compilers (e.g., icl instead of cl.exe on Windows* systems, or icc instead of g++ on Linux* or OS X* systems).
make [(above options or targets)] offload=mic
Build and run the offload version of an example for Intel® Many Integrated Core (Intel® MIC) Architecture.
Note: Only Intel® MIC Architecture with Linux* based host is currently supported.
make clean
Remove any executables or intermediate files produced by the above commands.
Up to parent directory (available only in the Intel® Parallel Studio and Intel® System Studio Online Samples packages and the open-source version of Intel TBB)
Legal Information:
Optimization Notice
Intel's compilers may or may not optimize to the same
degree for non-Intel microprocessors for optimizations that
are not unique to Intel microprocessors. These optimizations
include SSE2, SSE3, and SSSE3 instruction sets and other
optimizations. Intel does not guarantee the availability,
functionality, or effectiveness of any optimization on
microprocessors not manufactured by Intel.
Microprocessor-dependent optimizations in this product are
intended for use with Intel microprocessors. Certain
optimizations not specific to Intel microarchitecture are
reserved for Intel microprocessors. Please refer to the
applicable product User and Reference Guides for more
information regarding the specific instruction sets covered by
this notice.