From b0b5fe442c65a51e590cbb94fdcd7eda1956d18a Mon Sep 17 00:00:00 2001 From: Shigma Date: Thu, 23 Jun 2022 02:30:20 +0800 Subject: [PATCH 1/2] chore: fix 2 typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 05d3ceb..51ef7f6 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # base16384 -> **Note**: This project used the awesome cross-patfrom binary compiling tool [cosmopolitan](https://github.com/jart/cosmopolitan) +> **Note**: This project used the awesome cross-platform binary compiling tool [cosmopolitan](https://github.com/jart/cosmopolitan) -Encode binary file to printable utf16be, and vise versa. +Encode binary file to printable utf16be, and vice versa. ## Description 说明 Use 16384 Chinene characters (from \u4E00 to \u8DFF) as the "alphabet", just like what base64 did. From 6802e716b1790f0dab46b0d05789bf86b8060cf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BA=90=E6=96=87=E9=9B=A8?= <41315874+fumiama@users.noreply.github.com> Date: Sat, 15 Oct 2022 23:37:17 +0800 Subject: [PATCH 2/2] try to fix shared-library-lacks-prerequisites --- CMakeLists.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9072d00..5dd141b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,9 +10,7 @@ if (${isBigEndian}) add_definitions(-DWORDS_BIGENDIAN) endif() -IF(NOT (CMAKE_SYSTEM_NAME MATCHES "Darwin")) - add_compile_options("-lc") -ENDIF() +add_link_options("-lc") IF(CMAKE_SIZEOF_VOID_P EQUAL 8) add_library(base16384 SHARED base1464.c)