Skip to content

Commit

Permalink
Fix compile error.
Browse files Browse the repository at this point in the history
  • Loading branch information
WhaleFell authored Dec 2, 2024
1 parent 34d7706 commit 827fd31
Show file tree
Hide file tree
Showing 3 changed files with 6,967 additions and 14 deletions.
24 changes: 10 additions & 14 deletions .config
Original file line number Diff line number Diff line change
Expand Up @@ -4209,7 +4209,7 @@ CONFIG_PACKAGE_libbpf=y
# CONFIG_PACKAGE_libcap is not set
# CONFIG_PACKAGE_libcap-ng is not set
CONFIG_PACKAGE_libcares=y
CONFIG_PACKAGE_libcbor=y
# CONFIG_PACKAGE_libcbor is not set
# CONFIG_PACKAGE_libcgroup is not set
# CONFIG_PACKAGE_libcharset is not set
# CONFIG_PACKAGE_libcoap is not set
Expand Down Expand Up @@ -4280,7 +4280,7 @@ CONFIG_PACKAGE_libelf=y
# CONFIG_PACKAGE_libesmtp is not set
# CONFIG_PACKAGE_libestr is not set
CONFIG_PACKAGE_libev=y
CONFIG_PACKAGE_libevdev=y
# CONFIG_PACKAGE_libevdev is not set
# CONFIG_PACKAGE_libevent2 is not set
# CONFIG_PACKAGE_libevent2-core is not set
# CONFIG_PACKAGE_libevent2-extra is not set
Expand All @@ -4302,7 +4302,7 @@ CONFIG_PACKAGE_libevdev=y
# CONFIG_PACKAGE_libffmpeg-custom is not set
# CONFIG_PACKAGE_libffmpeg-full is not set
# CONFIG_PACKAGE_libffmpeg-mini is not set
CONFIG_PACKAGE_libfido2=y
# CONFIG_PACKAGE_libfido2 is not set
# CONFIG_PACKAGE_libflac is not set
# CONFIG_PACKAGE_libfmt is not set
# CONFIG_PACKAGE_libfreetype is not set
Expand Down Expand Up @@ -4537,7 +4537,7 @@ CONFIG_PACKAGE_libuci=y
CONFIG_PACKAGE_libuci-lua=y
# CONFIG_PACKAGE_libuci2 is not set
CONFIG_PACKAGE_libuclient=y
CONFIG_PACKAGE_libudev-zero=y
# CONFIG_PACKAGE_libudev-zero is not set
CONFIG_PACKAGE_libudns=y
# CONFIG_PACKAGE_libuecc is not set
# CONFIG_PACKAGE_libugpio is not set
Expand Down Expand Up @@ -4725,7 +4725,7 @@ CONFIG_PACKAGE_luci-app-adguardhome_INCLUDE_binary=y
# CONFIG_PACKAGE_luci-app-dawn is not set
# CONFIG_PACKAGE_luci-app-dcwapd is not set
# CONFIG_PACKAGE_luci-app-ddns is not set
CONFIG_PACKAGE_luci-app-ddns-go=y
# CONFIG_PACKAGE_luci-app-ddns-go is not set
# CONFIG_PACKAGE_luci-app-ddnsto is not set
# CONFIG_PACKAGE_luci-app-design-config is not set
# CONFIG_PACKAGE_luci-app-diag-core is not set
Expand Down Expand Up @@ -4945,7 +4945,6 @@ CONFIG_PACKAGE_luci-lib-nixio_notls=y
# CONFIG_PACKAGE_luci-i18n-base-vi is not set
# CONFIG_PACKAGE_luci-i18n-base-zh-cn is not set
# CONFIG_PACKAGE_luci-i18n-base-zh-tw is not set
# CONFIG_PACKAGE_luci-i18n-ddns-go-zh-cn is not set
# CONFIG_PACKAGE_luci-i18n-firewall-ar is not set
# CONFIG_PACKAGE_luci-i18n-firewall-bg is not set
# CONFIG_PACKAGE_luci-i18n-firewall-bn is not set
Expand Down Expand Up @@ -5170,7 +5169,6 @@ CONFIG_PACKAGE_curl=y
# CONFIG_PACKAGE_lftp is not set
# CONFIG_PACKAGE_rclone is not set
# CONFIG_PACKAGE_rclone-config is not set
# CONFIG_PACKAGE_rrsync is not set
# CONFIG_PACKAGE_rsync is not set
# CONFIG_PACKAGE_rsyncd is not set
# CONFIG_PACKAGE_vsftpd is not set
Expand Down Expand Up @@ -5553,14 +5551,13 @@ CONFIG_PACKAGE_ip-full=y
# CONFIG_PACKAGE_autossh is not set
# CONFIG_PACKAGE_openssh-client is not set
# CONFIG_PACKAGE_openssh-client-utils is not set
CONFIG_PACKAGE_openssh-keygen=y
# CONFIG_PACKAGE_openssh-keygen is not set
# CONFIG_PACKAGE_openssh-moduli is not set
CONFIG_PACKAGE_openssh-server=y
CONFIG_OPENSSH_LIBFIDO2=y
# CONFIG_PACKAGE_openssh-server is not set
# CONFIG_PACKAGE_openssh-server-pam is not set
# CONFIG_PACKAGE_openssh-sftp-avahi-service is not set
# CONFIG_PACKAGE_openssh-sftp-client is not set
CONFIG_PACKAGE_openssh-sftp-server=y
# CONFIG_PACKAGE_openssh-sftp-server is not set
# CONFIG_PACKAGE_sshtunnel is not set
# CONFIG_PACKAGE_tmate is not set
# end of SSH
Expand Down Expand Up @@ -5739,7 +5736,7 @@ CONFIG_PACKAGE_uqmi=m
# CONFIG_PACKAGE_brook is not set
CONFIG_PACKAGE_cgi-io=y
# CONFIG_PACKAGE_clamav is not set
CONFIG_PACKAGE_ddns-go=y
# CONFIG_PACKAGE_ddns-go is not set
# CONFIG_PACKAGE_ddnsto is not set
# CONFIG_PACKAGE_etebase is not set
# CONFIG_PACKAGE_freshclam is not set
Expand Down Expand Up @@ -6127,8 +6124,7 @@ CONFIG_PACKAGE_simple-obfs=y
# CONFIG_PACKAGE_snowflake-probetest is not set
# CONFIG_PACKAGE_snowflake-proxy is not set
# CONFIG_PACKAGE_snowflake-server is not set
CONFIG_PACKAGE_socat=y
# CONFIG_SOCAT_SSL is not set
# CONFIG_PACKAGE_socat is not set
# CONFIG_PACKAGE_softflowd is not set
# CONFIG_PACKAGE_soloscli is not set
# CONFIG_PACKAGE_speedtest-netperf is not set
Expand Down
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,21 @@ make -j8 download

# Build
make -j$(nproc)

make -j32 tools/install && make -j32 toolchain/install && make -j32 IGNORE_ERRORS=1

# ref: https://weixiang.github.io/posts/compile-openwrt-yourself/
# clear environment
# delete `/bin` `/build_dir`
make clean
# when u switch architecture
make dirclean
# justify
rm -rf ./tmp && rm -rf .config
make menuconfig
make download -j8 V=s
# 单线程编译
make -j$(nproc) || make -j1 || make -j1 V=s
```

## How to install
Expand Down
Loading

0 comments on commit 827fd31

Please sign in to comment.