2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00
Files
build/intel-linux-tools.jam
Dave Abrahams 3d41b3d6f1 Initial checkin
[SVN r11819]
2001-11-29 23:48:46 +00:00

116 lines
2.8 KiB
Plaintext

# (C) Copyright David Abrahams 2001. Permission to copy, use
# modify, sell and distribute this software is granted provided this
# copyright notice appears in all copies. This software is provided
# "as is" without express or implied warranty, and with no claim as
# to its suitability for any purpose.
# Adapted from gcc-tools.jam by Joerg Walter
# Intel root directory set?
if ! $(IA32ROOT)
{
# Compiler version
INTEL_LINUX_VERSION ?= "50" ;
}
# Setup script
INTEL_LINUX_SETUP = ". /opt/intel/compiler"$(INTEL_LINUX_VERSION)"/ia32/bin/iccvars.sh" ;
#### compiler and linker switches ####
# debugging
flags intel-linux CFLAGS <debug-symbols>on : -g ;
flags intel-linux LINKFLAGS <debug-symbols>on : -g ;
# optimizations
flags intel-linux CFLAGS <optimization>off : -O0 ;
flags intel-linux CFLAGS <optimization>space : -O2 ;
flags intel-linux CFLAGS <optimization>speed : -O3 ;
# inlining
# results using -ip are worse than without?
# flags intel-linux CFLAGS <inlining>full : -ip ;
# threading
flags intel-linux CFLAGS <threading>multi : -openmp ;
flags intel-linux LINKFLAGS <threading>multi : -openmp ;
# profiling
flags intel-linux CFLAGS <profiling>on : -p ;
flags intel-linux LINKFLAGS <profiling>on : -p ;
# position independent code
flags intel-linux CFLAGS <shared-linkable>true : -KPIC ;
flags intel-linux LINKFLAGS <shared-linkable>true : -KPIC ;
# dynamic link library
flags intel-linux LINKFLAGS <target-type>DLL : -shared ;
# library linking
flags intel-linux LINKFLAGS <runtime-link>static : -static ;
#### standard settings ####
flags intel-linux UNDEFS <undef> ;
flags intel-linux DEFINES <define> ;
flags intel-linux CFLAGS <cflags> ;
flags intel-linux C++FLAGS <cxxflags> ;
flags intel-linux HDRS <include> ;
flags intel-linux LIBPATH <library-path> ;
flags intel-linux NEEDLIBS <library-file> ;
flags intel-linux FINDLIBS <find-library> ;
#### Cc ####
rule Cc-action
{
intel-linux-Cc-action $(<) : $(>) ;
}
actions intel-linux-Cc-action
{
$(INTEL_LINUX_SETUP)
icc -c -w1 -U$(UNDEFS) -D$(DEFINES) $(CFLAGS) -I"$(HDRS)" -I"$(STDHDRS)" -o "$(<)" "$(>)"
}
#### C++ ####
rule C++-action
{
intel-linux-C++-action $(<) : $(>) ;
}
actions intel-linux-C++-action
{
$(INTEL_LINUX_SETUP)
icc -c -w1 -U$(UNDEFS) -D$(DEFINES) $(CFLAGS) $(C++FLAGS) -I"$(HDRS)" -I"$(STDHDRS)" -o "$(<)" "$(>)"
}
#### Archive ####
rule Archive-action
{
intel-linux-Archive-action $(<) : $(>) ;
}
actions updated together piecemeal intel-linux-Archive-action
{
ar ru "$(<)" "$(>)"
}
#### Link ####
rule Link-action
{
intel-linux-Link-action $(<) : $(>) ;
}
# for icc, we repeat all libraries so that dependencies are always resolved
actions intel-linux-Link-action bind NEEDLIBS
{
$(INTEL_LINUX_SETUP)
icc $(LINKFLAGS) -o "$(<[1])" -L$(LIBPATH) -L$(STDLIBPATH) "$(>)" -l$(FINDLIBS) "$(NEEDLIBS)" "$(NEEDLIBS)"
}