aboutsummaryrefslogtreecommitdiff
path: root/manual tests/9 nostdlib/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'manual tests/9 nostdlib/meson.build')
-rw-r--r--manual tests/9 nostdlib/meson.build10
1 files changed, 10 insertions, 0 deletions
diff --git a/manual tests/9 nostdlib/meson.build b/manual tests/9 nostdlib/meson.build
new file mode 100644
index 0000000..3ef743e
--- /dev/null
+++ b/manual tests/9 nostdlib/meson.build
@@ -0,0 +1,10 @@
+project('own libc', 'c')
+
+# A simple project that uses its own libc.
+
+# Note that we don't need to specify anything, the flags to use
+# stdlib come from the cross file.
+
+exe = executable('selfcontained', 'prog.c')
+
+test('standalone test', exe)