You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In build_and_pull_from_git.py , The depends_on_packages attribute for a package's build_config.json identifies additional 3rd party packages that are needed to build a particular 3p package due to build dependencies. These packages are downloaded to the temp working folder and then the build scripts that use them will apply their include/lib paths as part of the custom build. However, the scripts are tied directly to the name of the package, so it needs to match exactly the name of the package when referring to it, causing an issue where multiple places need to be updated.
For example:
Will download to a folder in the working $TEMP folder named zlib-1.2.11-rev5-linux. So the build script that needs to set the include/lib directory for its custom build will need to know the exact path:
We should be able to set a generic label for each of the entries so that only the labels are used, (extracted from the environment), so updates to the build_config.json will not require the build script to match the name exactly.
For example:
In build_and_pull_from_git.py , The
depends_on_packages
attribute for a package'sbuild_config.json
identifies additional 3rd party packages that are needed to build a particular 3p package due to build dependencies. These packages are downloaded to the temp working folder and then the build scripts that use them will apply their include/lib paths as part of the custom build. However, the scripts are tied directly to the name of the package, so it needs to match exactly the name of the package when referring to it, causing an issue where multiple places need to be updated.For example:
Will download to a folder in the working
$TEMP
folder namedzlib-1.2.11-rev5-linux
. So the build script that needs to set the include/lib directory for its custom build will need to know the exact path:We should be able to set a generic label for each of the entries so that only the labels are used, (extracted from the environment), so updates to the
build_config.json
will not require the build script to match the name exactly.For example:
will simplify the build script so $ZLIB is all that is needed for the path
The text was updated successfully, but these errors were encountered: