문서 보기이전 판역링크맨 위로 이 문서는 읽기 전용입니다. 원본을 볼 수는 있지만 바꿀 수는 없습니다. 문제가 있다고 생각하면 관리자에게 문의하세요. ===== Cygwin ===== A large collection of GNU and Open Source tools which provide functionality similar to a Linux distribution on Windows. ==== Install on Windows ==== You can find several ways on internet. You choice comfortable way on your self. ==== 1st modifying cygwin running file ==== modify CYGWIN_HOME\Cygwin.bat <code> @echo off set CYGWIN_ROOT=D:\cygwin64 set HOME=D:\cygwin_home set DISPLAY=127.0.0.1:0.0 D: chdir D:\cygwin64\bin REM bash --login -i start D:\cygwin64\bin\mintty.exe -i /Cygwin-Terminal.ico - </code> ==== 2nd install NDK ==== ==== 3rd setting up standalone android native compiler ==== in cygwin terminal <code> cd $NDK_ROOT/build/tools ./make-standalone-toolchain.sh --platform=android-9 --install-dir=/development/android-toolchian --toolchain=arm-linux-androideabi-4.6 --ndk-dir=../../ --system=windows-x86_64 </code> ==== 4th set other exports ==== You can later use it directly with something like <code> export PATH=/tmp/my-android-toolchain/bin:$PATH export CC=arm-linux-androideabi-gcc # or export CC=clang export CXX=arm-linux-androideabi-g++ # or export CXX=clang++ </code> CKG Edit development_cygwin.txt 마지막으로 수정됨: 2020/09/25 10:12저자 127.0.0.1