zoukankan      html  css  js  c++  java
  • PostgreSQL的configure 干了些什么(一)

    在编译postgresql 源码的时候,postgresql 的configure 干了些什么呢?

    应该是对系统进行了一系列的探测,比如OS种类之类。

    具体来说,这些探测的结果,表现在,运行后,生成下列的文件(以postgresql9.0.2为例):

    ./postgresql-9.0.2/config.log
    ./postgresql-9.0.2/config.status
    ./postgresql-9.0.2/GNUmakefile
    ./postgresql-9.0.2/src/backend/port/dynloader.c
    ./postgresql-9.0.2/src/backend/port/pg_sema.c
    ./postgresql-9.0.2/src/backend/port/pg_shmem.c
    ./postgresql-9.0.2/src/backend/port/tas.s
    ./postgresql-9.0.2/src/include/dynloader.h
    ./postgresql-9.0.2/src/include/pg_config.h
    ./postgresql-9.0.2/src/include/pg_config_os.h
    ./postgresql-9.0.2/src/include/stamp-h
    ./postgresql-9.0.2/src/interfaces/ecpg/include/ecpg_config.h
    ./postgresql-9.0.2/src/interfaces/ecpg/include/stamp-h
    ./postgresql-9.0.2/src/Makefile.global
    ./postgresql-9.0.2/src/Makefile.port

    与传统的make 不同,postgresql的configure 运行完毕后,要运行gmake和gmake install。

    所以也未生成 config.h头文件,而是生成 pg_config.h,还伴随着其他的文件。

  • 相关阅读:
    C# 动态加载卸载 DLL
    C# 判断文件编码
    win10 uwp 如何拖动一个TextBlock的文字到另一个TextBlock
    C# TextBlock 上标
    PHP curl_getinfo函数
    PHP curl_file_create函数
    PHP curl_errno函数
    PHP curl_error函数
    PHP curl_escape函数
    PostgreSQL Schema
  • 原文地址:https://www.cnblogs.com/gaojian/p/2596927.html
Copyright © 2011-2022 走看看