-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.template.cfg
67 lines (62 loc) · 2.42 KB
/
site.template.cfg
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
60
61
62
63
64
65
66
# This file provides configuration information about non-Python dependencies for
# qr_mumps.py.
#
# The format of the file is that of the standard library's ConfigParser module.
#
# http://www.python.org/doc/current/lib/module-ConfigParser.html
#
# library_dirs
# List of directories to add to the library search path when compiling
# extensions with this dependency. Use the character given by os.pathsep
# to separate the items in the list. On UN*X-type systems (Linux, FreeBSD,
# OS X):
# library_dirs = /usr/lib:/usr/local/lib
# On Windows:
# library_dirs = c:\mingw\lib,c:\atlas\lib
#
# include_dirs
# List of directories to add to the header file earch path.
# include_dirs = /usr/include:/usr/local/include
#
# All libraries used **must** be dynamic.
[CODE_GENERATION]
# log file name **without** extension (by default, we use '.log')
log_name = generator
# DEBUG/INFO/WARNING/ERROR/CRITICAL
log_level = DEBUG
console_log_level = DEBUG
file_log_level = DEBUG
# 32bits/64bits
# if left blank, we use INT64_t on 64 bits platforms and INT32_t on 32 bits platforms
DEFAULT_INDEX_TYPE =
# Do you want to generate the .c files from Cython?
use_cython = true
# Use debug symbols?
use_debug_symbols = false
# DEFAULT
# -------
# The settings given here will apply to all other sections if not overridden.
# This is a good place to add general library and include directories like
# /usr/local/{lib,include}
[DEFAULT]
library_dirs = /usr/local/lib
include_dirs = /usr/local/include
# QR_MUMPS
# --------
# qr_mumps is a shared QR factorization library.
# You can install it via Homebrew (see README.txt) or from its source available at
# http://buttari.perso.enseeiht.fr/qr_mumps/#download
# Once installed,
# `library_dirs` specifies the name of a directory where qr_mumps' shared objects are stored
# `include_dirs` specifies the name of a directory where the include files from qr_mumps are located
[QR_MUMPS]
library_dirs = /Users/syarra/work/VirtualEnvs/nlpy_new/programs/qr_mumps_svn/lib
include_dirs = /Users/syarra/work/VirtualEnvs/nlpy_new/programs/qr_mumps_svn/include
# CYSPARSE (optional)
# -------------------
# The directory provided below is the one that contains the source code of
# CySparse.
# The most recent version can be obtained via
# git clone [email protected]:PythonOptimizers/cysparse.git
[CYSPARSE]
cysparse_rootdir = /Users/syarra/work/VirtualEnvs/nlpy_new/programs/cysparse