mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-06 19:28:29 +00:00
Attempt to build Python compiler program
This commit is contained in:
parent
d522a88def
commit
0c6581f912
27 changed files with 9780 additions and 2536 deletions
|
@ -78,7 +78,7 @@ FLAGS\n\
|
|||
-V NUMBER specifies compiler version\n\
|
||||
-t touch target on success\n\
|
||||
-n do nothing (used to prime the executable)\n\
|
||||
-? print help\n\
|
||||
-h print help\n\
|
||||
\n"
|
||||
|
||||
struct Args {
|
||||
|
|
|
@ -26,7 +26,6 @@
|
|||
char *StripComponents(const char *path, int n) {
|
||||
const char *p;
|
||||
while (n-- > 0) {
|
||||
while (*path == '/') ++path;
|
||||
for (p = path; *p; ++p) {
|
||||
if (*p == '/') {
|
||||
path = p + 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue