개발
-
Autotools개발/형상(?) 관리 2009. 7. 19. 00:12
autoconf automake libtool autoscan -> configure.scan -> configure.ac # Process this file with autoconf to produce a configure script. AC_INIT(eostk, 1.0, sylee@inzen.com) AM_INIT_AUTOMAKE(eostk, 1.0) AM_CONFIG_HEADER(config.h:config.h.in) # Checks for programs. AC_PROG_CC AC_PROG_INSTALL # Checks for libraries. AC_CHECK_LIB(socket, connect) # Checks for header files. AC_HEADER_DIRENT # Checks fo..
-
indent개발/정적 분석 2009. 7. 18. 19:12
여기에서 'indent-2.2.10-bin.zip'을 다운받아 압축을 풀고 해당 위치에 복사한다. Indent 사용은 $ indent -st -kr slithy_toves.c > slithy_toves.out 참조 사이트: http://torch.cs.dal.ca/~johnston/unix/indent.html http://terzeron.net/wp/?p=402 http://wiki.kldp.org/wiki.php/LinuxdocSgml/C-C++Beautifier-HOWTO
-
Open Source개발/기타 2009. 7. 15. 01:26
Windows Directory Statistics Cygwin/X, Cygwin's implementation of the X server for Microsoft Windows, uses the X.Org Server, as do VcXsrv[28] (Visual C++ X-server[29]) and Xming. PuTTY: a free SSH and Telnet client 리눅스아파치이클립스파이어폭스마이SQL제이쿼리 NoSQL(Not Only SQL)하둡 애플리케이션 영역펜타호나 JBPM, 알프레스코, 컴피에르, 수가CRM 스프링(Spring)삼성SDS의 '애니프레임'LG CNS의 '데브온 자바'SK C&C의 '넥스코어' NHN ‘익스프레스엔진(콘텐츠 관리)’과 ‘큐브리드(DBMS)’, ‘nFO..
-
Eclipse개발/IDE 2009. 7. 15. 01:18
D:\eclipse-workspace\.metadata\.plugins\org.eclipse.core.resources\.projects-Eclipse 3.0 2004.06.28 3.0Eclipse 3.1 2005.06.28 3.1Callisto(칼리스토) 2006.06.30 3.2Europa(유로파) 2007.06.27 3.3Ganymede(가니메데) 2008.06.25 3.4Galileo(갈릴레오) 2009.06.24 3.5Helios(헬리오스) 2010.06.23 3.6eclipse 3.7 = indigo 인디고 2011 WTP(Web Tools Platform)Java EE 개발자 버전 C:\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tm..
-
Cygwin개발/기타 2009. 7. 13. 22:15
여기에서 Cygwin을 인스톨한다. Devel - gcc-g++ Devel - libncurses-devel Devel - flex Devel - bison Devel - ctags Devel - make Devel - autoconf Devel - automake Devel - libtool Editors - vim 사용은 $ ./configure --prefix=/usr/local $ make $ make install $ export CC='gcc -mno-cygwin' $ export CXX='gcc -mno-cygwin' $ ./configure --host=mingw32 --build=mingw32 --target=mingw32 /* or $ CC='gcc -mno-cygwin' CXX='g+..