File: .gitmodules

package info (click to toggle)
moarvm 2024.09%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 43,548 kB
  • sloc: cpp: 378,682; ansic: 293,618; perl: 8,274; java: 2,682; python: 1,296; makefile: 816; sh: 292
file content (36 lines) | stat: -rw-r--r-- 1,341 bytes parent folder | download | duplicates (2)
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
[submodule "3rdparty/libuv"]
	path = 3rdparty/libuv
	url = https://github.com/libuv/libuv.git
[submodule "3rdparty/dyncall"]
	path = 3rdparty/dyncall
	url = https://github.com/MoarVM/dyncall.git
[submodule "3rdparty/dynasm"]
	path = 3rdparty/dynasm
	url = https://github.com/MoarVM/dynasm.git
[submodule "3rdparty/libtommath"]
	path = 3rdparty/libtommath
	url = https://github.com/MoarVM/libtommath
[submodule "3rdparty/cmp"]
	path = 3rdparty/cmp
	url = https://github.com/MoarVM/cmp.git
[submodule "3rdparty/libatomicops"]
	path = 3rdparty/libatomicops
	url = https://github.com/MoarVM/libatomic_ops
[submodule "3rdparty/ryu"]
	path = 3rdparty/ryu
	url = https://github.com/MoarVM/ryu
	ignore = untracked
[submodule "3rdparty/mimalloc"]
	path = 3rdparty/mimalloc
	url = https://github.com/microsoft/mimalloc.git
	ignore = untracked

# adding `shallow = true` to each submodule would save about 12M on a
# git clone --recursive
#
# however, adding it tickles a bug in git not fixed until 2.32.0, in that with
# `shallow = true` here, `git submodule --quiet update` *isn't* "--quiet". If
# `shallow = true` is found here, then the `--quiet` flag is not passed down
# from `git submodule` to `git fetch` because `git submodule` takes a different
# code path from the default case. *Even though* the submodule fetch it invokes
# isn't shallow!