File tree Expand file tree Collapse file tree 4 files changed +11
-5
lines changed
mips64-unknown-linux-gnuabi64
mips64el-unknown-linux-gnuabi64
src/unix/linux_like/linux Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 1
- # FIXME: Ubuntu 19.10 is missing gcc-mips-linux-gnu.
2
- FROM ubuntu:19.04
1
+ FROM ubuntu:20.04
3
2
4
3
RUN apt-get update && apt-get install -y --no-install-recommends \
5
4
gcc libc6-dev qemu-user ca-certificates \
Original file line number Diff line number Diff line change 1
- FROM ubuntu:19.10
1
+ FROM ubuntu:20.04
2
2
3
3
RUN apt-get update && apt-get install -y --no-install-recommends \
4
4
gcc libc6-dev qemu-user ca-certificates \
Original file line number Diff line number Diff line change 1
- # FIXME: Ubuntu 19.10 is missing gcc-mips-linux-gnu.
2
- FROM ubuntu:19.04
1
+ FROM ubuntu:20.04
3
2
4
3
RUN apt-get update && apt-get install -y --no-install-recommends \
5
4
gcc libc6-dev qemu-user ca-certificates \
Original file line number Diff line number Diff line change @@ -2322,6 +2322,14 @@ pub const ALG_SET_AEAD_AUTHSIZE: ::c_int = 5;
2322
2322
pub const ALG_OP_DECRYPT : :: c_int = 0 ;
2323
2323
pub const ALG_OP_ENCRYPT : :: c_int = 1 ;
2324
2324
2325
+ // include/uapi/linux/udp.h
2326
+ pub const UDP_CORK : :: c_int = 1 ;
2327
+ pub const UDP_ENCAP : :: c_int = 100 ;
2328
+ pub const UDP_NO_CHECK6_TX : :: c_int = 101 ;
2329
+ pub const UDP_NO_CHECK6_RX : :: c_int = 102 ;
2330
+ pub const UDP_SEGMENT : :: c_int = 103 ;
2331
+ pub const UDP_GRO : :: c_int = 104 ;
2332
+
2325
2333
// include/uapi/linux/mman.h
2326
2334
pub const MAP_SHARED_VALIDATE : :: c_int = 0x3 ;
2327
2335
You can’t perform that action at this time.
0 commit comments