Make the dependency order deterministic. (#3927)
We were using sets to store the dependencies. Just switch to OrderedSet. Fixes #3922.pull/3936/head
parent
6fafbad6d5
commit
1a27714f97
6 changed files with 26 additions and 2 deletions
@ -0,0 +1,8 @@ |
||||
project('myexe', 'c') |
||||
|
||||
lib1 = static_library('lib1', 'lib1.c') |
||||
lib2 = static_library('lib2', 'lib2.c') |
||||
|
||||
executable('myexe', |
||||
'myexe.c', |
||||
link_with: [lib1, lib2]) |
@ -0,0 +1,3 @@ |
||||
int main(int ac, char** av) { |
||||
return 0; |
||||
} |
Loading…
Reference in new issue