Optimize Go programs and add IPv6 to mrmanager.
This commit is contained in:
parent
913d2e9f15
commit
9413f5dce8
@ -3,3 +3,4 @@ ifconfig_igb0="up"
|
|||||||
ifconfig_igb1="up"
|
ifconfig_igb1="up"
|
||||||
ifconfig_lagg0="up laggproto failover laggport igb0 laggport igb1"
|
ifconfig_lagg0="up laggproto failover laggport igb0 laggport igb1"
|
||||||
ifconfig_lagg0_alias0="inet 74.80.180.138 netmask 255.255.255.248"
|
ifconfig_lagg0_alias0="inet 74.80.180.138 netmask 255.255.255.248"
|
||||||
|
ifconfig_lagg0_alias1="inet6 2620:11f:7001:7::2/64"
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
defaultrouter="74.80.180.137"
|
defaultrouter="74.80.180.137"
|
||||||
|
ipv6_defaultrouter="2620:11f:7001:7::1"
|
||||||
gateway_enable="YES"
|
gateway_enable="YES"
|
||||||
ipv6_gateway_enable="YES"
|
ipv6_gateway_enable="YES"
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
CPUTYPE?=broadwell
|
CPUTYPE?=broadwell
|
||||||
|
|
||||||
|
# CPU optimizations for go
|
||||||
|
.if ${.CURDIR:M*/lang/go*}
|
||||||
|
OPTIONS_SET+=V2
|
||||||
|
OPTIONS_SET+=V3
|
||||||
|
.endif
|
||||||
|
|
||||||
|
|
||||||
# Disable static for subversion because /usr/local/lib/libutf8proc.a not found despite utf8proc being installed
|
# Disable static for subversion because /usr/local/lib/libutf8proc.a not found despite utf8proc being installed
|
||||||
#
|
#
|
||||||
# Disable static for netpbm because "ld: error: undefined symbol: libdeflate_free_compressor" which is "referenced by tif_zip.o:(ZIPVSetField) in archive /usr/local/lib/libtiff.a"
|
# Disable static for netpbm because "ld: error: undefined symbol: libdeflate_free_compressor" which is "referenced by tif_zip.o:(ZIPVSetField) in archive /usr/local/lib/libtiff.a"
|
||||||
|
@ -7,6 +7,12 @@ CPUTYPE?=x86-64-v4
|
|||||||
CPUTYPE?=znver4
|
CPUTYPE?=znver4
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
# CPU optimizations for go
|
||||||
|
.if ${.CURDIR:M*/lang/go*}
|
||||||
|
OPTIONS_SET+=V2
|
||||||
|
OPTIONS_SET+=V3
|
||||||
|
OPTIONS_SET+=V4
|
||||||
|
.endif
|
||||||
|
|
||||||
|
|
||||||
OPTIONS_SET+=OPTIMIZED_CFLAGS
|
OPTIONS_SET+=OPTIMIZED_CFLAGS
|
||||||
|
@ -59,6 +59,7 @@ net/rsync
|
|||||||
net/tcpdump
|
net/tcpdump
|
||||||
net/wireguard-tools
|
net/wireguard-tools
|
||||||
net/wlvncc
|
net/wlvncc
|
||||||
|
ports-mgmt/modules2tuple
|
||||||
ports-mgmt/pkg
|
ports-mgmt/pkg
|
||||||
ports-mgmt/pkg-provides
|
ports-mgmt/pkg-provides
|
||||||
ports-mgmt/portshaker
|
ports-mgmt/portshaker
|
||||||
|
Loading…
x
Reference in New Issue
Block a user