Skip to content

Commit b2c3cdc

Browse files
committed
basic memory layout manager
1 parent 4329d43 commit b2c3cdc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+24038
-0
lines changed

.gitignore

Lines changed: 333 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,333 @@
1+
# Prerequisites
2+
*.d
3+
4+
# Compiled Object files
5+
*.slo
6+
*.lo
7+
*.o
8+
*.obj
9+
10+
# Precompiled Headers
11+
*.gch
12+
*.pch
13+
14+
# Compiled Dynamic libraries
15+
*.so
16+
*.dylib
17+
*.dll
18+
19+
# Fortran module files
20+
*.mod
21+
*.smod
22+
23+
# Compiled Static libraries
24+
*.lai
25+
*.la
26+
*.a
27+
*.lib
28+
29+
# Executables
30+
*.exe
31+
*.out
32+
*.app
33+
34+
# Latex
35+
*.aux
36+
*.glo
37+
*.idx
38+
*.log
39+
*.toc
40+
*.ist
41+
*.acn
42+
*.acr
43+
*.alg
44+
*.bbl
45+
*.blg
46+
*.dvi
47+
*.glg
48+
*.gls
49+
*.ilg
50+
*.ind
51+
*.lof
52+
*.lot
53+
*.maf
54+
*.mtc
55+
*.mtc1
56+
*.out
57+
*.synctex.gz
58+
59+
# Custom
60+
.directory
61+
*.lyx~
62+
*.idea/
63+
idea/
64+
*.Po
65+
*.Plo
66+
67+
.metadata
68+
bin/
69+
tmp/
70+
*.tmp
71+
*.bak
72+
*.swp
73+
*~.nib
74+
local.properties
75+
.settings/
76+
.loadpath
77+
.recommenders
78+
79+
# Eclipse Core
80+
.project
81+
82+
# External tool builders
83+
.externalToolBuilders/
84+
85+
# Locally stored "Eclipse launch configurations"
86+
*.launch
87+
88+
# PyDev specific (Python IDE for Eclipse)
89+
*.pydevproject
90+
91+
# CDT-specific (C/C++ Development Tooling)
92+
.cproject
93+
94+
# JDT-specific (Eclipse Java Development Tools)
95+
.classpath
96+
97+
# Java annotation processor (APT)
98+
.factorypath
99+
100+
# PDT-specific (PHP Development Tools)
101+
.buildpath
102+
103+
# sbteclipse plugin
104+
.target
105+
106+
# Tern plugin
107+
.tern-project
108+
109+
# TeXlipse plugin
110+
.texlipse
111+
112+
# STS (Spring Tool Suite)
113+
.springBeans
114+
115+
# Code Recommenders
116+
.recommenders/
117+
118+
119+
debug/
120+
release/
121+
122+
123+
124+
125+
126+
127+
# Created by .ignore support plugin (hsz.mobi)
128+
### ArchLinuxPackages template
129+
*.tar
130+
*.tar.*
131+
*.jar
132+
*.exe
133+
*.msi
134+
*.zip
135+
*.tgz
136+
*.log
137+
*.log.*
138+
*.sig
139+
140+
pkg/
141+
src/
142+
### CMake template
143+
CMakeCache.txt
144+
CMakeFiles
145+
CMakeScripts
146+
Makefile
147+
cmake_install.cmake
148+
install_manifest.txt
149+
CTestTestfile.cmake
150+
### Autotools template
151+
# http://www.gnu.org/software/automake
152+
153+
Makefile.in
154+
155+
# http://www.gnu.org/software/autoconf
156+
157+
/autom4te.cache
158+
/autoscan.log
159+
/autoscan-*.log
160+
/aclocal.m4
161+
/compile
162+
/config.h.in
163+
/configure
164+
/configure.scan
165+
/depcomp
166+
/install-sh
167+
/missing
168+
/stamp-h1
169+
### Dropbox template
170+
# Dropbox settings and caches
171+
.dropbox
172+
.dropbox.attr
173+
.dropbox.cache
174+
### LibreOffice template
175+
# LibreOffice locks
176+
.~lock.*#
177+
### Linux template
178+
*~
179+
180+
# temporary files which can be created if a process still has a handle open of a deleted file
181+
.fuse_hidden*
182+
183+
# KDE directory preferences
184+
.directory
185+
186+
# Linux trash folder which might appear on any partition or disk
187+
.Trash-*
188+
### LyX template
189+
# Ignore LyX backup and autosave files
190+
# http://www.lyx.org/
191+
*.lyx~
192+
*.lyx#
193+
### Eclipse template
194+
195+
.metadata
196+
bin/
197+
tmp/
198+
*.tmp
199+
*.bak
200+
*.swp
201+
*~.nib
202+
local.properties
203+
.settings/
204+
.loadpath
205+
.recommenders
206+
207+
# Eclipse Core
208+
.project
209+
210+
# External tool builders
211+
.externalToolBuilders/
212+
213+
# Locally stored "Eclipse launch configurations"
214+
*.launch
215+
216+
# PyDev specific (Python IDE for Eclipse)
217+
*.pydevproject
218+
219+
# CDT-specific (C/C++ Development Tooling)
220+
.cproject
221+
222+
# JDT-specific (Eclipse Java Development Tools)
223+
.classpath
224+
225+
# Java annotation processor (APT)
226+
.factorypath
227+
228+
# PDT-specific (PHP Development Tools)
229+
.buildpath
230+
231+
# sbteclipse plugin
232+
.target
233+
234+
# Tern plugin
235+
.tern-project
236+
237+
# TeXlipse plugin
238+
.texlipse
239+
240+
# STS (Spring Tool Suite)
241+
.springBeans
242+
243+
# Code Recommenders
244+
.recommenders/
245+
### C++ template
246+
# Compiled Object files
247+
*.slo
248+
*.lo
249+
*.o
250+
*.obj
251+
252+
# Precompiled Headers
253+
*.gch
254+
*.pch
255+
256+
# Compiled Dynamic libraries
257+
*.so
258+
*.dylib
259+
*.dll
260+
261+
# Fortran module files
262+
*.mod
263+
*.smod
264+
265+
# Compiled Static libraries
266+
*.lai
267+
*.la
268+
*.a
269+
*.lib
270+
271+
# Executables
272+
*.exe
273+
*.out
274+
*.app
275+
### C template
276+
# Object files
277+
*.o
278+
*.ko
279+
*.obj
280+
*.elf
281+
282+
# Precompiled Headers
283+
*.gch
284+
*.pch
285+
286+
# Libraries
287+
*.lib
288+
*.a
289+
*.la
290+
*.lo
291+
292+
# Shared objects (inc. Windows DLLs)
293+
*.dll
294+
*.so
295+
*.so.*
296+
*.dylib
297+
298+
# Executables
299+
*.exe
300+
*.out
301+
*.app
302+
*.i*86
303+
*.x86_64
304+
*.hex
305+
306+
# Debug files
307+
*.dSYM/
308+
*.su
309+
310+
311+
# Custom
312+
nbproject/
313+
/Debug/
314+
.settings/
315+
/development/parser/include/stack.hh
316+
/development/parser/include/scanner.hxx
317+
/development/parser/include/location.hh
318+
/development/parser/include/position.hh
319+
/development/parser/include/parser.hxx
320+
/development/parser/output/wxwidget
321+
/development/parser/source/scanner.cxx
322+
/development/parser/source/parser.cxx
323+
/binutils_untouched/
324+
/binutils/
325+
326+
/development/buildenv/doxygen/man/
327+
/development/buildenv/doxygen/html/
328+
/development/buildenv/doxygen/latex/
329+
/toolchain/tc/
330+
/toolchain/wxWidgets/
331+
/toolchain/flex/
332+
/toolchain/crosstool-ng/
333+
/toolchain/bison-3.0.4/

.gitmodules

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[submodule "toolchain/crosstool-ng"]
2+
url = toolchain/crosstool-ng
3+
[submodule "toolchain/wxWidgets"]
4+
path = toolchain/wxWidgets
5+
url = https://github.com/wxWidgets/wxWidgets.git

0 commit comments

Comments
 (0)