File: CC.cfg

package info (click to toggle)
torch3 3.1-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,968 kB
  • ctags: 2,743
  • sloc: cpp: 24,245; python: 299; makefile: 153
file content (46 lines) | stat: -rw-r--r-- 775 bytes parent folder | download | duplicates (10)
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
[torch]

# Need more verbosity ?
#verbose = 1

# Packages you want to use
packages = 

# Magik key if you want several libraries
# for the same platform
#magic_key = 

# Compiler, linker and archiver
compiler = CC
linker = CC
archiver = ar -rus

# Your librairies
# (for example "-lm", but not needed on most systems...)
libraries = 

# Your includes
# (for example -I/usr/local/special)
includes = 

# optimize mode
debug = opt
# debug mode
#debug = dbg

# double version
#floating = double
# float version
floating = float

# Debug double mode
dbg_double = -g -Wall -DUSE_DOUBLE -DDEBUG

# Debug float mode
dbg_float = -g -Wall -DDEBUG

# Optimized double mode
opt_double = -fast -xO5 -xarch=native -DUSE_DOUBLE

# Optimized float mode
opt_float = -fast -xO5 -xarch=native