For example, can the output of ‘uname -a’ be used to create the COMPILED_ON macro below?
#include <stdio.h>
#define COMPILED_ON `call uname -a and use the output as a quoted string'
int main( int argc, char **argv ) {
printf( COMPILED_ON );
return 0;
}
no, but: