c++ - 在linux中用gcc命令编译C代码时如何包含lib

标签 c++ c linux gcc centos

我想运行位于桌面的 C 代码和位于其他位置的头文件。适合编译和执行的 GCC 命令应该是什么?我附上了下面的代码。在这方面,我正在寻求善意的考虑和帮助。

#include <config.h>
#endif

#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <fcntl.h>

#include </usr/include/pulse/simple.h>
#include </usr/include/pulse/error.h>

#define BUFSIZE 32

int main(int argc, char*argv[]) {

    /* The Sample format to use */
static const pa_sample_spec ss = {
    .format = PA_SAMPLE_S16LE,
    .rate = 44100,
    .channels = 2
};

pa_simple *s_in, *s_out = NULL;
int ret = 1;
int error;


/* Create a new playback stream */
if (!(s_out = pa_simple_new(NULL, argv[0], PA_STREAM_PLAYBACK, NULL, "playback", &ss, NULL, NULL, &error))) {
    fprintf(stderr, __FILE__": pa_simple_new() failed: %s\n", pa_strerror(error));
    goto finish;
}

  if (!(s_in = pa_simple_new(NULL, argv[0], PA_STREAM_RECORD, NULL, "record", &ss, NULL, NULL, &error))) {
    fprintf(stderr, __FILE__": pa_simple_new() failed: %s\n", pa_strerror(error));
    goto finish;
}

for (;;) {
    uint8_t buf[BUFSIZE];
    ssize_t r;

   #if 1
    pa_usec_t latency;

    if ((latency = pa_simple_get_latency(s_in, &error)) == (pa_usec_t) -1) {
        fprintf(stderr, __FILE__": pa_simple_get_latency() failed: %s\n", pa_strerror(error));
        goto finish;
    }

    fprintf(stderr, "In:  %0.0f usec    \r\n", (float)latency);

        if ((latency = pa_simple_get_latency(s_out, &error)) == (pa_usec_t) -1) {
        fprintf(stderr, __FILE__": pa_simple_get_latency() failed: %s\n",    pa_strerror(error));
            goto finish;
      }

        fprintf(stderr, "Out: %0.0f usec    \r\n", (float)latency);
#endif

        if (pa_simple_read(s_in, buf, sizeof(buf), &error) < 0) {

        fprintf(stderr, __FILE__": read() failed: %s\n", strerror(errno));
        goto finish;
    }

    /* ... and play it */
    if (pa_simple_write(s_out, buf, sizeof(buf), &error) < 0) {
        fprintf(stderr, __FILE__": pa_simple_write() failed: %s\n", pa_strerror(error));
        goto finish;
    }
}

/* Make sure that every single sample was played */
if (pa_simple_drain(s_out, &error) < 0) {
    fprintf(stderr, __FILE__": pa_simple_drain() failed: %s\n", pa_strerror(error));
    goto finish;
}

ret = 0;

finish:

if (s_in)
    pa_simple_free(s_in);
if (s_out)
    pa_simple_free(s_out);

return ret;
}

最佳答案

C 编译器通过以下方式包含头文件(通过 #include):

  1. #include "somename.h" : 它开始在 somefile.h 的源目录中搜索,如果在那里找不到它开始看起来像 (2)
  2. #include <somename.h> :它搜索一系列(系统相关的)目录。在类 Unix 系统(Linux、MacOS)中,这基本上是 /usr/include , 但可能会添加其他目录。

您可以在大多数编译器中通过 -I/some/path flags 控制它, 添加/some/path在序列 (2) 的开头。另请注意 somename.h以上可以包括/ , 所以如果你写

#include "this/file.h"

然后它寻找file.hthis当前目录中的目录。

关于c++ - 在linux中用gcc命令编译C代码时如何包含lib,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14392798/

相关文章:

linux - 执行文件中的命令

python - pypyodbc 在 isql 连接时不连接?

c++ - Visual Studio 2010 - 独立函数中的链接器错误

c - 未知符号 __class_create (错误 0)

在机器 1 上编译的 C++ 代码无法在机器 2 上运行,因为 "GLIBCXX_3.4.15 not found"

c - Flex 中 '(' 标记之前的预期标识符或 '{'

c - 在 C 中打开应用程序

linux - 从已编译的 bash 脚本中检索纯文本脚本

c++ - std::vector : 无法将 'std::ostream {aka std::basic_ostream<char>}' 左值绑定(bind)到 'std::basic_ostream<char>&&'

c++ - 如何从目录中获取最新的文件