如何将gcc include目录添加到现有的Makefile中

时间:2015-03-03 17:25:19

标签: c++ linux gcc makefile

我有一个Makefile,我已经复制并在我用C for Linux编写的许多小程序中使用。遗憾的是,我不了解其工作原理的每一个细节,我通常只是注释输出文件的名称并插入我想要的名称,它会成功编译我的程序。我想使用这些说明:

拥有命令行编译器的用户通常会使用' / I%SQLAPIDIR%\ include'等选项。或者' -I $ {SQLAPIDIR} / include'。头文件位于SQLAPI ++发行版的include子目录中

这样我的Makefile会在编译时添加库。我检查了这个网站,发现了以下链接,但他们没有帮助:

What are the GCC default include directories?

how to add a new files to existing makefile project

Adding an include directory to gcc *before* -I

我尝试包含目录....

OBJS =  testql.o
CC = g++
DEBUG = -g
SQLAPI=/home/developer/Desktop/ARC_DEVELOPER/user123/testsql/SQLAPI
CFLAGS = -I${SQLAPI}/include -Wall -c $(DEBUG)
LFLAGS = -Wall $(DEBUG)

testql: $(OBJS)
    $(CC) $(LFLAGS) $(OBJS) -o testql

clean:
    rm -f testql *.o *~ core

当我运行下面的代码时,我收到错误:

[developer@localhost testql]$ make
g++    -c -o testql.o testql.cpp
testql.cpp:2:44: fatal error: SQLAPI.h: No such file or directory
#include <SQLAPI.h> // main SQLAPI++ header

目录是这样的:

[developer@localhost testql]$ ls -l
total 12
-rw-rw-r--. 1 developer developer  286 Mar  3 12:47 Makefile
drwxr-xr-x. 7 developer developer 4096 Oct 16 02:08 SQLAPI
-rw-rw-r--. 1 developer developer 1169 Mar  3 11:43 testql.cpp

SQLAPI目录就是这样:

[developer@localhost testql]$ ls SQLAPI/include/SQLAPI.h
SQLAPI/include/SQLAPI.h

...代码

 #include <stdio.h>  // for printf
  #include <SQLAPI.h> // main SQLAPI++ header

int main(int argc, char* argv[])
{
SAConnection con; // create connection object

try
{
    // connect to database
    // in this example it is Oracle,
    // but can also be Sybase, Informix, DB2
    // SQLServer, InterBase, SQLBase and ODBC
    con.Connect(
        "test",     // database name
        "tester",   // user name
        "tester",   // password
        SA_Oracle_Client);

    printf("We are connected!\n");

    // Disconnect is optional
    // autodisconnect will ocur in destructor if needed
    con.Disconnect();

    printf("We are disconnected!\n");
}
catch(SAException &x)
{
    // SAConnection::Rollback()
    // can also throw an exception
    // (if a network error for example),
    // we will be ready
    try
    {
        // on error rollback changes
        con.Rollback();
    }
    catch(SAException &)
    {
    }
    // print error message
    printf("%s\n", (const char*)x.ErrText());
}

return 0;
}

3 个答案:

答案 0 :(得分:2)

嗯,如果你看一下make调用的编译行,问题就很明显了:

g++    -c -o testql.o testql.cpp

这里没有-I标志。问题是CFLAGS变量用于编译C代码,但您正在编译C ++代码。如果要设置特定于C ++编译器的标志,则需要设置CXXFLAGS

但是,对于所有预处理程序标志,您应该使用CPPFLAGS; C和C ++编译器(以及调用预处理器的其他工具)使用的。所以使用:

CPPFLAGS = -I${SQLAPI}/include
CFLAGS = -Wall $(DEBUG)
CXXFLAGS = $(CFLAGS)

答案 1 :(得分:0)

定义变量SQLAPI,使其值为安装SQLAPI的目录。

然后使用变量来定义CFLAGS

SQLAPI=/directory/where/sqlapi/is/installed 

CFLAGS =  -I${SQLAPI}/include -Wall -c $(DEBUG)

答案 2 :(得分:0)

在您的MakeFile中,如下修改CMAKE_CXX_FLAGS:

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -I/path/to/your/folder")