Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
5b7aa294
Commit
5b7aa294
authored
Jan 08, 2015
by
Damien George
Browse files
py: Fix nlr mp_state_ctx symbol error for Mac.
parent
19b3fea6
Changes
1
Hide whitespace changes
Inline
Side-by-side
py/nlrx64.S
View file @
5b7aa294
...
...
@@ -35,7 +35,11 @@
//
the
offset
of
nlr_top
within
mp_state_ctx_t
#define NLR_TOP_OFFSET (2 * 8)
#if defined(__APPLE__) && defined(__MACH__)
#define NLR_TOP (_mp_state_ctx + NLR_TOP_OFFSET)
#else
#define NLR_TOP (mp_state_ctx + NLR_TOP_OFFSET)
#endif
.
file
"nlr.s"
.
text
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment