Many small Improvements. Removed old non-functional test structures. Switched to dmd for linking. Fixed bug in CMakeDInformation.cmake that we inhereted from the C version. Added C+D test case, which fails.

This commit is contained in:
Steve King 2010-08-13 21:52:06 -07:00
commit 02d13655b2
151 changed files with 100 additions and 39777 deletions

View file

@ -1,5 +1,8 @@
#elif defined(__dmd__)
# define COMPILER_ID "DMD"
#if defined(__dmd__)
# define COMPILER_ID "dmd"
#elif defined(__ldc__)
# define COMPILER_ID "ldc"
#elif defined(__gdc__)
# define COMPILER_ID "gdc"
@ -14,7 +17,7 @@
array rather than assigning a pointer to a static array. */
char* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
@CMAKE_C_COMPILER_ID_PLATFORM_CONTENT@
@CMAKE_D_COMPILER_ID_PLATFORM_CONTENT@
/*--------------------------------------------------------------------------*/