579c4bec6e
Add CROSSCOMPILING_EMULATOR target property for executables. This is used by subsequent patches to run exectuables created for the target system when crosscompiling. The property is initialized by the CMAKE_CROSSCOMPILING_EMULATOR variable when defined.
16 lines
184 B
C
16 lines
184 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char * argv[] )
|
|
{
|
|
int ii;
|
|
|
|
printf("Command:");
|
|
for(ii = 1; ii < argc; ++ii)
|
|
{
|
|
printf(" \"%s\"", argv[ii]);
|
|
}
|
|
printf("\n");
|
|
|
|
return 42;
|
|
}
|