-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConfigfile
71 lines (58 loc) · 1.94 KB
/
Configfile
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
67
68
69
70
71
LANGUAGES += c++
COMPILEOPTS += -Wall
COMPILEOPTS += -Wextra
COMPILEOPTS += -Werror
COMPILEOPTS += -std=c++0x
COMPILEOPTS += -pedantic
LANGUAGES += bash
LANGUAGES += h
LANGUAGES += pkgconfig
COMPILEOPTS += -Sobj/proc/version-pc.sed
GENERATE += version.h
GENERATE += version-pc.sed
LIBRARIES += libflo.so
SOURCES += libflo/node.c++
SOURCES += libflo/filenode.c++
SOURCES += libflo/version.c++
SOURCES += libflo/flo.c++
CONFIG += find_library_headers
LIBRARIES += pkgconfig/flo.pc
SOURCES += libflo/flo.pc
BINARIES += flo-canon
DEPLIBS += flo
SOURCES += canon.c++
# These are some legacy tests that were hand-written. They use the
# old file format that used "/" to deliminate widths.
TESTSRC += raw-slash_counter-5.bash
TESTSRC += raw-slash_counter-16.bash
TESTSRC += raw-slash_counter-32.bash
TESTSRC += raw-slash_mod-counter.bash
TESTSRC += raw-slash_fib.bash
TESTSRC += raw-slash_gcd.bash
TESTSRC += raw-slash_adder4.bash
TESTSRC += raw-slash_iomux.bash
TESTSRC += raw-slash_counter-32-known.bash
TESTSRC += raw-slash_counter-250-mwe.bash
TESTSRC += raw-slash_mem.bash
TESTSRC += raw-slash_counter-5-enable.bash
TESTSRC += raw-slash_arsh-counter.bash
# Some hand-written tests that use the new file format with 's
TESTSRC += raw-apos_regshift.bash
TESTSRC += raw-apos_negwidth.bash
TESTSRC += raw-apos_badwidth.bash
TESTSRC += raw-apos_fixdecoupled.bash
TESTSRC += raw-apos_rv32-1stage.bash
TESTSRC += raw-apos_log2.bash
TESTSRC += raw-apos_bignegconst.bash
# These tests run against a (cached) version of Chisel
TESTSRC += chisel_counter-128.bash
# This is designed to run
LIBEXECS += libflo/flo-memcheck
DEPLIBS += flo
SOURCES += memcheck.c++
# This reports the dataflow depth of a flo file.
BINARIES += flo-stat
DEPLIBS += flo
SOURCES += stat.c++
TESTSRC += raw-io.bash
TESTSRC += raw-2io.bash