Viewing profile — mpixorg
mpixorg
HN member- Joined
- Wed, Jun 03, 2015, 3:25 PM UTC
- HN karma
- 30
- Public activity
- 9 items
- HN profile
- View on Hacker News ↗
About mpixorg
No profile information was provided.
Recent public activity
-
comment
Comment #10927810
Another interesting comparison between clang/llvm and cparser/firm has to do with their respective preprocessors and underlying AST structures. cparser's entity_t and related struc…
-
comment
Comment #9714872
A quick update regarding toolchain work and release time: we have now taught binutils and gcc to do the right thing for the target with respect to weak symbols and GOT entries. Tha…
-
comment
Comment #9655721
Almost forgot to mention: the current cross-compiler is based on gcc-4.6.4 since that is the last modern gcc which does not depend on C++, and is therefore easier and faster to bui…
-
comment
Comment #9655496
The general design allows for building the toolchain in its entirety (libc, libcgcc, libstdc++) independent of the runtime components. The idea behind this is that changes to the t…
-
comment
Comment #9655208
Actually no... the application makes all calls using utf-8, and is expected to provide it in a well-formed manner so that the system call layer could convert it to utf-16. In the r…
-
comment
Comment #9654942
There are two main scenarios for fork(), and the lack of distinction between them is what I suspect led to some of the articulated worries. The first scenario, in the spirit of tra…
-
comment
Comment #9654068
With FILE_SHARE_DELETE there shouldn't be any particular problem, but I certainly want to test this with the posix flags you had in mind. Do you happen to have a minimal example th…
-
comment
Comment #9653959
The overall approach is to license cross-platform tools under the MIT license, and the Windows-specific runtime components under GPLv2 and GPLv3 that could be supplemented with a c…
-
comment
Comment #9653238
The project's pre-pre-alpha will be out very soon (in a week or less) and will already give a nice taste of its design and speed. The primary focus thus far has been major challeng…