공유라이브러리를 참조하는 공유라이브러리를 작성할 때, 새로만든 공유라이브러리가 래퍼라이브러리가 되도록 할 수 있나요?

fracktal의 이미지

기존에 존재하는 공유라이브러리를 참조하는 새로운 공유라이브러리를 작성할 때,
기존 공유라이브러리의 함수를 랩핑 시키는 라이브러리로 만들 수 없나요?

실제로 작성해본 결과..
nm으로 확인해보면, U 타입으로 함수로 나타나서, 사용시에 링킹이 되지 않습니다.

예를 들어서, libhello1.so에는 hello1()과 hello2()가 정의되어 있고,

새로 작성하는 라이브러리인 hello2.c는 아래와 같습니다.
-------------------------------------
#include
#include "hello1.h"
#include "hello2.h"

int hello3()
{
printf("hello3\n");
return 0;
}

int hello4()
{
printf("hello4\n");
hello2();
return 0;
}
--------------------------------------

gcc -fPIC -c hello2.c
gcc -shared -L. -lhello1 -WI,-soname,libhello2.so.0 -o libhello2.so.0.0.0 hello2.o

으로 라이브러리를 작성하면,

nm으로 확인 결과

U hello2
0000055c T hello3
00000587 T hello4

hello1, hello2가 U 타입으로 나타나서, 사용시에는 링킹이 되지 않습니다만,

libhello1.so를 정적라이브러리로 만들지 않고서,
libhello2.so가 libhello1.so의 함수인 hello1(), hello2()를 사용할 수 있게 할 수 없나요?

cwryu의 이미지

hello1, hello2가 U로 나온다는 걸 잘못 쓰신 거겠죠?

그렇게 나오는 게 당연하고, (또 다른 라이브러리에 의존하는) 다른 라이브러리들도 마찬가지입니다. 그냥 -lhello2 -lhello1 그렇게 두 개를 링크해서 쓰시면 되죠.

그게 아니라 아예 하위 라이브러리를 링크하는 것 자체가 마음에 안 든다면.. dlopen 따위를 쓰는 수밖에 없겠네요.

fracktal의 이미지

헐.. 잘못 썼었네요..^^;

하위 라이브러리를 아예 래핑하려다 보니, 질문 드렸었습니다..^^..

그렇군요.. 답변 감사합니다...


'아.... 하루종일 놀고 싶다...'

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.