+ Reply to Thread
Results 1 to 1 of 1

Thread: Setting Up The Development Environment

  1. #1
    vbseo's Avatar
    vbseo is offline Member
    Join Date
    March 16th, 2008
    Posts
    79
    Blog Entries
    2
    Downloads
    114
    Uploads
    37

    Default Setting Up The Development Environment

    The build process needs to be run using a privileged account such as root. A prerequisite for the ISO creation step is to have mke2fs in the PATH.

    First, check out the sources at Accessing Project Kusu Source Code. To build Kusu, first make a directory which will contain the executables so as not to pollute your checkout with build artifacts:

    Code:
    $ mkdir workspace
    $ cd workspace
    
    Run cmake, pointing it to the checked-out Kusu trunk, then make:

    Code:
    $ cmake /path/to/kusu/trunk
    $ make
    
    Finally, source kusudevenv.sh to set some environment variables:

    Code:
    $ source kusuroot/bin/kusudevenv.sh
    
    Now all Kusu Python modules are available and Kusu executables should be accessible by your $PATH.
    Last edited by vbseo; September 29th, 2008 at 09:41 AM.

+ Reply to Thread

Posting Permissions

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