-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
49 lines (39 loc) · 811 Bytes
/
.gitignore
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
## ignore the following directories
build/
hotspot/
test/
.jcheck/
## ignore the following because we're not targetting for them
src/os/*
!src/os/linux
!src/os/posix
src/os_cpu/*
!src/os_cpu/linux_x86
src/cpu/*
!src/cpu/x86
src/share/tools/*
!src/share/tools/hsdis
make/aix/
make/solaris/
make/windows/
make/bsd/
## also ignore some classes only used for the SA (for now include the whole agent dir)
## agent/src/os/*
## !agent/src/os/linux
agent/
## some dirs in run (created automatically) must also be renamed
bdavm/run/scratch/
## ignore all logs file from possbile hs errors
*.log
*.txt
*.out
## ignore all class files from possible javac compilations
*.class
## ignore emacs created files .el
*.el
## ignore .ede file for emacs
*.ede
## finally ignore the Global Tags' files
GTAGS
GRTAGS
GPATH