精品国产人成在线_亚洲高清无码在线观看_国产在线视频国产永久2021_国产AV综合第一页一个的一区免费影院黑人_最近中文字幕MV高清在线视频

0
  • 聊天消息
  • 系統消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術視頻
  • 寫文章/發帖/加入社區
會員中心
創作中心

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

3天內不再提示

RT_Smart GNU移植minizip記錄

冬至子 ? 來源:TimWcx ? 作者:TimWcx ? 2023-09-14 11:42 ? 次閱讀

由于minizip除了依賴于文件一些操作函數外并不依賴于其他庫,所以個人直接編譯運行;另外本次移植的是使用的xmake完成移植。

移植記錄

1、選擇合適的移植庫,xmake提供了一些可以跨平臺移植的庫,這里我選擇了minizip來進行移植。

2、編寫xmake.lua配置ToolChains并且引入minizip依賴

add_rules("mode.debug", "mode.release")
toolchain("aarch64-linux-musleabi")
set_kind("standalone")
set_sdkdir("$(projectdir)/../../tools/gnu_gcc/aarch64-linux-musleabi_for_x86_64-pc-linux-gnu")
on_load(function(toolchain)
os.setenv("PROJ_DIR", os.projectdir()) --For lua embed build script
toolchain:load_cross_toolchain()
toolchain:set("toolset", "cxx", "aarch64-linux-musleabi-g++")
toolchain:set("toolset", "cc", "aarch64-linux-musleabi-gcc")
-- add flags for aarch64
toolchain:add("cxflags", "-march=armv8-a -D__RTTHREAD__ -Wall -n --static -DHAVE_CCONFIG_H", {force = true})
toolchain:add("ldflags", "-march=armv8-a -D__RTTHREAD__ -Wall -n --static", {force = true})
toolchain:add("ldflags", "-T $(projectdir)/../../linker_scripts/aarch64/link.lds", {force = true})
if not is_config("pkg_searchdirs", "dropbear") then
toolchain:add("ldflags", "-L$(projectdir)/../../sdk/rt-thread/lib/aarch64/cortex-a -Wl,--whole-archive -lrtthread -Wl,--no-whole-archive", {force = true})
end
toolchain:add("includedirs", "$(projectdir)/../../sdk/rt-thread/include", {force = true})
toolchain:add("includedirs", "$(projectdir)/../../", {force = true})
toolchain:add("includedirs", "$(projectdir)", {force = true})
toolchain:add("includedirs", "$(projectdir)/../../sdk/rt-thread/components/dfs", {force = true})
toolchain:add("includedirs", "$(projectdir)/../../sdk/rt-thread/components/drivers", {force = true})
toolchain:add("includedirs", "$(projectdir)/../../sdk/rt-thread/components/finsh", {force = true})
toolchain:add("includedirs", "$(projectdir)/../../sdk/rt-thread/components/net", {force = true})
toolchain:add("linkdirs", "$(projectdir)/../../sdk/rt-thread/lib/aarch64", {force = true})
if is_config("kind", "debug") then
toolchain:add("cxflags", "-g -gdwarf-2", {force = true})
else
toolchain:add("cxflags", "-O2", {force = true})
end
end)
toolchain_end()
add_requires("minizip")
target("minizip")
set_toolchains("aarch64-linux-musleabi")
set_kind("binary")
add_files("src/minizip.c")
add_packages("minizip")
target("miniunz")
set_toolchains("aarch64-linux-musleabi")
set_kind("binary")
add_files("src/miniunz.c")
add_packages("minizip")
target("minizip_test")
set_toolchains("aarch64-linux-musleabi")
set_kind("binary")
add_files("src/main.c")
add_packages("minizip")

配置cconfig.h,這個文件如果用scons會自動生成,但是在xmake工程當中不會自動生成,所以需要自己實現

#ifndef CCONFIG_H__
#define CCONFIG_H__
/* Automatically generated file; DO NOT EDIT. /
/
compiler configure file for RT-Thread in GCC/MUSL */
#define HAVE_SYS_SIGNAL_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_PTHREAD_H 1
#define HAVE_FDSET 1
#define HAVE_SIGACTION 1
#define HAVE_SIGEVENT 1
#define HAVE_SIGINFO 1
#define HAVE_SIGVAL 1
#endif

3、編寫src/main.c程序,這里我用minizip實現了壓縮example.txt到example.zip

/*

Copyright (c) 2006-2018, RT-Thread Development Team

SPDX-License-Identifier: GPL-2.0

Change Logs:
Date Author Notes
2023-05-17 wcx1024979076 The first version
*/
#include "stdio.h"
#include "zip.h"
int main()
{
// 文件名
const char *zipfile = "example.zip";
// 需要壓縮的文件
const char *file = "example.txt";
zipFile zf = zipOpen(zipfile, APPEND_STATUS_CREATE);
if(zf == NULL)
{
printf("Error creating %s n", zipfile);
return 1;
}
// 壓縮文件
int err = zipOpenNewFileInZip(zf, file, NULL, NULL, 0, NULL, 0, NULL, Z_DEFLATED, Z_BEST_COMPRESSION);
if(err != ZIP_OK)
{
printf("Error adding %s to %s n", file, zipfile);
return 1;
}
// 讀取文件并壓縮
FILE *f = fopen(file, "rb");
char buf[1024];
int len;
while((len = fread(buf, 1, sizeof(buf), f)) > 0)
{
zipWriteInFileInZip(zf, buf, len);
}
fclose(f);
zipCloseFileInZip(zf);
zipClose(zf, NULL);
printf("Successfully created %s n", zipfile);
return 0;
}
4、xmake編譯鏈接生成mininet可執行文件,打包進入 sd.bin

這里我使用的mcopy來實現的(用的是Codespace來寫的代碼,無root權限,不能使用mount掛載),具體命令為

mcopy -i sd.bin /path/of/the/minizip ::

5、用qemu虛擬機運行即可

運行結果:

1.jpg

聲明:本文內容及配圖由入駐作者撰寫或者入駐合作網站授權轉載。文章觀點僅代表作者本人,不代表電子發燒友網立場。文章及其配圖僅供工程師學習之用,如有內容侵權或者其他違規問題,請聯系本站處理。 舉報投訴
  • 虛擬機
    +關注

    關注

    1

    文章

    908

    瀏覽量

    28091
  • GNU
    GNU
    +關注

    關注

    0

    文章

    143

    瀏覽量

    17479
  • RT-Thread
    +關注

    關注

    31

    文章

    1272

    瀏覽量

    39921
  • SRC算法
    +關注

    關注

    0

    文章

    5

    瀏覽量

    7423
  • for循環
    +關注

    關注

    0

    文章

    61

    瀏覽量

    2493
收藏 人收藏

    評論

    相關推薦

    ART Pi Smart基于RT-Thread Smart系統的LVGL移植

    ART-Pi Smart開發板為RT-Thread聯合百問科技出品,使用的是 NXP 公司的 i.MX6ULL 處理器,具備單核 ARM Cortex-A7,最高運行頻率可以達到 800MHz。
    的頭像 發表于 11-29 14:29 ?1061次閱讀
    ART Pi <b class='flag-5'>Smart</b>基于<b class='flag-5'>RT</b>-Thread <b class='flag-5'>Smart</b>系統的LVGL<b class='flag-5'>移植</b>

    RT-Thread Smart 入門指南

    版本工具鏈下載:Windows 版本工具鏈請根據自己的開發環境選擇對用的工具鏈下載使用。下載下來后分別解壓展開到 rt-smart/tools/gnu_gcc 目錄下,rt-smart 目錄
    發表于 03-29 06:40

    RT-Smart的資料合集

    時,需要使用 GDB 直接進行代碼調試。本文檔記錄了以 RT-Thread qemu-vexpress-a9 BSP 為例,使用 GDB 對 RT-Smart 進行代碼調試的方法。
    發表于 03-22 15:06

    [IMX6ULL]RT-Smart系統下的軟件移植筆記推薦

    1、RT-Smart系統下的LwIP移植關于 i.MX 6ULL 的啟動方式,已經老生常談了。關于啟動過程的分析,網上能搜到一堆原理講解,不過不推薦把那個解釋當作最佳答案,建議還是自行從手冊入手關于
    發表于 03-25 16:25

    如何在RT-Thread Smart下使用gcc交叉編譯工具鏈呢

    前言RT-Thread Smart的BSP rt-smartspd1-allwinner-nezha,也全志D1s的哪吒開發板,基于RISCV64平臺,需要CV64的就是交叉編譯環境RISCV64
    發表于 06-17 11:13

    開機體驗rt-smart:webserver網關

    webserver 網關簡介在 ART-Pi Smart SDK 里面提供了一個 gnu-app 示例:webserver 網關,并作為 ART-Pi Smart 的出廠 Demo。即移植
    發表于 06-30 11:17

    ART Pi Smart基于RT-Thread Smart系統的LVGL移植簡介

    1、基于RT-Thread Smart系統的LVGL移植我申請測試申請的高級功能的,由于是有限的(本來要求測試一個月,但是板子只有不到一個月)。的,特別是RT-Thread智能系統還學
    發表于 08-03 16:35

    RT-Thread Smart快速上手

    的RISC-V芯片等。本是程序板程序RT-Thread Smart 移植到C100S(ARM90S-2EJ-2EJ-1000)目錄,所有的bin0S指向S指向,可運行在基于F1C10S芯片的C10S芯片支派
    發表于 10-26 14:48

    RT-Thread Smart已正式上線

    rt-smart內核即可包含基本功能,同時也可定制裁剪。rt-smart用戶態應用環境采用musl libc提供POSIX接口調用及C運行環境,延續 RT-Thread 原有的生態,使用scons
    的頭像 發表于 11-29 10:31 ?2775次閱讀

    樹莓派上rt-smart的應用編程入門

    文章,一些介紹及樹莓派上rt-smart的應用編程入門(更多的從應用程序角度入手)。后續還包括在rt-smart上的不同應用程序介紹: wget curl移植 busybox移植 sd
    的頭像 發表于 05-13 14:10 ?3111次閱讀
    樹莓派上<b class='flag-5'>rt-smart</b>的應用編程入門

    rt-smart移植分析:從樹莓派3b入手

    移植rt-smart到最新的板子上具體需要注意哪些細節,哪些才是移植rt-smart的關鍵點?本文從樹莓派3b上移植
    發表于 01-25 18:48 ?0次下載
    <b class='flag-5'>rt-smart</b><b class='flag-5'>移植</b>分析:從樹莓派3b入手

    RT-Thread Smart 上手指南

    RT-Thread Smart(簡稱rt-smart)是基于RT-Thread操作系統衍生的新分支,面向帶MMU,中高端應用的芯片,例如ARM Cortex-A系列芯片,MIPS...
    發表于 01-25 20:09 ?12次下載
    <b class='flag-5'>RT</b>-Thread <b class='flag-5'>Smart</b> 上手指南

    RT-Thread文檔_RT-Thread SMP 介紹與移植

    RT-Thread文檔_RT-Thread SMP 介紹與移植
    發表于 02-22 18:31 ?9次下載
    <b class='flag-5'>RT</b>-Thread文檔_<b class='flag-5'>RT</b>-Thread SMP 介紹與<b class='flag-5'>移植</b>

    基于xmake的RT_Smart GNU移植minizip記錄

    由于minizip除了依賴于文件一些操作函數外并不依賴于其他庫,所以個人直接編譯運行;另外本次移植的是使用的xmake完成移植
    的頭像 發表于 06-07 15:42 ?816次閱讀
    基于xmake的<b class='flag-5'>RT_Smart</b> <b class='flag-5'>GNU</b><b class='flag-5'>移植</b><b class='flag-5'>minizip</b><b class='flag-5'>記錄</b>

    RT-Smart應用開發筆記:fopen造成文件被清空問題的分析記錄

    RT-Smart 應用(apps)開發環境,ubuntu 20.04 + win10 VS Code
    的頭像 發表于 10-20 16:01 ?571次閱讀
    <b class='flag-5'>RT-Smart</b>應用開發筆記:fopen造成文件被清空問題的分析<b class='flag-5'>記錄</b>