configure로 소스코드 makefile 생성 시 라이브러리와 실행파일 구분 방법

netmania78의 이미지

리눅스 공부 중에 궁금 사항 있어서 문의 드립니다.

./configure로 소스코드를 컴파일 하기 위해 makefile 생성 시

가령 php 설치 시 다음 처럼 옵션을 사용한다면
# ./configure --/prefix=/usr/local/php \
--with-gd=설치 디렉토리 \
--with-zlib-dir=설치 디렉토리 \
--with-mcrypt=설치 디렉토리 \

각 옵션에 사용된 확장들의 설치 정보는 다음과 같습니다.
[root@fedora14 ~ ]# rpm -ql gd
/usr/lib/libgd.so.2
/usr/lib/libgd.so.2.0.0

[root@fedora14 ~ ]# rpm -ql zlib
/lib/libz.so.1
/lib/libz.so.1.2.5

[root@fedora14 ~ ]# rpm -ql mcrypt
/usr/bin/mcrypt
/usr/bin/mdecrypt

gd, zlib는 라이브러리 형태(ELF 32-bit LSB shared object) 이고
mcrypt는 실행 파일 형태(ELF 32-bit LSB executable) 입니다.

./configure --help로 확인 하였더니 라이브러리의 경우
어떤 것은 --with-xxx, 어떤 것은 --with-xxx-dir으로 옵션을 주더군요..

위의 경우 라이브러리와 실행파일을 일반적으로 어떻게 구분 하여 옵션을 줘야 하나요?
그리고 configure 프로세스는 이 둘을 어떻게 구분할까요?

또한 빌드 과정에서 라이브러리는 링크 될꺼라 생각되지만,
실행 파일은 어떻게 링크(?)가 되는 건가요??

익명 사용자의 이미지

--with-xxx 같은 경우는 관련 소스를 complete 셋으로 완전히 내장해서 모조리 컴파일하려 할때 종종 쓰는 방식일겁니다. (--with-xxx-dir이 그런건지도...)
예를 들어 --with-gd같은 경우 gd 소스가 소스트리에 같이 있는 경우. 그렇지 않은 경우는 그냥 --with-xxx 필요 없을겁니다.
src.rpm의 spec 파일을 확인해보세요. 힌트는 거기에 모두 있습니다.
그리고 컴파일때는 보통 실행파일을 지정하는 경우는 드물고 gd-devel 같은 패키지가 따로 필요할 수 있습니다. src.rpm의 DEPS 관련 섹션을 참고하세요.

netmania78의 이미지

src.rpm과 xxx-devel에 대해서 알아 보겠습니다. 감사합니다.

댓글 달기

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