mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-13 06:28:52 +03:00

* Fixed a minor linking order mishap * * Added an command line option -annotate * * Fixed some problems with running optimizations * * Added std.stdio and dependencies to lphobos (still not 100% working, but compiles and links) * * Fixed problems with passing aggregate types to variadic functions * * Added initial code towards full GC support, currently based on malloc and friends, not all the runtime calls the GC yet for memory * * Fixed problems with resolving nested function context pointers for some heavily nested cases * * Redid function argument passing + other minor code cleanups, still lots to do on this end... *
38 lines
483 B
D
38 lines
483 B
D
module phobos;
|
|
|
|
import
|
|
std.array,
|
|
std.base64,
|
|
std.ctype,
|
|
std.format,
|
|
std.intrinsic,
|
|
std.math,
|
|
std.moduleinit,
|
|
std.outofmemory,
|
|
std.stdarg,
|
|
std.stdint,
|
|
std.stdio,
|
|
std.string,
|
|
std.thread,
|
|
std.traits,
|
|
std.uni,
|
|
std.utf,
|
|
|
|
std.c.fenv,
|
|
std.c.locale,
|
|
std.c.math,
|
|
std.c.process,
|
|
std.c.stdarg,
|
|
std.c.stddef,
|
|
std.c.stdio,
|
|
std.c.stdlib,
|
|
std.c.string,
|
|
std.c.time;
|
|
|
|
version(linux) {
|
|
import
|
|
std.c.linux.linux,
|
|
std.c.linux.linuxextern,
|
|
std.c.linux.pthread,
|
|
std.c.linux.socket;
|
|
}
|