1. 程式人生 > >xtrabackup 1.6.3安裝出現cc1: error: unrecognized command line option "-fdiagnostics-show-option"

xtrabackup 1.6.3安裝出現cc1: error: unrecognized command line option "-fdiagnostics-show-option"

今天沒事,就重新下了一個xtrabackup 1.6.3來玩一下,公司用這個工具不多,在這個版本安裝時出現一個問題

首先這個版本必須要下載   libtar-1.2.11.tar.gz和 mysql-5.1.56.tar.gz 
按說明一次下載兩個版本到/home/zhanghong/xtrabackup/xtrabackup-1.6.3目錄下,再次執行build.sh

出現

cc1: error: unrecognized command line option "-fdiagnostics-show-option"

後來檢視gcc版本
gcc version 3.4.5 20051201 (Red Hat 3.4.5-2)

gcc在3.4之後就已經去掉了-fdiagnostics-show-option

開啟Makefile,

CFLAGS += -O3 -g -DXTRABACKUP_VERSION=\"$(XTRABACKUP_VERSION)\" -pedantic -Wall -Wundef -Wshadow  -fdiagnostics-show-optio
n  -fno-strict-aliasing -Wno-strict-aliasing -Wextra -Wformat -Wno-format-nonliteral -Wno-format-security -Wno-long-long
-Wmissing-declarations  -Wno-redundant-decls --std=gnu99

去掉-fdiagnostics-show-option

重新build

成功;

總結一下使用心得,感覺xtra比 innobackup更有優勢,使用起來更加人性化!