JuliaPackaging / BinaryBuilder.jl

Binary Dependency Builder for Julia
https://binarybuilder.org
Other
391 stars 99 forks source link

Show the plaform triplet in each warning and error from the auditor #1309

Open JamesWrigley opened 9 months ago

JamesWrigley commented 9 months ago

~This makes it a bit easier to nail down which platforms are producing the warnings.~ Also fixed a wee bug I found when running the tests in dd77a37c. I wasn't able to run all the tests locally on my machine, I got a Cross-device link (os error 18) when the tests were building a rust package, and I think the wizard tests were hanging.

Old before/after (removed commit from PR) Before: ``` ┌ Warning: Linked library /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos could not be resolved and could not be auto-mapped └ @ BinaryBuilder.Auditor ~/.julia/packages/BinaryBuilder/0CUml/src/Auditor.jl:383 ┌ Warning: Linked library /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos could not be resolved and could not be auto-mapped └ @ BinaryBuilder.Auditor ~/.julia/packages/BinaryBuilder/0CUml/src/Auditor.jl:383 ┌ Warning: Linked library libcom_err.so.5 could not be resolved and could not be auto-mapped └ @ BinaryBuilder.Auditor ~/.julia/packages/BinaryBuilder/0CUml/src/Auditor.jl:383 ┌ Warning: Linked library libhx509.so.11 could not be resolved and could not be auto-mapped └ @ BinaryBuilder.Auditor ~/.julia/packages/BinaryBuilder/0CUml/src/Auditor.jl:383 ┌ Warning: Linked library libasn1.so.11 could not be resolved and could not be auto-mapped └ @ BinaryBuilder.Auditor ~/.julia/packages/BinaryBuilder/0CUml/src/Auditor.jl:383 ┌ Warning: Linked library libgssapi.so.10 could not be resolved and could not be auto-mapped └ @ BinaryBuilder.Auditor ~/.julia/packages/BinaryBuilder/0CUml/src/Auditor.jl:383 ┌ Warning: Linked library libkrb5.so.11 could not be resolved and could not be auto-mapped └ @ BinaryBuilder.Auditor ~/.julia/packages/BinaryBuilder/0CUml/src/Auditor.jl:383 ┌ Warning: Linked library libheimntlm.so.11 could not be resolved and could not be auto-mapped └ @ BinaryBuilder.Auditor ~/.julia/packages/BinaryBuilder/0CUml/src/Auditor.jl:383 ┌ Warning: Linked library libwind.so.11 could not be resolved and could not be auto-mapped └ @ BinaryBuilder.Auditor ~/.julia/packages/BinaryBuilder/0CUml/src/Auditor.jl:383 ┌ Warning: Minimum instruction set detected for bin/libssh.dll is avx2, not x86_64 as desired. └ @ BinaryBuilder.Auditor ~/.julia/packages/BinaryBuilder/0CUml/src/Auditor.jl:311 ``` After: ``` ┌ Warning: Linked library /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos could not be resolved and could not be auto-mapped │ platform = "aarch64-apple-darwin" └ @ BinaryBuilder.Auditor ~/.julia/dev/BinaryBuilder/src/Auditor.jl:395 ┌ Warning: Linked library /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos could not be resolved and could not be auto-mapped │ platform = "x86_64-apple-darwin" └ @ BinaryBuilder.Auditor ~/.julia/dev/BinaryBuilder/src/Auditor.jl:395 ┌ Warning: Linked library libcom_err.so.5 could not be resolved and could not be auto-mapped │ platform = "x86_64-unknown-freebsd" └ @ BinaryBuilder.Auditor ~/.julia/dev/BinaryBuilder/src/Auditor.jl:395 ┌ Warning: Linked library libhx509.so.11 could not be resolved and could not be auto-mapped │ platform = "x86_64-unknown-freebsd" └ @ BinaryBuilder.Auditor ~/.julia/dev/BinaryBuilder/src/Auditor.jl:395 ┌ Warning: Linked library libasn1.so.11 could not be resolved and could not be auto-mapped │ platform = "x86_64-unknown-freebsd" └ @ BinaryBuilder.Auditor ~/.julia/dev/BinaryBuilder/src/Auditor.jl:395 ┌ Warning: Linked library libgssapi.so.10 could not be resolved and could not be auto-mapped │ platform = "x86_64-unknown-freebsd" └ @ BinaryBuilder.Auditor ~/.julia/dev/BinaryBuilder/src/Auditor.jl:395 ┌ Warning: Linked library libkrb5.so.11 could not be resolved and could not be auto-mapped │ platform = "x86_64-unknown-freebsd" └ @ BinaryBuilder.Auditor ~/.julia/dev/BinaryBuilder/src/Auditor.jl:395 ┌ Warning: Linked library libheimntlm.so.11 could not be resolved and could not be auto-mapped │ platform = "x86_64-unknown-freebsd" └ @ BinaryBuilder.Auditor ~/.julia/dev/BinaryBuilder/src/Auditor.jl:395 ┌ Warning: Linked library libwind.so.11 could not be resolved and could not be auto-mapped │ platform = "x86_64-unknown-freebsd" └ @ BinaryBuilder.Auditor ~/.julia/dev/BinaryBuilder/src/Auditor.jl:395 ┌ Warning: Minimum instruction set detected for bin/libssh.dll is avx2, not x86_64 as desired. │ platform = "x86_64-w64-mingw32" └ @ BinaryBuilder.Auditor ~/.julia/dev/BinaryBuilder/src/Auditor.jl:323 ```