blob: 9e8286269d57b0dc76f19768d0ac3e2b43e0eebe (
plain) (
blame)
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
72
73
|
GO_LIBRARY()
SRCS(
accuracy_string.go
arith.go
arith_decl.go
decimal.go
doc.go
float.go
floatconv.go
floatmarsh.go
ftoa.go
int.go
intconv.go
intmarsh.go
nat.go
natconv.go
natdiv.go
prime.go
rat.go
ratconv.go
ratmarsh.go
roundingmode_string.go
sqrt.go
)
GO_TEST_SRCS(
arith_test.go
bits_test.go
calibrate_test.go
decimal_test.go
float_test.go
floatconv_test.go
floatmarsh_test.go
gcd_test.go
hilbert_test.go
int_test.go
intconv_test.go
intmarsh_test.go
link_test.go
nat_test.go
natconv_test.go
prime_test.go
rat_test.go
ratconv_test.go
ratmarsh_test.go
sqrt_test.go
)
GO_XTEST_SRCS(
alias_test.go
example_rat_test.go
example_test.go
floatexample_test.go
)
IF (ARCH_X86_64)
SRCS(
arith_amd64.go
arith_amd64.s
)
ENDIF()
IF (ARCH_ARM64)
SRCS(
arith_arm64.s
)
ENDIF()
END()
RECURSE(
)
|