aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--content/2019-10-27-kernel-debugging-qemu/index.md (renamed from content/2019-10-27-kernel-debugging-qemu.md)0
-rw-r--r--content/2021-05-15-pthread_cancel-noexcept/index.md (renamed from content/2021-05-15-pthread_cancel-noexcept.md)0
-rw-r--r--content/2021-12-02-toying-with-virtio/index.md (renamed from content/2021-12-02-toying-with-virtio.md)0
-rw-r--r--content/2022-06-18-libclang-c-to-llvm-ir/index.md (renamed from content/2022-06-18-libclang-c-to-llvm-ir.md)0
-rw-r--r--content/2022-07-07-llvm-orc-jit/index.md (renamed from content/2022-07-07-llvm-orc-jit.md)2
5 files changed, 1 insertions, 1 deletions
diff --git a/content/2019-10-27-kernel-debugging-qemu.md b/content/2019-10-27-kernel-debugging-qemu/index.md
index 518b3d5..518b3d5 100644
--- a/content/2019-10-27-kernel-debugging-qemu.md
+++ b/content/2019-10-27-kernel-debugging-qemu/index.md
diff --git a/content/2021-05-15-pthread_cancel-noexcept.md b/content/2021-05-15-pthread_cancel-noexcept/index.md
index f09cadc..f09cadc 100644
--- a/content/2021-05-15-pthread_cancel-noexcept.md
+++ b/content/2021-05-15-pthread_cancel-noexcept/index.md
diff --git a/content/2021-12-02-toying-with-virtio.md b/content/2021-12-02-toying-with-virtio/index.md
index c2ff031..c2ff031 100644
--- a/content/2021-12-02-toying-with-virtio.md
+++ b/content/2021-12-02-toying-with-virtio/index.md
diff --git a/content/2022-06-18-libclang-c-to-llvm-ir.md b/content/2022-06-18-libclang-c-to-llvm-ir/index.md
index 7d3ee63..7d3ee63 100644
--- a/content/2022-06-18-libclang-c-to-llvm-ir.md
+++ b/content/2022-06-18-libclang-c-to-llvm-ir/index.md
diff --git a/content/2022-07-07-llvm-orc-jit.md b/content/2022-07-07-llvm-orc-jit/index.md
index 6868518..4b2add0 100644
--- a/content/2022-07-07-llvm-orc-jit.md
+++ b/content/2022-07-07-llvm-orc-jit/index.md
@@ -6,7 +6,7 @@ tags = ["llvm", "clang", "c++"]
+++
Based on the in-memory compiler shared in the last post ([C to LLVM IR in
-memory using libclang](@/2022-06-18-libclang-c-to-llvm-ir.md)), this post
+memory using libclang](@/2022-06-18-libclang-c-to-llvm-ir/index.md)), this post
demonstrates a small *just in time (JIT)* compiler which allows to compile C
code to host native code in-memory.