Implemented support for building host binaries to test kernel features
This commit is contained in:
4
sandbox/hello/Makefile
Normal file
4
sandbox/hello/Makefile
Normal file
@@ -0,0 +1,4 @@
|
||||
SANDBOX_PROG_NAME := hello
|
||||
|
||||
include ../sandbox-config.mk
|
||||
include ../sandbox-template.mk
|
||||
7
sandbox/hello/main.c
Normal file
7
sandbox/hello/main.c
Normal file
@@ -0,0 +1,7 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main(int argc, const char **argv)
|
||||
{
|
||||
printf("Hello, world\n");
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user