Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
Hdlmake
Manage
Activity
Members
Labels
Plan
Issues
20
Issue boards
Milestones
Wiki
Code
Merge requests
5
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
Hdlmake
Commits
d2d60b9d
Commit
d2d60b9d
authored
11 years ago
by
Pawel Szostek
Browse files
Options
Downloads
Patches
Plain Diff
manifest: pass __manifest variable as the extra context
parent
27745a19
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/module.py
+2
-3
2 additions, 3 deletions
src/module.py
src/util/configparser.py
+3
-1
3 additions, 1 deletion
src/util/configparser.py
with
5 additions
and
4 deletions
src/module.py
+
2
−
3
View file @
d2d60b9d
...
...
@@ -175,7 +175,6 @@ class Module(object):
manifest_parser
=
ManifestParser
()
manifest_parser
.
add_arbitrary_code
(
"
__manifest=
\"
"
+
self
.
path
+
"
\"
"
)
manifest_parser
.
add_arbitrary_code
(
global_mod
.
options
.
arbitrary_code
)
if
self
.
manifest
is
None
:
...
...
@@ -185,7 +184,7 @@ class Module(object):
if
self
.
parent
is
None
:
allow_unknown
=
True
extra_context
=
None
extra_context
=
{}
else
:
allow_unknown
=
False
extra_context
=
dict
(
global_mod
.
top_module
.
manifest_dict
)
# copy the dictionary
...
...
@@ -196,7 +195,7 @@ class Module(object):
del
extra_context
[
"
incl_makefiles
"
]
del
extra_context
[
"
bit_file_targets
"
]
del
extra_context
[
"
library
"
]
extra_context
[
"
__manifest
"
]
=
self
.
path
opt_map
=
None
try
:
...
...
This diff is collapsed.
Click to expand it.
src/util/configparser.py
+
3
−
1
View file @
d2d60b9d
...
...
@@ -284,7 +284,7 @@ class ConfigParser(object):
except:
logging.error(
"
Encountered unexpected error while parsing
"
+ self.config_file)
print(str(sys.exc_info()[0]) +
'
:
'
+ str(sys.exc_info()[1]))
quit()
raise
for opt_name, val in list(options.items()): # check delivered options
if opt_name.startswith(
'
__
'
):
...
...
@@ -294,6 +294,8 @@ class ConfigParser(object):
continue # finish processing of this variable here
elif allow_unknown is True:
ret[opt_name] = val
logging.warning(
"
Given variable is not recognized: %s (=%s).
\n
Please double check it is not en error
"
% (opt_name, val))
continue
else:
#if opt_name.startswith(
"
global_
"
):
# continue
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment