вт, 26 авг. 2025 г. в 20:56, Michael Murphy via Boost-users
<boost-users@lists.boost.org>:
>
> boost wont detect my cli-args or use the user-config.jam whats the problem
> here?
> ...
> using zlib : 1.2.13 : # command
>   <include> D:/Lib/zlib-1.3.1
>   <library-path> D:/Lib/zlib-1.3.1/bld/Debug ;
>
> using bzip2 : 1.0.8 : # command
>   <include> D:/Lib/__staging__/bzip2_1.0.8
>   <library-path> D:/Lib/__staging__/bzip2_1.0.8/bld/Debug ;
>
> using lzma : 5.4.3 : # command
>   <include> D:/Lib/__staging__/xz_5.8.1/src/liblzma/lzma
>   <library-path> D:/Lib/__staging__/xz_5.8.1/bld/Debug ;
>
> using zstd : 1.5.5 : # command
>   <include> D:/Lib/__staging__/zstd_0.4.2/lib
>   <library-path>D:/Lib/__staging__/zstd_0.4.2/bld/lib/Debug ;

The option for binary directory is <search> not <library-path>.

Also, it looks like you have spaces between <include> and its values.
Don't do that, it is effectively <include>"".

> -sZLIB_INCLUDE="D:/Lib/zlib-1.3.1" -sZLIB_LIBPATH="D:/Lib/zlib-1.3.1/Debug"
> -sBZIP2_INCLUDE="D:/Lib/__staging__/bzip2_1.0.8"
> -sBZIP2_LIBPATH="D:/Lib/__staging__/bzip2_1.0.8/bld/Debug"
> -sLZMA_INCLUDE="D:/Lib/__staging__/xz_5.8.1/src/liblzma"
> -sLZMA_LIBPATH="D:/Lib/__staging__/xz_5.8.1/bld/Debug"
> -sZSTD_INCLUDE="D:/Lib/__staging__/zstd_0.4.2/lib"
> -sZSTD_LIBPATH="D:/Lib/__staging__/zstd_0.4.2/bld/lib/Debug"
> -sICU_PATH="D:/Lib/icu" -sICU_LINK_LIB_PATH="D:/Lib/icu/lib64"

These variables are only used when you don't provide any values in
your configuration (and you do provide values, even if the values are
empty strings). Also, these should be environment variables. I'm not
sure setting them via `-s` should work.
_______________________________________________
Boost-users mailing list -- boost-users@lists.boost.org
To unsubscribe send an email to boost-users-le...@lists.boost.org
https://lists.boost.org/mailman3/lists/boost-users.lists.boost.org/
Archived at: 
https://lists.boost.org/archives/list/boost-users@lists.boost.org/message/MFKXMXRQUTJVS33J2MPK7KPWVUPUZFEW/
 

Reply via email to