Serge Mera
Serge Mera
Only the very basic SDKs are bundled together with BuildXL binaries. Those are the SDKs you see under `/Sdk`. All SDKs (bundled with bxl binaries or not) that are needed...
Hi Vladimir, For specifying inputs, you can either declare input files individually or use [sealed directories](https://github.com/microsoft/BuildXL/blob/master/Documentation/Wiki/Advanced-Features/Sealed-Directories.md). There are different flavors of sealed directories, and for inputs you can either use...
If you have multiple projects generating intermediate outputs under each project root, an easy way to deal with that which doesn't imply specifying each project root/individual outputs is to declare...
The problem with a source sealed directory is that it doesn't allow outputs to occur under it. A better candidate for your scenario is maybe a partial seal directory, where...
Would you mind sharing the full code? I suspect 'outDir' in this case is an [exclusive opaque directory](https://github.com/microsoft/BuildXL/blob/master/Documentation/Wiki/Advanced-Features/Sealed-Directories/Opaque-Sealed-Directories.md), which wouldn't allow any inputs underneath. In order to specify that output...
[Test3-commented.zip](https://github.com/microsoft/BuildXL/files/7514919/Test3-commented.zip) Tweaked some things and also added some general comments across the board. Please take a look and feel free to ask any questions you may have. Thanks, Serge.
If 'outDir' will contain some files upfront, besides the ones produced by the tool, I suggest you turn that directory into a shared opaque one as well. Exclusive opaque directories...
Hi Vladimir, As a general consideration, my recommendation is to increase the cache size. You can pass a cache configuration file with /cacheConfigFilePath:. Some extra points though: * If there...
If you build with a filter pointing to outDir (look at [path-based filters](https://github.com/microsoft/BuildXL/blob/master/Documentation/Wiki/How-To-Run-BuildXL/Filtering.md#path-based-filters)), as long as you get cache hits you won't need to transfer data from the cache. E.g....
Hey Vladimir, Do you have a shared cache in place? (That is, a cache shared by multiple machines). Asking this because without one, and having your build being a single-pip...