HLA 编译 - 可以指定构建目录吗?

HLA compilation - can build directory be specified?

默认情况下,编译 hla filename.hla 会在当前目录中构建一个可执行文件。可以指定不同的目录吗?

环境

  • HLA(高级汇编程序 - HLABE 后端,LD 链接器) 版本 2.16 构建 4463(原型)
  • Ubuntu 20.10

解决方案

  • 这可以通过使用 hla 帮助中“汇编程序和链接器控制”部分下的选项 -x:name Executable output filename (does not append ".exe"). 来指定。
  • 要更改输出目录,请将 -x:name 改为 -x:/path/to/name

示例

user@host:~/example$ ls
src  bin
user@host:~/example$ cd src
user@host:~/example/src$ ls
filename.hla
user@host:~/example/src$ hla -x:../bin/filename.x filename.hla
user@host:~/example/src$ ls
src.hla  src.o
user@host:~/example/src$ cd ../bin
user@host:~/example/bin$ ls
filename.x
user@host:~/example/bin$