What does @ mean in this clang command in AOSP build log?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: In AOSP9.0.0_r30 's build log, there are clang commands like this: prebuilts/clang/host/linux-x86/clang-4691093/bin/clang++ /OpenSource/Build/Android/9.0.0_r30/soong/.intermediates/bionic/libc/crtbegin_so/android_x86_64_core/crtbegin_so.o @/OpenSource/Build/Android/9.0.0_r30/soong/.intermediates/bionic/libm/libm/android_x86_64_core_shared/libm.so.rsp ...... FYI, it is a linking commmand. In short, it is like: clang++ path_to_file1 @path_to_file2 ...... What does the " @ " mean here? 文章来源: What does @ mean in this clang command in AOSP build