]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgomp/plugin/configfrag.ac
Update copyright years.
[thirdparty/gcc.git] / libgomp / plugin / configfrag.ac
CommitLineData
ca4c3545 1# Plugins for offload execution, configure.ac fragment. -*- mode: autoconf -*-
2#
f1717362 3# Copyright (C) 2014-2016 Free Software Foundation, Inc.
ca4c3545 4#
5# Contributed by Mentor Embedded.
6#
7# This file is part of the GNU Offloading and Multi Processing Library
8# (libgomp).
9#
10# Libgomp is free software; you can redistribute it and/or modify it
11# under the terms of the GNU General Public License as published by
12# the Free Software Foundation; either version 3, or (at your option)
13# any later version.
14#
15# Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
16# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17# FOR A PARTICULAR PURPOSE. See the GNU General Public License for
18# more details.
19#
20# Under Section 7 of GPL version 3, you are granted additional
21# permissions described in the GCC Runtime Library Exception, version
22# 3.1, as published by the Free Software Foundation.
23#
24# You should have received a copy of the GNU General Public License and
25# a copy of the GCC Runtime Library Exception along with this program;
26# see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
27# <http://www.gnu.org/licenses/>.
28
29offload_targets=
30AC_SUBST(offload_targets)
31plugin_support=yes
32AC_CHECK_LIB(dl, dlsym, , [plugin_support=no])
33if test x"$plugin_support" = xyes; then
34 AC_DEFINE(PLUGIN_SUPPORT, 1,
35 [Define if all infrastructure, needed for plugins, is supported.])
ca4c3545 36elif test "x${enable_offload_targets-no}" != xno; then
37 AC_MSG_ERROR([Can't support offloading without support for plugins])
38fi
39
40# Look for the CUDA driver package.
41CUDA_DRIVER_INCLUDE=
42CUDA_DRIVER_LIB=
43AC_SUBST(CUDA_DRIVER_INCLUDE)
44AC_SUBST(CUDA_DRIVER_LIB)
45CUDA_DRIVER_CPPFLAGS=
46CUDA_DRIVER_LDFLAGS=
47AC_ARG_WITH(cuda-driver,
48 [AS_HELP_STRING([--with-cuda-driver=PATH],
49 [specify prefix directory for installed CUDA driver package.
50 Equivalent to --with-cuda-driver-include=PATH/include
51 plus --with-cuda-driver-lib=PATH/lib])])
52AC_ARG_WITH(cuda-driver-include,
53 [AS_HELP_STRING([--with-cuda-driver-include=PATH],
54 [specify directory for installed CUDA driver include files])])
55AC_ARG_WITH(cuda-driver-lib,
56 [AS_HELP_STRING([--with-cuda-driver-lib=PATH],
57 [specify directory for the installed CUDA driver library])])
58if test "x$with_cuda_driver" != x; then
59 CUDA_DRIVER_INCLUDE=$with_cuda_driver/include
60 CUDA_DRIVER_LIB=$with_cuda_driver/lib
61fi
62if test "x$with_cuda_driver_include" != x; then
63 CUDA_DRIVER_INCLUDE=$with_cuda_driver_include
64fi
65if test "x$with_cuda_driver_lib" != x; then
66 CUDA_DRIVER_LIB=$with_cuda_driver_lib
67fi
68if test "x$CUDA_DRIVER_INCLUDE" != x; then
69 CUDA_DRIVER_CPPFLAGS=-I$CUDA_DRIVER_INCLUDE
70fi
71if test "x$CUDA_DRIVER_LIB" != x; then
72 CUDA_DRIVER_LDFLAGS=-L$CUDA_DRIVER_LIB
73fi
74
75PLUGIN_NVPTX=0
76PLUGIN_NVPTX_CPPFLAGS=
77PLUGIN_NVPTX_LDFLAGS=
78PLUGIN_NVPTX_LIBS=
79AC_SUBST(PLUGIN_NVPTX)
80AC_SUBST(PLUGIN_NVPTX_CPPFLAGS)
81AC_SUBST(PLUGIN_NVPTX_LDFLAGS)
82AC_SUBST(PLUGIN_NVPTX_LIBS)
83
84# Get offload targets and path to install tree of offloading compiler.
85offload_additional_options=
86offload_additional_lib_paths=
87AC_SUBST(offload_additional_options)
88AC_SUBST(offload_additional_lib_paths)
89if test x"$enable_offload_targets" != x; then
90 for tgt in `echo $enable_offload_targets | sed -e 's#,# #g'`; do
91 tgt_dir=`echo $tgt | grep '=' | sed 's/.*=//'`
92 tgt=`echo $tgt | sed 's/=.*//'`
93 case $tgt in
94 *-intelmic-* | *-intelmicemul-*)
95 tgt_name=intelmic
96 ;;
97 nvptx*)
98 tgt_name=nvptx
99 PLUGIN_NVPTX=$tgt
100 PLUGIN_NVPTX_CPPFLAGS=$CUDA_DRIVER_CPPFLAGS
101 PLUGIN_NVPTX_LDFLAGS=$CUDA_DRIVER_LDFLAGS
102 PLUGIN_NVPTX_LIBS='-lcuda'
103
104 PLUGIN_NVPTX_save_CPPFLAGS=$CPPFLAGS
105 CPPFLAGS="$PLUGIN_NVPTX_CPPFLAGS $CPPFLAGS"
106 PLUGIN_NVPTX_save_LDFLAGS=$LDFLAGS
107 LDFLAGS="$PLUGIN_NVPTX_LDFLAGS $LDFLAGS"
108 PLUGIN_NVPTX_save_LIBS=$LIBS
109 LIBS="$PLUGIN_NVPTX_LIBS $LIBS"
110 AC_LINK_IFELSE(
111 [AC_LANG_PROGRAM(
112 [#include "cuda.h"],
113 [CUresult r = cuCtxPushCurrent (NULL);])],
114 [PLUGIN_NVPTX=1])
115 CPPFLAGS=$PLUGIN_NVPTX_save_CPPFLAGS
116 LDFLAGS=$PLUGIN_NVPTX_save_LDFLAGS
117 LIBS=$PLUGIN_NVPTX_save_LIBS
118 case $PLUGIN_NVPTX in
119 nvptx*)
120 PLUGIN_NVPTX=0
121 AC_MSG_ERROR([CUDA driver package required for nvptx support])
122 ;;
123 esac
124 ;;
125 *)
126 AC_MSG_ERROR([unknown offload target specified])
127 ;;
128 esac
129 if test x"$offload_targets" = x; then
130 offload_targets=$tgt_name
131 else
132 offload_targets=$offload_targets,$tgt_name
133 fi
134 if test x"$tgt_dir" != x; then
135 offload_additional_options="$offload_additional_options -B$tgt_dir/libexec/gcc/\$(target_alias)/\$(gcc_version) -B$tgt_dir/bin"
136 offload_additional_lib_paths="$offload_additional_lib_paths:$tgt_dir/lib64:$tgt_dir/lib:$tgt_dir/lib32"
137 else
138 offload_additional_options="$offload_additional_options -B\$(libexecdir)/gcc/\$(target_alias)/\$(gcc_version) -B\$(bindir)"
139 offload_additional_lib_paths="$offload_additional_lib_paths:$toolexeclibdir"
140 fi
141 done
142fi
143AC_DEFINE_UNQUOTED(OFFLOAD_TARGETS, "$offload_targets",
daa8f58f 144 [Define to offload targets, separated by commas.])
ca4c3545 145AM_CONDITIONAL([PLUGIN_NVPTX], [test $PLUGIN_NVPTX = 1])
146AC_DEFINE_UNQUOTED([PLUGIN_NVPTX], [$PLUGIN_NVPTX],
147 [Define to 1 if the NVIDIA plugin is built, 0 if not.])