> I did git pull, > then: > > > > scons -c > > scons -f SConstruct.userlibs -c > (which fails) > > scons -f SConstruct.loader -c > > > How can I clean my project and config without deleting dir and > downloading it again? > > > I tried to deploy again configurations script and save new > configuration, same effect. > > > Where is config.toolchain_userspace inititalized and how? In > config/configuration.py I found declaration and init of class > configurations, where this member is initialized to None, but I can > not find the point where it isreinitialized with my personal config...
Hi Drasko A few points here: 1. I assume you are working on the devel branch and not the master branch. The sources in master branch are not up-to-date as of now, we will update it asap. 2. The option for separate kernel and userspace brances we have added with v3 release, when you do configure(./configure.py) or build(./build.py), you will see we have some new configuration options under 'Toolchain Prefix' menu. So, the required values are supplied from this place to the build system. So, in short, 1. Clone codezero or do a pull(as you have already done). 2. Goto devel branch using : 'git checkout -b devel --track origin/devel' 3. Cleanup any old build directory if you have: rm -rf codezero/build 4. Do a fresh compilation: ./build.py This should solve your problem -- Thanks Amit Mahajan _______________________________________________ codezero-devel mailing list codezero-devel@lists.l4dev.org http://lists.l4dev.org/mailman/listinfo/codezero-devel