aboutsummaryrefslogtreecommitdiff
path: root/build/cxx/intel/configure
blob: b4af9bd3f97d8e4029e4ab0cde82bbea4b36d686 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#! /usr/bin/env bash

# file      : build/cxx/intel/configure
# author    : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2004-2011 Code Synthesis Tools CC
# license   : GNU GPL v2; see accompanying LICENSE file

# $1  out file
# $2  optimize (y/n)
# $3  cxx_extra_options
# $4  cxx_ld_extra_options
#
# bld_root     - build root
# project_name - project name
#


source $bld_root/dialog.bash

$echo
$echo
$echo "configuring '$project_name'"
$echo
$echo

$echo
$echo "Please enter the icc binary you would like to use, for example "
$echo "'/opt/intel_cc_80/bin/icpc'."
$echo

cxx_intel=`read_path --command icpc`

# Pass cxx_extra_options and cxx_ld_extra_options since those
# can affect the search paths (e.g., -m32).
#
cxx_intel_libraries=`$cxx_intel $3 $4 -print-search-dirs | sed -e 's/libraries: =//p' -e d`

# Intel optimizes by default.
#
optimization=-O0

if [ "$2" == "y" ]; then

  $echo
  $echo "Please select the optimization level you would like to use:"
  $echo
  $echo "(1) -O1 [Enable optimizations.]"
  $echo "(2) -O2 [Same as -O1.]"
  $echo "(3) -O3 [As -O2 plus more aggressive optimizations that may not"
  $echo "         improve performance for all programs.]"
  $echo

  optimization=`read_option "-O1 -O2 -O3" "-O2"`
fi

echo "cxx_intel := $cxx_intel"                          > $1
echo "cxx_intel_libraries := $cxx_intel_libraries"     >> $1
echo "cxx_intel_optimization_options := $optimization" >> $1