mirror of
https://github.com/intel/llvm.git
synced 2026-02-02 02:00:03 +08:00
This is useful for enforcing that builds are independent of the environment; it can be used when all system library paths are added via /libpath: already. It's similar ot cl.exe's /X flag. Since it should also affect %LINK% (the other caller of `Process::GetEnv` in lld/COFF), the early-option-parsing needs to move around a bit. The options are: - Add a manual loop over the argv ArrayRef and look for "/lldignoreenv". This repeats the name of the flag in both Options.td and in DriverUtils.cpp. - Add yet another table.ParseArgs() call just for /lldignoreenv before adding %LINK%. - Use the existing early ParseArgs() that's there for --rsp-quoting and use it for /lldignoreenv for %LINK% as well. This means --rsp-quoting and /lldignoreenv can't be passed via %LINK%. I went with the third approach. Differential Revision: https://reviews.llvm.org/D67456 llvm-svn: 371852
10 lines
254 B
Plaintext
10 lines
254 B
Plaintext
# RUN: env LINK=-help lld-link | FileCheck %s
|
|
# RUN: env _LINK_=-help lld-link | FileCheck %s
|
|
|
|
CHECK: OVERVIEW: LLVM Linker
|
|
|
|
# RUN: env LINK=-help not lld-link /lldignoreenv 2>&1 | \
|
|
# RUN: FileCheck --check-prefix=ERR %s
|
|
|
|
ERR: error: no input files
|