-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsite.template.cfg
More file actions
59 lines (55 loc) · 1.93 KB
/
site.template.cfg
File metadata and controls
59 lines (55 loc) · 1.93 KB
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
# This file provides configuration information about non-Python dependencies for
# 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 = false
# Use debug symbols?
use_debug_symbols = false
# Defaults
# ========
# 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
[MUMPS]
# are the .so compiled in 32 or 64bits?
# by default mumps compiles in 64 bits on 64 bits architecture
# unless you compile with the option -DINTSIZE64, MUMPS expects 32-bit integers by default
# false/true
mumps_compiled_in_64bits = false
library_dirs = /usr/local/lib
include_dirs = /usr/local/include
# Optional
# [CYSPARSE]
# cysparse_rootdir = /Users/syarra/work/VirtualEnvs/nlpy_new/programs/cysparse