Grub Customizer is a great GUI configurator for GRUB, currently the most common boot loader for ix86 and AMD64 hardware. The Customizer has issues compiling on some setups, especially later versions of gcc. Here’s what I found to do:
- Download grub-customizer-4.0.6.tar.gz, unpack.
ccmake .
- Resolve any missing libraries et cetera.
ccmake .
again until nothing missing. - Look for these files:
./CMakeFiles/grub-customizer.dir/flags.make
./CMakeFiles/grubcfg-proxy.dir/flags.make
- Add
-std=gnu++11
as first item toCXX_FLAGS
in both files. cmake .
- Again resolve any missing libraries et cetera.
cmake .
again until nothing missing. make
sudo make install