Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当您有多个特定于系统的文件时,如何知道哪些文件将被编译和链接?
至少有两种选择:
go build -n
go/build
我建议第二种方法;如果我正确理解您的问题,它会满足您的需求。您指定要“导入”的包,它会返回一个Package结构,其中包含将被编译的 Go、C、ASM 文件集。
Package