From 9628d1e24c0f2510ab35996a7d9e27843faf7fa5 Mon Sep 17 00:00:00 2001 From: renehiemstra <152627545+renehiemstra@users.noreply.github.com> Date: Mon, 25 Nov 2024 21:41:48 +0100 Subject: [PATCH] Fix typo in README and add artifacts to .gitignore (#679) Co-authored-by: rrhiemstar --- .gitignore | 8 ++++++++ release/share/terra/README.md | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d3d42d9f3..de8902a11 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +/.idea +/cmake-build-debug /build /docs/_site /docs/_vendor @@ -18,6 +20,12 @@ /tests/dynlib /tests/dynlib.exe /tests/not_bc +/tests/class2 +/tests/inline_c.exe +/tests/objc +/tests/objc2 +/tests/stdio.exe + *.bc *.ll diff --git a/release/share/terra/README.md b/release/share/terra/README.md index 69269d1ca..56337c8d5 100644 --- a/release/share/terra/README.md +++ b/release/share/terra/README.md @@ -27,7 +27,7 @@ Installing Terra Terra currently runs on Linux (x86_64, AArch64, PPC64le), macOS (x86_64, AArch64), FreeBSD (x86_64), and Windows (x86_64). Binary releases for popular versions of these systems are available [online](https://github.com/terralang/terra/releases), and we recommend you use them if possible because building Terra requires a working install of LLVM and Clang, which can be difficult to get working. -Note that as of macOS 10.15 Catalina, in order to include C headers in Terra you will need to define the following evironment variable: +Note that as of macOS 10.15 Catalina, in order to include C headers in Terra you will need to define the following environment variable: export SDKROOT="$(xcrun --sdk macosx --show-sdk-path)"