better support for automated port building

This commit is contained in:
nakst 2021-12-14 16:55:02 +00:00
parent b9e2ff0fb7
commit 9c12e5df11
1 changed files with 40 additions and 30 deletions

View File

@ -1466,38 +1466,48 @@ void DoCommand(const char *l) {
printf(ColorNormal);
} else if (0 == memcmp(l, "a2l ", 4)) {
AddressToLine(l + 3);
} else if (0 == strcmp(l, "build-port")) {
printf("\nAvailable ports:\n");
DIR *directory = opendir("ports");
struct dirent *entry;
while ((entry = readdir(directory))) {
char buffer[4096];
snprintf(buffer, sizeof(buffer), "ports/%s/port.sh", entry->d_name);
FILE *f = fopen(buffer, "rb");
if (f) {
printf("\t%s\n", entry->d_name);
fclose(f);
}
}
closedir(directory);
LoadOptions();
if (!IsOptionEnabled("Flag.ENABLE_POSIX_SUBSYSTEM")) {
printf("\nMost ports require the POSIX subsystem to be enabled.\n");
printf("Run " ColorHighlight "config" ColorNormal " and select " ColorHighlight "Flag.ENABLE_POSIX_SUBSYSTEM" ColorNormal " to enable it.\n");
}
printf("\nEnter the port to be built: ");
} else if (0 == strcmp(l, "build-port") || 0 == memcmp(l, "build-port ", 11)) {
bool alreadyNamedPort = l[10] == ' ';
char *l2 = NULL;
size_t pos;
getline(&l2, &pos, stdin);
l2[strlen(l2) - 1] = 0;
if (!alreadyNamedPort) {
printf("\nAvailable ports:\n");
DIR *directory = opendir("ports");
struct dirent *entry;
while ((entry = readdir(directory))) {
char buffer[4096];
snprintf(buffer, sizeof(buffer), "ports/%s/port.sh", entry->d_name);
FILE *f = fopen(buffer, "rb");
if (f) {
printf("\t%s\n", entry->d_name);
fclose(f);
}
}
closedir(directory);
LoadOptions();
if (!IsOptionEnabled("Flag.ENABLE_POSIX_SUBSYSTEM")) {
printf("\nMost ports require the POSIX subsystem to be enabled.\n");
printf("Run " ColorHighlight "config" ColorNormal " and select " ColorHighlight "Flag.ENABLE_POSIX_SUBSYSTEM" ColorNormal " to enable it.\n");
}
printf("\nEnter the port to be built: ");
size_t pos;
getline(&l2, &pos, stdin);
l2[strlen(l2) - 1] = 0;
} else {
l2 = (char *) l + 11;
}
CallSystemF("ports/%s/port.sh", l2);
free(l2);
if (!alreadyNamedPort) {
free(l2);
}
} else if (0 == memcmp(l, "get-source ", 11)) {
if (CallSystem("mkdir -p bin/cache && rm -rf bin/source")) {
exit(1);