본문 바로가기

전체 글46

cross compile 참고자료 https://gcc.gnu.org/onlinedocs/gcc-12.2.0/gcc/index.html#SEC_Contents Top (Using the GNU Compiler Collection (GCC)) Using the GNU Compiler Collection (GCC) This file documents the use of the GNU compilers. Copyright © 1988-2022 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentat gcc.gnu.org https://www.mt.. 2023. 3. 14.
CLFS export CLFS_TARGET=arm-linux-gnueabi export CLFS_HOST=aarch64-cross-linux-gnu # binutils ../configure \ --prefix=/cross-tools \ --target=arm-linux-gnueabi \ --with-sysroot=${CLFS} \ --with-arch=armv7l \ --with-float=soft \ --disable-nls \ --enable-gprofng=no \ --disable-werror make -j4 make install # Install the Linux kernel headers make ARCH=arm INSTALL_HDR_PATH=/cross-tools/arm-linux-gnueabi h.. 2023. 3. 11.
nvim 설정 https://github.com/ChristianChiarulli/nvim.git GitHub - ChristianChiarulli/nvim: My neovim config My neovim config. Contribute to ChristianChiarulli/nvim development by creating an account on GitHub. github.com 2023. 3. 11.
리눅스 커널/드라이버 개발을 위한 맥 셋팅 https://ariesgun.xyz/setting-up-mac-m1-for-linux-kernel-device-driver-development Setting up Mac M1 for Linux Kernel/ Device Driver Development Building a linux kernel on a Linux OS is easy and straightforward. You can easily follow the installation instructions provided in the documentation. If you are a Windows user, you can use Windows Subsytem for Linux (WSL) to setup the development env... .. 2023. 3. 11.