U1077 Ошибка при запуске nmake на live555
Пытаюсь собрать live555 для windows. Я следовал инструкциям ( http://tujv.bitbucket.org/2016/02/building-live555/) и создал файлы make.
При запуске этой команды:
nmake /B -f liveMedia.mak
Это выводит это:
"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\cl" -c -Iinclude -I../UsageEnvironment/include -I../groupsock/include -I. -I"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\include" Media.cpp
"C:\Program" no se reconoce como un comando interno o externo,
programa o archivo por lotes ejecutable.
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\cl' : return code '0x1'
Stop.
Он говорит, что "C:\Program" не распознается как команда.
Обычно говорят, что когда путь с пробелами не имеет кавычек, но здесь есть кавычки в конце пути, я не понимаю, почему он не распознает его.
Вот начало liveMedia.mak, где установлена переменная пути:
INCLUDES = -Iinclude -I../UsageEnvironment/include -I../groupsock/include
PREFIX = /usr/local
LIBDIR = $(PREFIX)/lib
##### Change the following for your environment:
# Comment out the following line to produce Makefiles that generate debuggable code:
NODEBUG=1
# The following definition ensures that we are properly matching
# the WinSock2 library file with the correct header files.
# (will link with "ws2_32.lib" and include "winsock2.h" & "Ws2tcpip.h")
TARGETOS = WINNT
# If for some reason you wish to use WinSock1 instead, uncomment the
# following two definitions.
# (will link with "wsock32.lib" and include "winsock.h")
#TARGETOS = WIN95
#APPVER = 4.0
#!include <ntwin32.mak>
UI_OPTS = $(guilflags) $(guilibsdll)
# Use the following to get a console (e.g., for debugging):
CONSOLE_UI_OPTS = $(conlflags) $(conlibsdll)
CPU=i386
TOOLS32 = C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC
COMPILE_OPTS = $(INCLUDES) $(cdebug) $(cflags) $(cvarsdll) -I. -I"$(TOOLS32)\include"
C = c
C_COMPILER = "$(TOOLS32)\bin\cl"
C_FLAGS = $(COMPILE_OPTS)
CPP = cpp
CPLUSPLUS_COMPILER = $(C_COMPILER)
CPLUSPLUS_FLAGS = $(COMPILE_OPTS)
Если кто-то видит ошибку или способ ее обойти, я был бы очень благодарен
заранее спасибо