SupeChicken666

Results 76 comments of SupeChicken666

Almost every step that needs to involve a compiler is slower... For instance, `checking for stdio.h...` takes ~0.2s on `clang` but ~1s on `gcc`

(according to `config.log`, all header checks are called with `-c` option passed to the compiler, which tells the compiler not to link it using a linker (`Compile and assemble, but...

`crouton` should not be installed on Crostini (the Linux VM in Chrome OS)

Try `sudo curl -L https://goo.gl/fd3zc -o /usr/local/bin/crouton && sudo chmod +x /usr/local/bin/crouton`?

@jonicard See [here](https://neverware.zendesk.com/hc/en-us/community/posts/360033733113-Problem-installing-Crouton)

Read the crouton README and you will find a solution there :)

Try `export MESA_LOADER_DRIVER_OVERRIDE=i965`? (this will force mesa to fallback to an older driver that support kernels under 4.16)

Just remove the backsplash (`\`) between two folder paths from the remount command (with the `\` character, bash will think that it is a directory named `/media/removable/"Linux /media"/...`) And also,...

Well, crouton will not run the executable from `/usr/local/chroots/` directly (and `/usr/local/chroots` is a symlink points to `/mnt/stateful_partition/crouton`. Also, `/usr/local` allow executables, but because `/usr/local/chroots` points to an external folder...

> For instance, how would one replace the usage of `ENV['CREW_DISABLE_ENV_OPTIONS'] = '1'`? ```ruby # setvar({ varName, defaultValue }) setvar({ DISABLE_ENV_OPTIONS: false }) ``` The variable name `DISABLE_ENV_OPTIONS` will be...