C-hunks?
Make a separate file, str.c, put in :
. char BigString[] = " <your string here>";
compile this, then link the str.o to your main program. Declare the
string there as
. extern char *BigString;
should work fine, and your compiler woun't have to re-compile the string
each time.