-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.cfg
46 lines (39 loc) · 1.62 KB
/
setup.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
#[install]
#prefix=/opt
[build]
# use this to tell which compiler to use
# (in case multiple c or fortran compilers are installed on your system)
# allowed values are:
# for fortran: g95, gfortran, g77, f90, f77, pgf90, pgf77, ifort
# for c: gcc, cc
#preferred_fortran_compiler=gfortran
#preferred_c_compiler=gcc
# You could use this to use a gfortran compiler installed in
# a non-standard place. This overrides the preferred setting given above.
# The ld_library_path setting is needed to let the fortran compiler
# run properly without having its libraries in the search path.
# The flags should be setup to allow the fortran code to link with c-code
# (hence the no-second-underscore) and should instruct the compiler
# to generate a shared object file (i.e. PIC)
#fortran_compiler="/home/jos/bin/gfortran_personal"
#fortran_ld_library_path="/home/jos/bin/gcc-trunk/lib64"
#fortran_flags="-fno-second-underscore -fPIC"
# Alternatively you could use this to use a g95 compiler installed in
# a non-standard place
#fortran_compiler="/home/jos/bin/g95_32"
#fortran_flags="-fno-second-underscore -fPIC -i4 -r8")
# The c-compiler could be specified manually as well, in case you need it
# (but since I have no alternatives installed for testing I have no
# examples to give you at the moment)
#c_compiler="/dummy/path/some_other_cc"
#c_ld_library_path="/dummy/path/"
#c_flags="--dummy_flag"
[bdist_rpm]
# options used when constructing a binary rpm package for this module
# (this is currently untested)
release = 1
packager = Jos de Kloe <josdekloe@gmail.com>
doc_files = README.md
COPYING.txt
example_programs/
doc/