gpt4 book ai didi

c++ - makefile 中的条件变量

转载 作者:行者123 更新时间:2023-11-30 05:44:55 24 4
gpt4 key购买 nike

我正在尝试使用 makefile 在我的代码中允许不同类型的并行性。过去,我只会使用完全不同的 makefile/代码版本,但我正在努力提高我的水平。

首先,我想制作一个串行和 OpenMP 版本。如果我正在构建 OpenMP 版本,我想使用 -DUSEOMP 标志,但在这种情况下我无法重新定义 DEFS 变量。这是我现在的 makefile:

# the c++ compiler we are using
CXX = g++
# the executable file to be created
EXE = disrecon.exe
# the c++ flags we use for compilation
CXXFLAGS = -Wall
# #defines to the program
DEFS =

# the object files
OBJS =

serial: $(OBJS) xdriver.cpp
@echo "Making serial version"
$(CXX) $(CXXFLAGS) -o $(EXE) xdriver.cpp $(OBJS) $(DEFS)

omp: $(OBJS) xdriver.cpp
@echo "Making OpenMP version"
DEFS += -DUSEOMP
$(CXX) $(CXXFLAGS) -o $(EXE) xdriver.cpp $(OBJS) $(DEFS)


clean:
rm -rf *.o

默认情况下,这应该制作串行版本,但如果我指定 make omp,则制作 omp 版本。现在,我无法重新定义(或添加到)DEFS 变量。稍后我需要为其他包含的库等执行此操作,那么我该如何添加到特定部分的变量列表中呢?

最佳答案

我首先尝试了 shell 变量方法,但是 Make target-specific变量应该是最好的方法。您可以添加以下行

omp: DEFS += -DUSEOMP

到你的 Makefile,它应该看起来像

# the c++ compiler we are using
CXX = g++
# the executable file to be created
EXE = disrecon.exe
# the c++ flags we use for compilation
CXXFLAGS = -Wall
# #defines to the program
DEFS =

# the object files
OBJS =

serial: $(OBJS) xdriver.cpp
@echo "Making serial version"
$(CXX) $(CXXFLAGS) -o $(EXE) xdriver.cpp $(OBJS) $(DEFS)

omp: DEFS += -DUSEOMP

omp: $(OBJS) xdriver.cpp
@echo "Making OpenMP version"
$(CXX) $(CXXFLAGS) -o $(EXE) xdriver.cpp $(OBJS) $(DEFS)


clean:
rm -rf *.o

关于c++ - makefile 中的条件变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29580637/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com