Fix build issues on BSDs in pkg/cpu (#7116)

Also add a cross compile script to test always cross
compilation for some well known platforms and architectures
, we support out of box compilation of these platforms even
if we don't make an official release build.

This script is to avoid regressions in this area when we
add platform dependent code.
This commit is contained in:
Harshavardhana
2019-01-22 09:27:23 +05:30
committed by Nitish Tiwari
parent 5353edcc38
commit 8e0910ab3e
9 changed files with 53 additions and 40 deletions

View File

@@ -1015,7 +1015,7 @@ func (s *posix) ReadFileStream(volume, path string, offset, length int64) (io.Re
if _, err = file.Seek(offset, io.SeekStart); err != nil {
return nil, err
}
return &posixLimitedReader{io.LimitedReader{file, length}}, nil
return &posixLimitedReader{io.LimitedReader{R: file, N: length}}, nil
}
// CreateFile - creates the file.