forked from lfortran/lfortran
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
220 lines (197 loc) · 3.44 KB
/
.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
# LFortran
src/bin/lfortran
src/bin/cpptranslate
src/bin/parse
src/bin/parse2
src/bin/parse3
src/lfortran/parser/parser.output
tests/output
src/lfortran/tests/test_asm
src/lfortran/tests/test_ast
src/lfortran/tests/test_llvm
src/lfortran/tests/test_parse
src/lfortran/tests/test_pickle
src/lfortran/tests/test_stacktrace*
src/lfortran/tests/test_serialization*
src/lfortran/tests/test_cwrapper
src/lfortran/tests/test_serialization
src/lfortran/tests/test_lfortran
src/lfortran/tests/write32
src/lfortran/tests/write32.asm
src/lfortran/tests/subroutines32
src/lfortran/tests/subroutines_args32
src/lfortran/tests/print32
src/lfortran/tests/print_integer
src/lfortran/tests/cmp32
src/lfortran/tests/x
src/lfortran/tests/ref_pickle.txt.new
# fortran_parser
build-gfortran
build-lfort
## CMake
CMakeCache.txt
CMakeFiles/
Makefile
CTestTestfile.cmake
cmake_install.cmake
install_manifest.txt
Testing/Temporary
CPackConfig.cmake
CPackSourceConfig.cmake
_CPack_Packages
/CMakeSettings.json
## libraries
*.a
*.a.*
*.so
*.so.*
*.s
*.ll
*.dylib
*.dSYM
## Generated files
version
lfortran/ast/ast.py
lfortran/asr/asr.py
lfortran/parser/fortran.tokens
lfortran/parser/fortran.interp
lfortran/parser/fortranLexer.py
lfortran/parser/fortranLexer.tokens
lfortran/parser/fortranLexer.interp
lfortran/parser/fortranParser.py
lfortran/parser/fortranVisitor.py
src/lfortran/parser/parser.tab.cc
src/lfortran/parser/parser.tab.hh
src/lfortran/parser/tokenizer.cpp
src/lfortran/parser/preprocessor.cpp
src/lfortran/ast.h
src/lfortran/asr.h
src/libasr/asr.h
src/libasr/ast.h
src/libasr/wasm_visitor.h
src/libasr/pass/intrinsic_function_registry_util.h
src/lfortran/config.h
src/libasr/config.h
share/jupyter/kernels/fortran/kernel.json
src/runtime/*.o.empty.c
src/runtime/tests/test_abs
src/runtime/tests/test_bit
src/runtime/tests/test_cos
src/runtime/tests/test_hyperbolics
src/runtime/tests/test_iso_c_binding
src/runtime/tests/test_iso_fortran_env
src/runtime/tests/test_kind
src/runtime/tests/test_sin
src/runtime/tests/test_sin2
src/runtime/tests/test_strings
src/runtime/tests/test_tan
integration_tests/test-*
input.txt
input
inst/
src/libasr/libasr.a.*
*.html
*.o.tmp.c
*.o.tmp.cpp
*.tmp.f90
*.clj
pass_*.f90
pass_json_*.json
pass_tree_*.txt
*_lines.txt
*_ldd.txt
*_lines.dat.txt
### https://raw.github.com/github/gitignore/218a941be92679ce67d0484547e3e142b2f5f6f0/Global/macOS.gitignore
# General
.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
# Python
## Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
## C extensions
*.so
## Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
*.dat
*.mod
MANIFEST
## PyTest
.pytest_cache/
## Jupyter
*-checkpoint.ipynb
## Editor Files
.vscode/
.vs/
*~
## Build Files
*/bin/lfortran
output
*.o
*.out
*.mod
*.smod
*.js
*.wasm
*.data
/.ccls-cache/
.cache/
ext/
extsrc/
tmp/
tmpdebug/
gentests/
*.tlog
*.filters
*.obj
*.exe
*.exp
*.lib
*.vcxproj
*.recipe
*.sln
*.dll
## Ninja
build.ninja
.ninja_deps
.ninja_log
/compile_commands.json
## Docs
doc/man/lfortran.1
!doc/src/javascripts/*.js
!pass_array_by_data_*.f90