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

    Attach Blender Source Code to Netbeans?

    Hi,
    The Blender project is properly configurated by CMake and I ran the makefile as well
    which was successful. But Now I want to attach it to Netbeans so that I can
    have some GUI debugger to work with.

    I use
    1) New application from existing source
    2) I select the root directory of the build say
    C:\Blender\Source
    C:\Blender\Lib
    C:\Blender\blenderbuild
    I point it to the third option.
    next, I chose Custom Configuration Mode
    I use an existing Makefile as it works correctly before
    Working Directory I chose C:\Blender\blenderbuild
    Source Folder I also chose C:\Blender\blenderbuild cos it contains some interns and libs and stuff
    Code Assistance I used Automatic
    Project Name I chose BlenderSVN
    Project Location: C:\Blender
    Project Folder: C:\Blender\BlenderSVN

    And this error occurs
    Makefile:142: recipe for target `all' failed
    process_begin: CreateProcess(NULL, /C/mingw64/bin/make.exe -f CMakeFiles\Makefile2 all, ...) failed.
    make (e=2): System can not find the file specified。

    make: *** [all] Error 2


    BUILD FAILED (exit value 2, total time: 715ms)
    I double check on
    C:\Blender\blenderbuild\CMakeFiles\Makefile2 does exist
    In line 142, it contains
    # The main all target
    all: cmake_check_build_system
    $(CMAKE_COMMAND) -E cmake_progress_start C:\Blender\blenderbuild\CMakeFiles C:\Blender\blenderbuild\CMakeFiles\progress.marks
    $(MAKE) -f CMakeFiles\Makefile2 all
    $(CMAKE_COMMAND) -E cmake_progress_start C:\Blender\blenderbuild\CMakeFiles 0
    .PHONY : all

    What other possibilities of compilation bugs are there?
    Thanks
    Jack
    Last edited by lucky6969b; February 21st, 2014 at 02:59 AM.

  2. #2
    Join Date
    Apr 2000
    Location
    Belgium (Europe)
    Posts
    4,626

    Re: Attach Blender Source Code to Netbeans?

    I would guestimate:
    you're saying the file exists, but are you sure that the current path is set to c:\blender\blenderbuilds when it's trying to process CMakefiles/Makefile2

  3. #3
    Join Date
    Dec 2010
    Posts
    907

    Re: Attach Blender Source Code to Netbeans?

    Sorry for making things complicated. The current path surely is C:\blender\blenderbuild
    And what inside this folder, is a subfolder called CMakeFiles, what inside it is the Makefile2
    When Netbeans is trying to run, I think this Makefile2 file is called from the root Makefile, then
    it starts crashing.
    Thanks
    Jack

  4. #4
    Join Date
    Dec 2010
    Posts
    907

    Re: Attach Blender Source Code to Netbeans?

    -- Configuring done
    -- Generating done
    -- Build files have been written to: E:/Blender/blenderbuild
    process_begin: CreateProcess(NULL, /C/mingw64/bin/make.exe -f CMakeFiles\Makefile2 all, ...) failed.
    make (e=2): �t�Χ䤣���w���ɮסC

    No idea what's going on? also tried to use the 32-bit mingw/msys make.exe to no avail

  5. #5
    Join Date
    Dec 2010
    Posts
    907

    Re: Attach Blender Source Code to Netbeans?

    When I use msys make,

    Microsoft Windows [���� 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation. All rights reserved

    And wait for an hour without any more output...

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