diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2022-12-19 18:54:41 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2022-12-19 18:54:41 +0100 |
commit | 1c123a75e9b17858b783fbc6533417bdfa9794eb (patch) | |
tree | 72b0e3d48553b31b37cc2271de446f9ddfd915ef | |
parent | df9ac27b1048713207d2314407079586a080fc4f (diff) | |
download | blog-1c123a75e9b17858b783fbc6533417bdfa9794eb.tar.gz blog-1c123a75e9b17858b783fbc6533417bdfa9794eb.zip |
Migrate pages with assets according to zola best practice
https://www.getzola.org/documentation/content/overview/#asset-colocation
-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. |