()
| 2367 | # sequence below are added in the correct order even when they are also part of |
| 2368 | # EMCC_FORCE_STDLIBS. |
| 2369 | def add_forced_libs(): |
| 2370 | for forced in force_include: |
| 2371 | if forced not in system_libs_map: |
| 2372 | utils.exit_with_error('invalid forced library: %s', forced) |
| 2373 | add_library(forced) |
| 2374 | |
| 2375 | if options.nodefaultlibs: |
| 2376 | add_forced_libs() |
no test coverage detected