We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make docker-image
10.02 # github.com/mattn/go-sqlite3 10.02 sqlite3-binding.c:35901:42: error: 'pread64' undeclared here (not in a function); did you mean 'pread'? 10.02 35901 | { "pread64", (sqlite3_syscall_ptr)pread64, 0 }, 10.02 | ^~~~~~~ 10.02 | pread 10.02 sqlite3-binding.c:35919:42: error: 'pwrite64' undeclared here (not in a function); did you mean 'pwrite'? 10.02 35919 | { "pwrite64", (sqlite3_syscall_ptr)pwrite64, 0 }, 10.02 | ^~~~~~~~ 10.02 | pwrite 10.02 sqlite3-binding.c: In function 'seekAndRead': 10.02 sqlite3-binding.c:35905:49: error: unknown type name 'off64_t'; did you mean 'off_t'? 10.02 35905 | #define osPread64 ((ssize_t(*)(int,void*,size_t,off64_t))aSyscall[10].pCurrent) 10.02 | ^~~~~~~ 10.02 sqlite3-binding.c:38767:11: note: in expansion of macro 'osPread64' 10.02 38767 | got = osPread64(id->h, pBuf, cnt, offset); 10.02 | ^~~~~~~~~ 10.02 sqlite3-binding.c:35905:58: error: expected ')' before 'aSyscall' 10.02 35905 | #define osPread64 ((ssize_t(*)(int,void*,size_t,off64_t))aSyscall[10].pCurrent) 10.02 | ~ ^~~~~~~~ 10.02 sqlite3-binding.c:38767:11: note: in expansion of macro 'osPread64' 10.02 38767 | got = osPread64(id->h, pBuf, cnt, offset); 10.02 | ^~~~~~~~~ 10.02 sqlite3-binding.c: In function 'seekAndWriteFd': 10.02 sqlite3-binding.c:35923:57: error: unknown type name 'off64_t'; did you mean 'off_t'? 10.02 35923 | #define osPwrite64 ((ssize_t(*)(int,const void*,size_t,off64_t))\ 10.02 | ^~~~~~~ 10.02 sqlite3-binding.c:38896:17: note: in expansion of macro 'osPwrite64' 10.02 38896 | do{ rc = (int)osPwrite64(fd, pBuf, nBuf, iOff);}while( rc<0 && errno==EINTR); 10.02 | ^~~~~~~~~~ 10.02 sqlite3-binding.c:35924:21: error: expected ')' before 'aSyscall' 10.02 35924 | aSyscall[13].pCurrent) 10.02 | ^~~~~~~~ 10.02 sqlite3-binding.c:38896:17: note: in expansion of macro 'osPwrite64' 10.02 38896 | do{ rc = (int)osPwrite64(fd, pBuf, nBuf, iOff);}while( rc<0 && errno==EINTR); 10.02 | ^~~~~~~~~~ 10.02 sqlite3-binding.c:35923:21: note: to match this '(' 10.02 35923 | #define osPwrite64 ((ssize_t(*)(int,const void*,size_t,off64_t))\ 10.02 | ^ 10.02 sqlite3-binding.c:38896:17: note: in expansion of macro 'osPwrite64' 10.02 38896 | do{ rc = (int)osPwrite64(fd, pBuf, nBuf, iOff);}while( rc<0 && errno==EINTR); 10.02 | ^~~~~~~~~~ 32.92 make: *** [Makefile:91: pd-server] Error 1 ------ Dockerfile:28 -------------------- 26 | COPY . . 27 | 28 | >>> RUN make 29 | 30 | FROM alpine:3.17
successful.
failed.
pd-server -V
master
The text was updated successfully, but these errors were encountered:
ci: fix docker build sqlite3 and alpine 3.19 incompatibility (#7522)
bd155f6
close #7521 ci: fix docker build with musl compatibility issue Signed-off-by: Shuning Chen <nolouch@ShuningdeMacBook-Pro.local> Co-authored-by: Shuning Chen <nolouch@ShuningdeMacBook-Pro.local>
Successfully merging a pull request may close this issue.
Bug Report
What did you do?
make docker-image
What did you expect to see?
successful.
What did you see instead?
failed.
What version of PD are you using (
pd-server -V
)?master
The text was updated successfully, but these errors were encountered: