-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfigure.ac
59 lines (50 loc) · 1.74 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.63])
AC_INIT(s3fp, 0.1, [email protected])
AM_INIT_AUTOMAKE(s3fp, 0.1)
AC_OUTPUT(
Makefile
src/Makefile
examples/Makefile
examples/lib/Makefile
examples/lib/div_geometric_primitives/Makefile
examples/tests-fp-error/Makefile
examples/tests-fp-error/balanced-reduction/Makefile
examples/tests-fp-error/imbalanced-reduction/Makefile
examples/tests-fp-error/kahan-sum/Makefile
examples/tests-fp-error/rigidBody1/Makefile
examples/tests-div-detection/Makefile
examples/tests-div-detection/pp_3x3/Makefile
examples/tests-div-detection/pp_4x4/Makefile
examples/tests-div-detection/pc_3x3/Makefile
examples/tests-div-detection/pc_4x4/Makefile
examples/tests-div-detection/ps_4x4/Makefile
examples/tests-div-detection/ps_5x5/Makefile
examples/tests-div-detection/simple_convex_hull/Makefile
examples/tests-div-detection/inc_convex_hull/Makefile
examples/tests-div-detection/cpu-scan-naive-opt-last/Makefile
examples/tests-div-detection/cpu-scan-naive-opt-sum/Makefile
examples/tests-div-detection/cpu-scan-harris-opt-last/Makefile
examples/tests-div-detection/cpu-scan-harris-opt-sum/Makefile
tools/Makefile)
# AC_CONFIG_SRCDIR([scripts/utils/show_input_to_errors.cpp])
# AC_CONFIG_HEADERS([config.h])
# Checks for programs.
AC_PROG_CXX
AC_PROG_CC
# Checks for libraries.
AC_ENABLE_SHARED
LT_INIT
# Checks for header files.
AC_CHECK_HEADERS([float.h inttypes.h stdlib.h string.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_INLINE
AC_TYPE_INT64_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T
# Checks for library functions.
AC_FUNC_MALLOC
AC_CHECK_FUNCS([memset sqrt])
AC_OUTPUT