-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfigure.ac
39 lines (28 loc) · 884 Bytes
/
configure.ac
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
#############################################################
#
#
#
#############################################################
#
# Process this file with autoconf to produce a configure script.
#
# Changelog:
#
#
AC_PREREQ(2.59)
AC_INIT(hpcd, 0.01, [email protected])
#############################################################
# MPI C compiler
#############################################################
AC_SUBST(MPICC)
AC_CHECK_PROGS(MPICC, mpicc cc, $CC)
#############################################################
# D compiler
#############################################################
AC_SUBST(DC)
AC_CHECK_PROGS(DC, dmd gdc, $DC)
# Check libraries needed to link D objects using MPICC
#############################################################
# Write to config file
#############################################################
AC_OUTPUT(make.config)