how to compile and install Percona Server 5.1.47-rel11.0

I complile Percona server with options
CC=“gcc -static-libgcc” CFLAGS=“-O3 -pipe -m64 -fPIC -fomit-frame-pointer” CXX=“gcc -static-libgcc” CXXFLAGS=“-O3 -pipe -m64 -fPIC -fomit-frame-pointer -felide-constructors -fno-exceptions -fno-rtti” ./configure –prefix=/opt/xtradb –enable-local-infile –enable-thread-safe-client –enable-assembler –with-client-ldflags=-all-static –with-mysqld-ldflags=-all-static –with-unix-socket-path=/opt/xtradb/tmp/mysql.sock –with-plugins=partition,archive,blackhole,csv,federated,he ap,ibmdb2i,innobase,innodb_plugin,myisam,myisammrg –with-big-tables –without-debug –with-tcp-port=3306 –with-readline –enable-profiling –disable-shared –enable-static –with-extra-charsets=complex –with-pic –with-fast-mutexes –with-zlib-dir=bundled –with-ssl

my.ini add options

default-storage-engine=InnoDB
innodb_file_per_table=1
innodb_file_format=barracuda
innodb_strict_mode=1

but it can not start with “innodb_file_format=barracuda” error

if remove options

innodb_file_per_table=1
innodb_file_format=barracuda
innodb_strict_mode=1

it can start

but information_schema database have not performance tables
exam INNODB_TRX AND XTRADB*

it work Percona server 10 but can work with 11

how to install

I need your help