What does @ mean in this clang command in AOSP build log?

笑着哭i 提交于 2019-12-09 03:56:07

问题


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?

来源:https://stackoverflow.com/questions/55440501/what-does-mean-in-this-clang-command-in-aosp-build-log

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!