Offload int[] to byte[].
[SquirrelJME.git] / assets / developer-notes / stephanie-gawroriski / 2016 / 10 / 28.mkd
blob127a47200dc03a48113ab51cf958c27028d437a9
1 # 2016/10/28
3 ## 12:22
5 Looks like GCJ is getting the axe in GCC 7. I do not use GCJ because
6 it is a bit out of date (only supported Java 5), but the AOT compilation
7 it could do is rather useful.
9 ## 13:02
11 My new bootstrap system is much faster now though, because it will no longer
12 recompile every module regardless if it changed or not. This will save me some
13 time when I change things around in it. The things being changed around would
14 essentially be the whole build system so to speak.
16 ## 13:11
18 I believe what I can do is have a simple deterministic map/set that is sorted.
19 I do already have `SortedTreeMap` and `SortedTreeSet` (which is very much
20 faster), but this one would be made for simplicity.
22 ## 17:09
24 So what I can do is symlink from support libraries right into the build
25 directory and setup the manifest accordingly. This way I do not have to
26 implement non-build namespaces in the bootstrap system.
28 ## 18:15
30 Since I did the symlinking, I can just use the sorted collections I wrote
31 before without duplicating the work.
33 ## 21:18
35 So things are looking a bit cleaning some of the projects around due to the
36 refactoring.