Initial commit
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
[package]
|
||||
name = "hello"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
@@ -0,0 +1,3 @@
|
||||
/* This is the simplest build script just to invoke host compiler
|
||||
in the build process. */
|
||||
fn main() {}
|
||||
@@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("Hello, OpenEmbedded world!");
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
test: test.o
|
||||
$(CC) -o test test.o -lm
|
||||
test.o: test.c
|
||||
$(CC) -c test.c
|
||||
|
||||
Reference in New Issue
Block a user