我有一组可以在 Ubuntu 上正常编译的程序,并且我正在研究在 Windows 上编译的设置。我正在使用 MSYS2。
有一个主 Makefile,如下所示:
#### Project main directory
DIR_MAIN=$(shell pwd)
#### Compile all
all:
@$(MAKE) -C src/Misc DIR_MAIN=$(DIR_MAIN)
@$(MAKE) -C src/CF_states DIR_MAIN=$(DIR_MAIN)
等等。在src/
其中的文件夹中,每个文件夹都包含该项目的特定 Makefile。它们具有以下结构:
#### Directories and flags
ifndef $(DIR_MAIN)
DIR_MAIN=../..
endif
DIR_EXE=$(DIR_MAIN)/Programs
DIR_SRC=$(DIR_MAIN)/src/Misc
DIR_SFMT_SRC=$(DIR_MAIN)/src/sfmt
DIR_BLD=$(DIR_MAIN)/build/Misc
COMP=g++
COMPILE_FLAGS= -std=c++11 -O3 -lstdc++ -msse2
LINK_FLAGS= -O3 -fopenmp -lgsl -lgslcblas -lm -lhdf5_cpp -lhdf5
#### Compile all
all: setup $(DIR_BLD)/input.o $(DIR_BLD)/misc_sphere.o $(DIR_BLD)/misc.o
setup:
@mkdir -p $(DIR_BLD)
@mkdir -p $(DIR_EXE)
#### Misc source
$(DIR_BLD)/input.o: $(DIR_SRC)/input.cpp $(DIR_SRC)/input.h $(DIR_SRC)/misc_sphere.h
${COMP} -c input.cpp ${COMPILE_FLAGS} -o $@
$(DIR_BLD)/misc_sphere.o: $(DIR_SRC)/misc_sphere.cpp $(DIR_SRC)/misc_sphere.h $(DIR_SRC)/misc.h
${COMP} -c misc_sphere.cpp ${COMPILE_FLAGS} -o $@
$(DIR_BLD)/misc.o: $(DIR_SRC)/misc.cpp $(DIR_SRC)/misc.h
${COMP} -c misc.cpp ${COMPILE_FLAGS} -o $@
通过这种方式,可以src/
使用相对路径从它们的文件夹中运行特定的 Makefile,或者使用绝对路径从主 Makefile 运行。
这在 Ubuntu 上有效,但在 MSYS2 上只有相对路径有效,即从它们的文件夹中运行每个特定的 Makefile。当我使用
mingw32-make.exe
我得到错误
$ mingw32-make.exe
mingw32-make[1]: Entering directory 'C:/msys64/home/Jorgen/fqhe_mc_sphere/src/Misc'
mingw32-make[1]: *** No rule to make target '/home/Jorgen/fqhe_mc_sphere/src/Misc/input.cpp', needed by '/home/Jorgen/fqhe_mc_sphere/build/Misc/input.o'. Stop.
mingw32-make[1]: Leaving directory 'C:/msys64/home/Jorgen/fqhe_mc_sphere/src/Misc'
Makefile:8: recipe for target 'all' failed
mingw32-make: *** [all] Error 2
即使文件/home/Jorgen/fqhe_mc_sphere/src/Misc/input.cpp
在那里,我也可以使用ls
. 知道为什么吗?
编辑:
将第一个目标更改为除结果之外的相对路径,即
$(DIR_BLD)/input.o: input.cpp input.h misc_sphere.h
${COMP} -c input.cpp ${COMPILE_FLAGS} -o $@
我收到输出对象文件的类似错误:
Fatal error: can't create /home/Jorgen/fqhe_mc_sphere/build/Misc/input.o: No such file or directory
虽然该文件夹/home/Jorgen/fqhe_mc_sphere/build/Misc/
确实存在。
我尝试以管理员身份运行 MSYS2,但没有帮助。