diff --git a/.gitignore b/.gitignore index d3d42d9f..de8902a1 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 69269d1c..56337c8d 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)"