mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 06:22:25 +00:00
Try adding cygwin and mingw 64 bit builds.
This commit is contained in:
parent
8bf94eddfe
commit
86de8a6fe5
2 changed files with 8 additions and 4 deletions
|
|
@ -10,7 +10,11 @@ my %machines = (
|
||||||
"pi" => ['pi@pie', "sudo", "projects/oberon/vishap/voc", "make full"],
|
"pi" => ['pi@pie', "sudo", "projects/oberon/vishap/voc", "make full"],
|
||||||
"darwin" => ['dave@dcb', "sudo", "projects/oberon/vishap/voc", "make full"],
|
"darwin" => ['dave@dcb', "sudo", "projects/oberon/vishap/voc", "make full"],
|
||||||
"wind" => ['-p5932 dave@wax', "", "vishaps/voc", "export CC=gcc && make full;"
|
"wind" => ['-p5932 dave@wax', "", "vishaps/voc", "export CC=gcc && make full;"
|
||||||
. "export CC=i686-w64-mingw32-gcc && make full"],
|
. "export CC=i686-w64-mingw32-gcc && make full;"
|
||||||
|
. "cd ~;"
|
||||||
|
. "sh start64.sh \"cd vishaps/voc && git checkout $branch && git pull\";"],
|
||||||
|
. "sh start64.sh \"cd vishaps/voc && make full\";"
|
||||||
|
. "sh start64.sh \"cd vishaps/voc && export CC=x86_64-w64-mingw32-gcc && make full\""],
|
||||||
"android" => ['-p8022 root@and', "", "vishap/voc", "export CC=gcc && make full"],
|
"android" => ['-p8022 root@and', "", "vishap/voc", "export CC=gcc && make full"],
|
||||||
"lub32" => ['dave@lub32', "sudo", "vishap/voc", "make full"],
|
"lub32" => ['dave@lub32', "sudo", "vishap/voc", "make full"],
|
||||||
"ob32" => ['root@nas-ob32', "", "vishap/voc", "make full"],
|
"ob32" => ['root@nas-ob32', "", "vishap/voc", "make full"],
|
||||||
|
|
|
||||||
|
|
@ -43,9 +43,9 @@ if ($buildneeded) {
|
||||||
writelog "Started buildall, pid = $child."; # parent process
|
writelog "Started buildall, pid = $child."; # parent process
|
||||||
} else {
|
} else {
|
||||||
close(STDIN); close(STDOUT); close(STDERR); # child process
|
close(STDIN); close(STDOUT); close(STDERR); # child process
|
||||||
unlink "buildall.pl";
|
# unlink "buildall.pl";
|
||||||
sleep 5; # Leave time for the push to complete. (Yuk!)
|
sleep 10; # Leave time for github to have the new version ready. (Yuk!)
|
||||||
system 'wget https://raw.githubusercontent.com/vishaps/voc/master/src/tools/make/buildall.pl';
|
system 'curl https://raw.githubusercontent.com/vishaps/voc/master/src/tools/make/buildall.pl >buildall.pl';
|
||||||
exec 'perl buildall.pl >/tmp/buildall.log';
|
exec 'perl buildall.pl >/tmp/buildall.log';
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue