Makefile仅适用于MSYS2(WIndows)上的相对路径

时间:2016-05-17 22:25:38

标签: windows path makefile relative-path msys2

我有一组可以在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 $@

通过这种方式,特定的Makefile可以使用相对路径从src/中的文件夹运行,也可以使用绝对路径从主Makefile运行。

这适用于Ubuntu,但在MSYS2上只有相对路径可以工作,即从其文件夹中运行每个特定的Makefile。当我使用

运行主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但没有帮助。

1 个答案:

答案 0 :(得分:4)

您正在将POSIX路径与Windows路径混合并运行mingw32-make,它不了解POSIX路径。

如用户657267所示,请改用make。否则,您可以使用mklink / D来制作技巧,在Windows上创建与POSIX相同的路径。在这里,您应该将C:\ home链接到C:\ msys64 \ home。