ChrisPei / gyp

Automatically exported from code.google.com/p/gyp
0 stars 0 forks source link

Can't build if v8 is hosted in a directory containing a space #372

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago

http://code.google.com/p/v8/issues/detail?id=2876

For some reason my harddrive had a label with a space. It was mounted in a 
directory whose name also contained that space.
V8 build infrastructure, however, didn't like that:

muelli@muelli-VirtualBox:/media/muelli/external data/chromium/src/v8$ make
PYTHONPATH="/media/muelli/external 
data/chromium/src/v8/tools/generate_shim_headers:" \
    GYP_GENERATORS=make \
    build/gyp/gyp --generator-output="out" build/all.gyp \
                  -Ibuild/standalone.gypi --depth=. \
                  -Dv8_target_arch=ia32 \
                  -S.ia32  -Dv8_enable_backtrace=1 -Darm_fpu=default -Darm_float_abi=default
make[1]: Entering directory `/media/muelli/external data/chromium/src/v8/out'
Makefile.ia32:274: warning: overriding commands for target 
`/media/muelli/external'
Makefile.ia32:272: warning: ignoring old commands for target 
`/media/muelli/external'
Makefile.ia32:276: warning: overriding commands for target 
`/media/muelli/external'
Makefile.ia32:274: warning: ignoring old commands for target 
`/media/muelli/external'
Makefile.ia32:278: warning: overriding commands for target 
`/media/muelli/external'
...

I expected it to build fine.

Mounting the drive in a directory without a space makes it work.

Original issue reported on code.google.com by 4tmue...@gmail.com on 4 Oct 2013 at 4:33