From db22f95775b7506d0c2dcee588e068b80075486b Mon Sep 17 00:00:00 2001 From: thread-liu Date: Wed, 24 Mar 2021 09:32:04 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20eclipse.py,=20=E5=85=BC=E5=AE=B9=20t?= =?UTF-8?q?asking.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tools/eclipse.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/eclipse.py b/tools/eclipse.py index 74c697011e..4d5e28e02e 100644 --- a/tools/eclipse.py +++ b/tools/eclipse.py @@ -188,7 +188,8 @@ def HandleToolOption(tools, env, project, reset): options = tool.findall('option') # find all compile options for option in options: - if option.get('id').find('compiler.include.paths') != -1 or option.get('id').find('compiler.option.includepaths') != -1: + option_id = option.get('id') + if ('compiler.include.paths' in option_id) or ('compiler.option.includepaths' in option_id) or ('compiler.tasking.include' in option_id): compile_include_paths_options += [option] elif option.get('id').find('compiler.include.files') != -1 or option.get('id').find('compiler.option.includefiles') != -1 : compile_include_files_options += [option]