Message241574
| Author |
chaselton |
| Recipients |
chaselton, ethan.furman, freakboy3742, r.david.murray, refi64 |
| Date |
2015年04月20日.00:16:10 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1429488971.2.0.0548341115539.issue23496@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Ryan,
Found the missing fix.
In ./Programs/python.c
#ifndef __ANDROID__
oldloc = _PyMem_RawStrdup(setlocale(LC_ALL, NULL));
if (!oldloc) {
fprintf(stderr, "out of memory\n"); return 1;
} #endif
Added the #ifndef __ANDROID__ #endif around lines 46-51
I'm now looking at the following syntax error:
File "./setup.py", line 1950
elif host_platform.startswith('arm-linux')
^
SyntaxError: invalid syntax
make: *** [sharedmods] Error 1 |
|