Sébastien Celles

Results 294 comments of Sébastien Celles

During the end of provisioning we can see ``` XCSoarDevEnv: Cloning into 'xcsoar-src'... XCSoarDevEnv: done. XCSoarDevEnv: Submodule 'android/UsbSerial' (git://github.com/XCSoar/UsbSerial) registered for path 'android/UsbSerial' XCSoarDevEnv: Submodule 'android/ioio' (git://github.com/xcsoar/ioio) registered for path...

I would like to be able to edit source from host, compile on the guest (which works fine now) but also run GUI on the guest. So that last part...

Not sure `rsync__exclude: ['./output']` is the correct value because I lost my `output` folder on the guest OS. Steps to reproduce the problem On guest: ``` cd /xcsoar-host-src make TARGET=UNIX...

I can confirm that `rsync__exclude: ['../../output']` doesn't work also (even when destroying and rebuilding a new VM). Maybe an other workaround to avoid `output` directory being lost when rsyncing could...

I didn't noticed previously in https://xcsoar.readthedocs.io/en/latest/build.html `TARGET_OUTPUT_DIR` parameter which could be a good workaround ```bash make TARGET=UNIX TARGET_OUTPUT_DIR=~/output ``` with such a solution, maybe normal synced folder could be used...

Unfortunately the build system doesn't seems to take account of this parameter for download ``` vagrant@XCSoarDevEnv:/opt/xcsoar$ make TARGET=UNIX TARGET_OUTPUT_DIR=~/output GET output/download/boost_1_77_0.tar.bz2 download https://boostorg.jfrog.io/artifactory/main/release/1.77.0/source/boost_1_77_0.tar.bz2 Traceback (most recent call last): File "/xcsoar-host-src/./build/download.py",...

According to [build/libboost.mk](https://github.com/XCSoar/XCSoar/blob/master/build/libboost.mk) and [build/dirs.mk](https://github.com/XCSoar/XCSoar/blob/master/build/dirs.mk) make TARGET=UNIX OUT=~/ouput should work

I'm facing an other problem using `OUT` parameter... ``` vagrant@XCSoarDevEnv:/opt/xcsoar$ make TARGET=UNIX OUT=~/output CXX /home/vagrant/output/UNIX/dbg/src/ResourceLoader.o In file included from src/ResourceLoader.cpp:46: /home/vagrant/output/UNIX/include/resource_data.h:26:1: error: could not convert '{resource_IDR_FAIL}' from '' to 'ConstBuffer'...

After running make -j 4 TARGET=UNIX OUT=~/output I'm currently facing make: *** No rule to make target 'output/data/COPYING.gz', needed by '/home/vagrant/output/data/COPYING.gz.c'. Stop. make: *** Waiting for unfinished jobs.... I have...

The problem with sync (even rsync) is that it is on folder basis... and so even if xcsoar repository on host doesn't have an ouput folder, and this folder is...