簡體   English   中英

報錯:系統找不到指定的路徑

[英]Make error: The system cannot find the path specified

運行 mingw32-make 命令時出現 Make 錯誤:

PS D:\> mingw32-make
cd src; mingw32-make
The system cannot find the path specified.
mingw32-make: *** [Makefile:4: all] Error 1

但是當我列出 Makefile 中列出的實際命令時,即cd src; mingw32-make cd src; mingw32-make ,構建成功完成。

PS D:\> cd src; mingw32-make
g++ -std=c++17 -Wall -Wextra -Wpedantic -Wformat -Wchkp -I../include -c account.cpp
g++ -std=c++17 -Wall -Wextra -Wpedantic -Wformat -Wchkp -I../include -c customer.cpp
g++ -std=c++17 -Wall -Wextra -Wpedantic -Wformat -Wchkp -I../include -c display.cpp
g++ -std=c++17 -Wall -Wextra -Wpedantic -Wformat -Wchkp -I../include -c main.cpp
g++ -std=c++17 -Wall -Wextra -Wpedantic -Wformat -Wchkp -I../include -c passbook.cpp
g++ -std=c++17 -Wall -Wextra -Wpedantic -Wformat -Wchkp -I../include -c security.cpp
g++ -std=c++17 -Wall -Wextra -Wpedantic -Wformat -Wchkp -I../include -c staff.cpp
g++ -o Bank account.o customer.o display.o main.o passbook.o security.o staff.o

但是,當我在 Ubuntu 上使用 Make 構建時,不存在此問題。

這是我根目錄中的 Makefile:

DIR = src

all:
    cd $(DIR); mingw32-make

clean:
    cd $(DIR); mingw32-make clean

這是我的 src 子目錄中的 Makefile:

# Compiler options
# -std=c++17 enables ISO C++ 17 standard

CC = g++
CCFLAGS = -std=c++17 -Wall -Wextra -Wpedantic - 
Wformat -Wchkp

i = ../include

# LOCFLAGS used to set tell the compiler where to find a
# header that is not in the same directory as the source 
file itself
# LOCFLAGS will be set in directory level makefiles as 
needed

LOCFLAGS = -I../include

# The list of object files that can be made in this 
subdirectory
# is assigned to the make macro named $OBJECTS

OBJECTS = account.o customer.o display.o main.o 
passbook.o \
      security.o staff.o

# This rule says that the target named "all" depends on 
those
# files. Executing "make all" in this subdirectory will cause
# make to build the object files (.o) listed in the macro 
$OBJECTS
# and create an executable named "Bank" by linking them

all: $(OBJECTS)
    $(CC) -o Bank $(OBJECTS)

# rule that says how to make a .o object file from a .cpp 
source file
# for a given source file in a given directory you could 
compile it
# into an object file by executing "make filename.o"

# $< and $@ are macros defined by make
#     $< refers to the file being processed (i.e., compiled or 
linked )
#     $@ refers to the generated file

%.o: %.cpp
    $(CC) $(CCFLAGS) $(LOCFLAGS) -c $<

# target to clean up the object files, core files and 
executables
# executing "make clean" in this subdirectory will remove 
all
# files named core, "Bank" or any file ending in .o or 
.stackdump

clean:
    del $(OBJECTS) core *.stackdump Bank

在 Windows 上,您正在運行命令。com shell,而不是 POSIX Z2591C98B70119FE6E9429。 在 command.com 中,語法cd src; mingw32-make cd src; mingw32-make是不合法的。 例如,如果我在 Windows 系統上打開一個 command.com 終端,我會看到:

C:\Users\build> cd src; echo hi
The system cannot find the path specified.

& command.com 命令分隔符是單個而不是分號。

如果您想以可移植的方式更改目錄,您可以使用 GNU make 的-C選項。 此外,您應該始終使用$(MAKE)變量,而不是手動寫出 make 命令:

all:
        $(MAKE) -C $(DIR)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM