boost-1.44: add 'taggedLayout' parameter to force use of tagged layout in single-variant builds
This commit is contained in:
parent
5b4d0bb383
commit
eb7ad413b8
@ -6,6 +6,7 @@
|
|||||||
, enableShared ? true
|
, enableShared ? true
|
||||||
, enableStatic ? false
|
, enableStatic ? false
|
||||||
, enablePIC ? false
|
, enablePIC ? false
|
||||||
|
, taggedLayout ? false
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
@ -23,7 +24,7 @@ let
|
|||||||
stdenv.lib.optional enableStatic "static");
|
stdenv.lib.optional enableStatic "static");
|
||||||
|
|
||||||
# To avoid library name collisions
|
# To avoid library name collisions
|
||||||
finalLayout = if ((enableRelease && enableDebug) ||
|
finalLayout = if (taggedLayout || (enableRelease && enableDebug) ||
|
||||||
(enableSingleThreaded && enableMultiThreaded) ||
|
(enableSingleThreaded && enableMultiThreaded) ||
|
||||||
(enableShared && enableStatic)) then
|
(enableShared && enableStatic)) then
|
||||||
"tagged" else "system";
|
"tagged" else "system";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user