diff --git a/misc/kf/build.yaml b/misc/kf/build.yaml new file mode 100644 index 0000000..ab57cc6 --- /dev/null +++ b/misc/kf/build.yaml @@ -0,0 +1,9 @@ +compilers: + cxx: clang++ + ld: clang++ + +targets: + cc: + kf: + - io.cc + - kf.cc \ No newline at end of file diff --git a/misc/kf/io.h b/misc/kf/io.h new file mode 100644 index 0000000..ed14085 --- /dev/null +++ b/misc/kf/io.h @@ -0,0 +1,10 @@ +#ifndef __KF_IO_H__ +#define __KF_IO_H__ + +// TODO(kyle): make this selectable by architecture. + +class IO { + +}; + +#endif // __KF_IO_H__ \ No newline at end of file diff --git a/misc/kf/kf.cc b/misc/kf/kf.cc new file mode 100644 index 0000000..abb3494 --- /dev/null +++ b/misc/kf/kf.cc @@ -0,0 +1,8 @@ +#include "io.h" + + +int +main(void) +{ + return 0; +} \ No newline at end of file