summaryrefslogtreecommitdiff
path: root/build.rs
diff options
context:
space:
mode:
authorDario Bartussek <[email protected]>2021-04-19 13:50:42 +0200
committerDario Bartussek <[email protected]>2021-04-19 13:50:42 +0200
commit1f8f4e05410df148b7f3c3fd35f85c9b37d0401f (patch)
tree02f04335c9c2a9497b9c4a7113e0d1338194d674 /build.rs
parentMerge branch '2_3ds_exe' of https://github.com/dbartussek/rust_3ds into 2_3ds... (diff)
downloadrust_3ds-2.5_libctru.tar.xz
rust_3ds-2.5_libctru.zip
Simple hello world program using libctru2.5_libctru
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/build.rs b/build.rs
deleted file mode 100644
index 5a33378..0000000
--- a/build.rs
+++ /dev/null
@@ -1,7 +0,0 @@
-fn main() {
- cc::Build::new()
- .target("arm-none-eabihf")
- .compiler("clang")
- .file("src/start.s")
- .compile("start");
-}