
dsc_depend separates packages into different groups based on their build relationships. "simple" group deals with packages without circular dependencies, while "cycle" group deal with circular dependency. Need a config file to define the build order of circular dependencies packages. See example file: circular_dep.conf Story: 2008846 Task: 43694 Change-Id: I36365d8d8c547e44bae42ed91c746b2e3a3801eb Signed-off-by: ZhangXiao <xiao.zhang@windriver.com>
18 lines
563 B
Plaintext
18 lines
563 B
Plaintext
# Circular dependency config file
|
||
# Used to break circular dependency
|
||
# Each circular dependency DSC set needs two lines, the first line starts with
|
||
# "SRC SET:" shows all related source packages; the second line starts with
|
||
# "BUILD ORDER:" shows the build order of these packages. The name of those
|
||
# soure packages are separated with a space. For example:
|
||
# SRC SET: a b c d
|
||
# BUILD ORDER: a d c b a d c b
|
||
# SRC SET: a b c
|
||
# BUILD ORDER: a c b a c b
|
||
# SRC SET:a b
|
||
# BUILD ORDER: a b a b
|
||
|
||
|
||
# SRC SET: gettext bison
|
||
# BUILD ORDER: gettext bison gettext bison
|
||
|