mirror of https://github.com/F-Stack/f-stack.git
Fix #3: Compiling errors on Ubuntu.
On Ubuntu, you should use gawk instead of the default mawk.And use bash to excute `./configure --prefix=/usr/local/nginx_fstack --with-ff_module`.
This commit is contained in:
parent
8c0855abf9
commit
82aa761e87
|
@ -59,6 +59,9 @@ Currently, besides authorized DNS server of DNSPod, there are various products i
|
||||||
ifconfig eth0 down
|
ifconfig eth0 down
|
||||||
python dpdk-devbind.py --bind=igb_uio eth0 # assuming that use 10GE NIC and eth0
|
python dpdk-devbind.py --bind=igb_uio eth0 # assuming that use 10GE NIC and eth0
|
||||||
|
|
||||||
|
# On Ubuntu, use gawk instead of the default mawk.
|
||||||
|
#sudo apt-get install gawk # or execute `sudo update-alternatives --config awk` to choose gawk.
|
||||||
|
|
||||||
# Compile F-Stack
|
# Compile F-Stack
|
||||||
cd ../../lib/
|
cd ../../lib/
|
||||||
make
|
make
|
||||||
|
@ -68,7 +71,7 @@ Currently, besides authorized DNS server of DNSPod, there are various products i
|
||||||
#### Nginx
|
#### Nginx
|
||||||
|
|
||||||
cd app/nginx-1.11.10
|
cd app/nginx-1.11.10
|
||||||
./configure --prefix=/usr/local/nginx_fstack --with-ff_module
|
bash ./configure --prefix=/usr/local/nginx_fstack --with-ff_module
|
||||||
make
|
make
|
||||||
make install
|
make install
|
||||||
cd ../..
|
cd ../..
|
||||||
|
|
Loading…
Reference in New Issue