비쥬얼 C++ 에서 cygwin dll 사용하기

체스맨의 이미지

cygwin.com 의 다음 링크에 소개된 방법입니다.
http://cygwin.com/faq/faq_3.html#SEC99
사실 위 문서만 봐도 어렵지 않게 하실 수 있으리라 생각됩니다.
저는 cygwin 으로 포팅된 X 라이브러리 DLL 을 비쥬얼 C++ 에서 호출하려는 목적으로 이 방법을 이용했습니다.

목차
1. cygwin1.dll 초기화 루틴 얻어내기
2. crt0.c 를 다운받아 수정하기
3. vc++ 컴파일러로 링크하기

1. cygwin1.dll 초기화 루틴 얻어내기

cygwin1.dll 내의 함수들이 올바로 작동하기 위해서는 main 함수 호출 전에 일련의 초기화 루틴이 실행되어야 합니다. cygwin 컴파일러를 이용하면 이것이 자동 처리되지만, vc++ 은 그렇지 않습니다. gcc 로부터 이 초기화 루틴을 뽑아내기 위해 다음과 같이 별도의 DLL 을 작성해야 합니다. ( 링크 문서 3번에 해당 )

vcrt0.c :

#include <sys/cygwin.h>
#include <stdlib.h>

void
vcrt0( int(*f)( int argc, char* argv[], char** env ) )
{
	cygwin_crt0(f);
}

vcrt0.def :

EXPORTS
vcrt0

다음 명령으로 vcrt0.dll 을 만듭니다.

Quote:

gcc -c vcrt0.c
gcc --dll -shared vcrt0.o -o vcrt0.dll

다음 명령으로 vcrt0.lib 을 만듭니다. ( vc++ 링커용 )
lib 명령은 vc++ 에 포함되어 있습니다.

Quote:

lib /def:vcrt0.def

2. crt0.c 를 다운받아 수정하기 (링크 문서 5번에 해당 )

다음 주소를 클릭하면 crt0.c 를 온라인상에서 볼 수 있습니다. 링크된 문서에도 언급돼 있지만, 이 파일을 사용함으로써, 결과물은 GPL 로 공개되어야 합니다.

http://sources.redhat.com/cgi-bin/cvsweb.cgi/~checkout~/src/winsup/cygwin/crt0.c?rev=1.3&content-type=text/plain&cvsroot=src

맨 아래줄을 보면, cygwin_crt0 (main); 부분이 있는데, 이것을 vcrt0 (main); 으로 수정합니다.

3. vc++ 컴파일러로 링크하기

응용 프로그램에 필요한 각종 모듈 이외에 다음 두 파일을 추가적으로 링크해야 합니다.

crt0.c 를 컴파일한 목적 파일 crt0.obj
vcrt0.lib

Forums: 
체스맨의 이미지

역으로 gcc 에서 vc++ dll ( msvcrt.dll 에 기반한 ) 을 호출하는 것은
직접 해본 결과, 별다른 문제 없이 잘 되는 것 같습니다.

참고로 임의 dll 에 대해, 임포트 라이브러리를 만들기 위해서는 def 파일이
필요한데, 수많은 함수를 포함하는 DLL 에 대한 def 파일을 직접 만들기
번거롭기 때문에 대개 다음과 같이 합니다.

1. impdef 이용
위 cygwin faq 에는 이것을 이용하라고 되어있는데, 제 기억으로 이 명령은
볼랜드 컴파일러에 포함되어 있었던 것 같습니다. 이 툴이 있으면 편하게 만들 수 있습니다.

2. dumpbin - sed 이용
dumpbin은 vc++ 에 포함돼 있습니다.

dumpbin /exports dll파일

출력 결과를 sed 로 잘 처리해서 def 파일을 만듭니다.
저는 이 방법을 이용했습니다.

3. nm - sed 이용
다음 링크를 참고 하세요.
http://www.cygwin.com/cygwin-ug-net/dll.html

def 파일이 만들어지면 cygwin 또는 vc++ 용 임포트 라이브러리를 만들기 위해 다음과 같이 합니다.

1. cygwin 용 : 위 nm - sed 이용 부분에 링크한 문서를 참고하세요.

2. vc++ 용 : 본문에도 언급돼 있듯이, lib 을 사용합니다.

Orion Project : http://orionids.org

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.