digitalmars.D.learn - undefined identifier 'size_t'
- Joshua Hodkinson (21/21) May 03 2016 I have run into an issue compiling with dmd (version 2.071.0), it
- Adam D. Ruppe (1/1) May 03 2016 Is there a file called object.d in your current directory?
- Joshua Hodkinson (3/4) May 03 2016 Not anymore,
I have run into an issue compiling with dmd (version 2.071.0), it
seems that the 'size_t' alias isn't resolving properly. I was
wondering if someone has run into this before and if this is a
bug or something I'm doing wrong? My call to dmd is:
..dmd2\windows\bin\dmd.exe -run hello.d -de -w -unittest
Here is a sample program:
import std.stdio;
void main () {
stdout.writeln("Hello World!");
}
And the ouput:
..dmd2\windows\bin\..\..\src\druntime\import\core\stdc\time.d(111): Error:
undefined identifier 'size_t'
..dmd2\windows\bin\..\..\src\druntime\import\core\stdc\time.d(111): Error:
undefined identifier 'size_t'
..dmd2\windows\bin\..\..\src\druntime\import\core\stdc\wchar_.d(60): Error:
undefined identifier 'size_t'
..dmd2\windows\bin\..\..\src\druntime\import\core\stdc\wchar_.d(68): Error:
undefined identifier 'size_t'
..dmd2\windows\bin\..\..\src\druntime\import\core\stdc\wchar_.d(142): Error:
undefined identifier 'size_t'
..dmd2\windows\bin\..\..\src\druntime\import\core\stdc\wchar_.d(146): Error:
undefined identifier 'size_t'
..dmd2\windows\bin\..\..\src\druntime\import\core\stdc\wchar_.d(152): Error:
undefined identifier 'size_t'
..dmd2\windows\bin\..\..\src\druntime\import\core\stdc\wchar_.d(154): Error:
undefined identifier 'size_t'
..dmd2\windows\bin\..\..\src\druntime\import\core\stdc\wchar_.d(154): Error:
undefined identifier 'size_t'
Thanks
May 03 2016
Is there a file called object.d in your current directory?
May 03 2016
On Wednesday, 4 May 2016 at 01:44:31 UTC, Adam D. Ruppe wrote:Is there a file called object.d in your current directory?Not anymore, Thanks for pointing that out
May 03 2016








Joshua Hodkinson <joshua.hodkinson.42 gmail.com>