On 2011-03-28 16:49, Ishan Thilina wrote:
@Jonathan:
Yeah I checked. It's there :s. I dont know what has gone wrong, but I'm using
the
default settings . I have GDC installed too. Can this have any connection with
this problem( just a wild guess ) ?
@Jacob:
I wasn't sure about which libraries you were talking about. The only lib set I
left out was ia32-libs. So I installed it too.That didn't solve the problem. So
I
tried to install the deb file by force.
To run 32bit applications on a 64bit machine you need 32bit compatible
runtime libraries, regardless if you run my installation tool or dmd
(dmd is a 32bit tool even thought it can produce 64bit binaries). I
don't know what exact runtime libraries are needed but for my tool you
need the regular runtime libraries you would need running any kind of
32bit application and 32bit version of libz.
"sudo dpkg -i --force-architecture dmd***.dmd"
now I get a whole lot more errors :s.
"
ishan@ishan-Ubu-I1464:~/Geany Projects$ dmd untitle.d
/usr/include/d/dmd/phobos/object.d(51): C-style function pointer and pointer to
array syntax is deprecated. Use 'function' to declare function pointers
/usr/include/d/dmd/phobos/std/format.d(672): no identifier for declarator
inout(fakevalue)
/usr/include/d/dmd/phobos/std/c/stdlib.d(43): C-style function pointer and
pointer
to array syntax is deprecated. Use 'function' to declare function pointers
/usr/include/d/dmd/phobos/std/c/stdlib.d(59): C-style function pointer and
pointer
to array syntax is deprecated. Use 'function' to declare function pointers
/usr/include/d/dmd/phobos/std/c/linux/linux.d(558): C-style function pointer and
pointer to array syntax is deprecated. Use 'function' to declare function
pointers
/usr/include/d/dmd/phobos/std/c/linux/linux.d(574): C-style function pointer and
pointer to array syntax is deprecated. Use 'function' to declare function
pointers
"
I'm trying to compile the following simple code. As you can see it should work
without any problem.
"
import std.stdio;
int main()
{
writefln("Hello world");
return 0;
}
"
"
--
/Jacob Carlborg