License: Other
Language: D
http://dusers.dip.jp/modules/wiki/?Libraries/Phobos を参考に、手元で試しに phobos を改造してみる。 "Phobosのテスト" の項に沿って試しているところ。 1 cd druntime 2 make -f win32.mak import - エラーが出た。deprecated な関数を2つ削除したら成功した。 3 copy /Y /B src\rt\minit.obj minit.obj 4 make -f win32.mak lib\gcstub.obj - エラーが出た。同上。 5 make -f win32.mak target - エラーが出た。同じ対処をしたがまだエラーが出た。更に DMD を 2.060 から 2.061 にしたら成功した。(他のもこれで成功したのでは...) 6 cd ../phobos 7 make -fwin32.mak unittest - エラーが出た。 -- dmd -O -w -d -property -L/co -c -unittest -ofunittest1.obj std\stdio.d std\stdiobase.d std\string.d std\format.d std\file.d -- std\traits.d(187): Error: static assert ("std.core" == "core") is false ----- DRuntime: Runtime Library for the D Programming Language ======================================================== This is DRuntime. It is the low-level runtime library backing the D programming language. DRuntime is typically linked together with Phobos in a release such that the compiler only has to link to a single library to provide the user with the runtime and the standard library. Purpose ------- DRuntime is meant to be an abstraction layer above the compiler. Different compilers will likely have their own versions of DRuntime. While the implementations may differ, the interfaces should be the same. Features -------- The runtime library provides the following: * The Object class, the root of the class hierarchy. * The associative array implementation. * Type information and RTTI. * Common threading and fiber infrastructure. * Synchronization and coordination primitives. * Exception handling and stack tracing. * Garbage collection interface and implementation. * Program startup and shutdown routines. * Low-level math intrinsics and support code. * Interfaces to standard C99 functions and types. * Atomic load/store and binary operations. * CPU detection/identification for x86. * System-independent time/duration functionality. * D ABI demangling helpers. * Low-level bit operations/intrinsics. Licensing --------- See the LICENSE file for licensing information.
Sourcerank | 4 |
Repository Size | 3 MB |
Stars | 0 |
Forks | 0 |
Watchers | 1 |
Open issues | 0 |
Dependencies | 0 |
Contributors | 43 |
Tags | 0 |
Created | |
Last updated | |
Last pushed |
Something wrong with this page? Make a suggestion
Last synced: 2016-12-15 20:49:40 UTC
Login to resync this repository