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.
在 linux 中,gcc 会报告未解析的符号(如果有)。我应该如何使用 ld 在 aix 中生成此类信息?
默认情况下,AIX 上的 ld 报告未解析的符号。
链接时是否使用 -brtl 选项?在这种情况下,您要求链接发生在运行时(运行时链接),因此 ld 不会报告任何未解析的符号,因为假定在程序运行时使用的库中将提供任何未解析的符号。(尝试运行程序时将报告任何未解析的符号。)