gavinchou opened a new pull request, #12691: URL: https://github.com/apache/doris/pull/12691
It's a pain that third-party cannot be built partially and incrementally. This commit adds several build options to kill the pain. to build specified dependencies ``` ./build-third-party.sh -d "curl lz4 jemalloc" ``` automatic incremental build, a version file `version.txt` is added to complete this functionality. Check version.txt for more details. ``` ./build-third-party.sh ``` to force rebuild all dependencies ``` ./build-third-party.sh -a ``` Also, to enable automatic third-party incremental build support in `build.sh`, set the env. var. ``` export ENABLE_INCREMENTAL_THIRD_PARTY_BUILD=1 ``` This may be enabled by default in the future. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org