Skip to content

syjung0130/ndk_standalone_toolchain_sample

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Docker build

  • cd docker
  • docker build -t ndk-sample:imx-1 .

Run Docker container

  • docker run -it --volume="$PWD/../..:/workdir/ndk_single_example" --volume="$PWD/build:/workdir/build" ndk-sample:imx-1
  • or ./run_container.sh

(참고) NDK 관련 내용

usage: make_standalone_toolchain.py [-h] --arch
                                    {arm,arm64,mips,mips64,x86,x86_64}
                                    [--api API]
                                    [--unified-headers | --deprecated-headers]
                                    [--force] [-v]
                                    [--package-dir PACKAGE_DIR | --install-dir INSTALL_DIR]
  • selinux 관련 설정 기본적으로 selinux옵션을 Enforcing을 사용하고 있음.. 옵션 변경은 setenforce 0 으로 permissive모드로 변경 가능, setenforce 1으로 enforce 모드로 변경 가능함.

  • 현재 selinux 설정값 가져오기
    $ getenforce
    또는
    getprop |grep selinux

  • selinux 옵션을 permissive 모드로 변경
    $ setenforce 0