CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Dec 2010
    Posts
    907

    Why Netbeans make use of Posix path style?

    Code:
    "/D/mingw64/bin/make.exe" -f nbproject/Makefile-Debug.mk QMAKE=/F/QT5/qt-everywhere-opensource-src-5.1.0/qtbase/bin/qmake.exe SUBPROJECTS= .build-conf
    /usr/bin/sh: /D/mingw64/bin/make.exe: No such file or directory
    make: *** [.build-impl] Error 127

    My paths:
    Code:
    D:\mingw64\bin>path
    PATH=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32
    \WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x86;C:\
    Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x64;C:\Program Files (x86)\ATI Tech
    nologies\ATI.ACE\Core-Static;C:\Program Files\Lucidlogix Technologies\VIRTU MVP;
    C:\Program Files\Common Files\Autodesk Shared\;C:\Program Files (x86)\Autodesk\B
    ackburner\;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x86;C:\Program Files
    (x86)\Intel\OpenCL SDK\2.0\bin\x64;E:\bat;E:\dlls;D:\mingw64\bin;D:\mingw32\bin;
    E:\Software\Q\qt-4.7.4\4.7.4-qt-x64\bin;D:\Portable\apache-ant-1.9.2\bin;C:\cygw
    in\bin;E:\Programming\C++\3D Programming\OGRE\OgreSDK_vc10_v1-8-1\bin;C:\Program
     Files (x86)\CMake 2.8\bin
    I've tried to exclude cygwin in the path to no avail

    I am receiving this error when try to compile a QT C++ project
    Thanks
    Jack

  2. #2
    Join Date
    May 2001
    Location
    Germany
    Posts
    1,158

    Re: Why Netbeans make use of Posix path style?

    While your PATH point to D:\mingw32\bin, your shell complains about "/D/mingw64/bin/make.exe", so maybe there is a colon missing after the "D"?

  3. #3
    Join Date
    Aug 2000
    Location
    West Virginia
    Posts
    7,721

    Re: Why Netbeans make use of Posix path style?

    Have you verified the location of make.exe ?

    On my system, it is located at:

    /C/MinGW/msys/1.0/bin

    not

    /C/MinGW/mingw32/bin

    (I only have the 32 bit version, and it is on C not D on my system)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured