Chris Z <cziom2523@xxxxxxxxx> writes: > So how do I group non initialized global variables in GCC so that they come > out in the proper order? If you are using the GNU linker, use the --sort-common linker option. When using gcc to link, use -Wl,--sort-common. Ian