목록OSX (135)
준호씨의 블로그
빌드한 프로그램이 실행되지 않아서 lldb 로 실행 해 보면 dyld: Library not loaded 가 뜨는 경우가 있다. Process 58785 launched: '/.../myprog' (x86_64) dyld: Library not loaded: libmycore.1.dylib Referenced from: /.../myprog Reason: image not found Process 58785 stopped DYLD_LIBRARY_PATH 설정 로드 되지 않는 libmycore.1.dylib 가 /mylib 에 있다면 DYLD_LIBRARY_PATH 에 추가 해 준다. export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:/mylib/ 그래도 안된다면 /usr/lo..
OSX 에 docker 를 설치 하는 방법이다. Docker for Mac Community Edition (CE) 다운로드 및 설치하면 된다. 다음 페이지로 가서 파일을 다운 받고 실행하면 된다. Install Docker for Mac - https://docs.docker.com/docker-for-mac/install/ 만약 docker 커맨드만 설치 하는 경우 brew 를 이용해서 간단하게 설치 할 수 있다. $ brew install docker
Keycastr will let you visualize what key you stroked. Like this Configuration window Installation $ brew cask install keycastr References Keycastr github
dotnet sdk 설치 brew cask install dotnet-sdk https://www.microsoft.com/net/learn/get-started/macos 에서 "Download .NET SDK" 로 다운 받아서 설치 해도 된다. app 만들기 $ dotnet new console -o myApp $ cd myApp 다음과 같은 파일들이 생성된 것을 볼 수 있다. $ tree . ├── Program.cs ├── myApp.csproj └── obj ├── myApp.csproj.nuget.cache ├── myApp.csproj.nuget.g.props ├── myApp.csproj.nuget.g.targets └── project.assets.json 1 directory, 6 fi..
Maybe you could see below error message box when you start MS Word every time. And you can see below error message when you quit MS Word You can't quit when you click "Yes" button. You can see below error message. You may retry quit If you click "Don't Save" and click "Don's Save" again. You could quit MS Word. But it will happen again and again. Here is a solution. Go to "~/Library/Group Contai..