반응형
* Refer to http://bugs.mysql.com/bug.php?id=55350
* make 시에 아래와 같은 오류 발생
------------------------------------------------------------------------------------------------------
gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include -I../sql -O3 -m32
-march=core2 -fomit-frame-pointer -pipe -fno-exceptions -DUNIV_LINUX
@ndbcluster_includes@ -c perror.c
gcc: @ndbcluster_includes@: No such file or directory
make[3]: *** [perror.o] Error 1
------------------------------------------------------------------------------------------------------
[Solution]
* configure 직후에 ./extra/Makefile에서 @ndbcluster_include@ 삭제 -- (1)
" ./sql/Makefile에서 @ndbcluster_inclide@, @NDB_SCI_LIBS@ 삭제 -- (2)
# ./configure --prefix=/user/service/mysql --with-mysqld-user=mysql --sysconfdir=/user/service/mysql/conf --with-unix-socket-path=/tmp/mysqld/mysql.sock --with-charset=utf8 --with-extra-charsets=all --with-plugins=innobase,myisam,semisync,partition
# vi ./extra/Makefile --(1)
# vi ./sql/Makefile --(2)
# make && make install
* Enjoy & have fun ~
반응형
'Technical > DBMS' 카테고리의 다른 글
MySQL replication : Statement-Based vs. Row-Based replication (0) | 2010.08.01 |
---|---|
MySQL replication 수동 복구(Slave 동기화) #2 (0) | 2010.07.29 |
Building mongodb r1.4.4 (0) | 2010.07.22 |
MySQL innotop 설치 & 사용(OpenSUSE 11.2 or Fedora 14, MySQL 5.1.44~5.5.4m3) (0) | 2010.07.22 |
MySQL ndbcluster & Replicator 설정 - help text (0) | 2010.06.25 |