Gbs Build --Incremental vs --Include-All

what is the differences belows? If I modify source code(did not commit, yet)

  1. gbs build -A armv7l --include-all
  2. gbs build -A armv7l --incremental
  3. gbs build -A armv7l --include-all --incremental

I do not understand the differences between incremental and include-all options, clearly.

1 Answer

option 1 with build your source with all committed as well uncommitted changes

option 2 builds incrementally ( meaning if the build fails in between and then you make some changes, the next build will not start afresh but from the last build point) . This has some other conditions like changes in MACRO or header files where complete build will happen.

option 3 is a combination of option 1 and option 2

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.

Robert Thorne

Robert Thorne

Automotive & Future Transportation Editor

Robert Thorne covers electric vehicle innovations, autonomous driving systems, global mobility trends, and automotive engineering developments.

Share this article
Twitter Facebook Pinterest