mirror of https://github.com/BOINC/boinc.git
win build fix
This commit is contained in:
parent
cf5464509b
commit
5c35a8a30a
|
@ -45,6 +45,7 @@
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
#include "win_util.h"
|
#include "win_util.h"
|
||||||
#include "boinc_api.h"
|
#include "boinc_api.h"
|
||||||
|
#include "app_ipc.h"
|
||||||
|
|
||||||
using std::string;
|
using std::string;
|
||||||
|
|
||||||
|
@ -167,7 +168,6 @@ void poll_client_msgs() {
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char** argv) {
|
int main(int argc, char** argv) {
|
||||||
string distro;
|
|
||||||
const char *os_name_regexp=".*", *os_version_regexp=".*", *pass_thru="";
|
const char *os_name_regexp=".*", *os_version_regexp=".*", *pass_thru="";
|
||||||
for (int i=1; i<argc; i++) {
|
for (int i=1; i<argc; i++) {
|
||||||
if (!strcmp(argv[i], "--os_name_regexp")) {
|
if (!strcmp(argv[i], "--os_name_regexp")) {
|
||||||
|
@ -187,23 +187,25 @@ int main(int argc, char** argv) {
|
||||||
options.main_program = true;
|
options.main_program = true;
|
||||||
options.check_heartbeat = true;
|
options.check_heartbeat = true;
|
||||||
options.handle_process_control = true;
|
options.handle_process_control = true;
|
||||||
|
|
||||||
boinc_init_options(&options);
|
boinc_init_options(&options);
|
||||||
|
|
||||||
|
string distro_name;
|
||||||
if (boinc_is_standalone()) {
|
if (boinc_is_standalone()) {
|
||||||
SetCurrentDirectoryA("C:/ProgramData/BOINC/slots/test");
|
SetCurrentDirectoryA("C:/ProgramData/BOINC/slots/test");
|
||||||
distro = "Ubuntu-22.04";
|
distro_name = "Ubuntu-22.04";
|
||||||
} else {
|
} else {
|
||||||
boinc_get_init_data(aid);
|
boinc_get_init_data(aid);
|
||||||
distro = find_distr(aid.wsl, os_name_regexp, os_version_regexp);
|
WSL_DISTRO *distro = aid.host_info.wsl_distros.find_match(os_name_regexp, os_version_regexp);
|
||||||
if (distro.empty()) {
|
if (!distro) {
|
||||||
fprintf(stderr, "can't find distro\n");
|
fprintf(stderr, "can't find distro\n");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
distro_name = distro->distro_name;
|
||||||
}
|
}
|
||||||
char main_cmd[256];
|
|
||||||
sprintf(cmd, "./main %s", pass_thru)
|
|
||||||
|
|
||||||
if (launch(distro.c_str(), main_cmd)) {
|
char main_cmd[256];
|
||||||
|
sprintf(main_cmd, "./main %s", pass_thru);
|
||||||
|
if (launch(distro_name.c_str(), main_cmd)) {
|
||||||
printf("launch failed\n");
|
printf("launch failed\n");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue