Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
FS#32804 - [dmd] need add gcc as dependency
Attached to Project:
Community Packages
Opened by Alexander (Alex123) - Thursday, 22 November 2012, 11:52 GMT
Last edited by Sven-Hendrik Haase (Svenstaro) - Tuesday, 27 November 2012, 02:38 GMT
Opened by Alexander (Alex123) - Thursday, 22 November 2012, 11:52 GMT
Last edited by Sven-Hendrik Haase (Svenstaro) - Tuesday, 27 November 2012, 02:38 GMT
|
Detailsneed add gcc as dependency
arch x64 without gcc: Steps to reproduce: $ dmd dtest.d --- errorlevel 127 (produces "dtest.o" file) $ dmd -v dtest.d binary dmd version v2.060 config /etc/dmd.conf parse dtest importall dtest ... semantic2 dtest semantic3 dtest code dtest function D main function std.stdio.writeln!(string).writeln function std.stdio.writeln!(string).writeln.__dgliteral1011 function std.exception.enforce!(bool).enforce gcc dtest.o -o dtest -m64 -L/usr/lib -L/usr/lib32 -Xlinker --no-warn-search-mismatch -Xlinker --export-dynamic -lphobos2 -lpthread -lm -lrt --- errorlevel 127 After install "base-devel" it works fine. |
This task depends upon
Closed by Sven-Hendrik Haase (Svenstaro)
Tuesday, 27 November 2012, 02:38 GMT
Reason for closing: Fixed
Additional comments about closing: Fix in svn
Tuesday, 27 November 2012, 02:38 GMT
Reason for closing: Fixed
Additional comments about closing: Fix in svn
import std.stdio;
void main() {
writeln("Hello, world!");
}