mirror of
https://github.com/moparisthebest/curl
synced 2025-01-02 09:28:01 -05:00
testcurl.pl: build example programs for MinGW cross-compiles
This commit is contained in:
parent
5f04843e5b
commit
1c3a99b52c
@ -724,8 +724,23 @@ if ($configurebuild && !$crosscompile) {
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if($crosscompile) {
|
if($crosscompile) {
|
||||||
# build test harness programs for selected cross-compiles
|
|
||||||
my $host_triplet = get_host_triplet();
|
my $host_triplet = get_host_triplet();
|
||||||
|
# build example programs for selected cross-compiles
|
||||||
|
if($host_triplet =~ /([^-]+)-([^-]+)-mingw(.*)/) {
|
||||||
|
chdir "$pwd/$build/docs/examples";
|
||||||
|
logit_spaced "build examples";
|
||||||
|
open(F, "$make -i 2>&1 |") or die;
|
||||||
|
open(LOG, ">$buildlog") or die;
|
||||||
|
while (<F>) {
|
||||||
|
s/$pwd//g;
|
||||||
|
print;
|
||||||
|
print LOG;
|
||||||
|
}
|
||||||
|
close(F);
|
||||||
|
close(LOG);
|
||||||
|
chdir "$pwd/$build";
|
||||||
|
}
|
||||||
|
# build test harness programs for selected cross-compiles
|
||||||
if($host_triplet =~ /([^-]+)-([^-]+)-mingw(.*)/) {
|
if($host_triplet =~ /([^-]+)-([^-]+)-mingw(.*)/) {
|
||||||
chdir "$pwd/$build/tests";
|
chdir "$pwd/$build/tests";
|
||||||
logit_spaced "build test harness";
|
logit_spaced "build test harness";
|
||||||
|
Loading…
Reference in New Issue
Block a user