DSSS 错误代码 65280
我有一个番茄计时器,正在尝试使用 DSSS 进行编译。它在执行时进行编译:
dmd pomodoro.d
但是,当我
dsss build
在项目目录中执行时,它会抱怨:
pomodoro.d => pomodoro
WARNING: Module pomodoro.d does not have a module declaration. This can cause problems
with rebuild's -oq option. If an error occurs, fix this first.
/usr/bin/ld: cannot find -ltango
collect2: ld returned 1 exit status
--- errorlevel 1
Command /opt/dsss/bin/rebuild returned with code 65280, aborting.
Error: Command failed, aborting.
目录中的我的 dsss.conf 文件是:
name = pomodoro
[pomodoro.d]
target = pomodoro
/opt/dsss/etc/rebuild/default 的内容是
profile=dmd-posix-tango
我认为有问题的行在这里(在 dmd-posix-tango 中),但不知道该怎么做。
[link]
oneatatime=yes
cmd=dmd -L--start-group -L-ltango $i -of$o
这是在 Arch Linux 上
有什么想法吗?
I have a pomodoro timer that I am trying to compile using DSSS. It compiles when executing:
dmd pomodoro.d
However, when I execute
dsss build
From within the project directory, it complains:
pomodoro.d => pomodoro
WARNING: Module pomodoro.d does not have a module declaration. This can cause problems
with rebuild's -oq option. If an error occurs, fix this first.
/usr/bin/ld: cannot find -ltango
collect2: ld returned 1 exit status
--- errorlevel 1
Command /opt/dsss/bin/rebuild returned with code 65280, aborting.
Error: Command failed, aborting.
My dsss.conf file in the directory is:
name = pomodoro
[pomodoro.d]
target = pomodoro
The contents of /opt/dsss/etc/rebuild/default is
profile=dmd-posix-tango
I think the offending line is here(in dmd-posix-tango), but do not know what to do.
[link]
oneatatime=yes
cmd=dmd -L--start-group -L-ltango $i -of$o
This is on Arch Linux
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DSSS 不再维护。考虑使用配音:http://code.dlang.org/
DSSS is no longer maintained. Consider using dub: http://code.dlang.org/