Skip to content

Instantly share code, notes, and snippets.

@iray-tno
Last active February 12, 2020 17:27
Show Gist options
  • Save iray-tno/798138b6587e96e20f6d7f3a956cbb47 to your computer and use it in GitHub Desktop.
Save iray-tno/798138b6587e96e20f6d7f3a956cbb47 to your computer and use it in GitHub Desktop.
MM環境構築
https://qiita.com/yut-nagase/items/9bb65481685f6b8002de
- LLVMインストールする
- mingw-w64をposix sehでインストールする
- x86_64-8.1.0-posix-seh-rt_v6-rev0 sehじゃないと動かなかった
- CPATHに追加する
```bat
set CPATH=C:\Program Files\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\lib\gcc\x86_64-w64-mingw32\8.1.0\include\c++
set CPATH=%CPATH%;C:\Program Files\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\lib\gcc\x86_64-w64-mingw32\8.1.0\include\c++\x86_64-w64-mingw32
set CPATH=%CPATH%;C:\Program Files\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\lib\gcc\x86_64-w64-mingw32\8.1.0\include\c++\backward
set CPATH=%CPATH%;C:/Program Files/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/include
set CPATH=%CPATH%;C:/Program Files/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/x86_64-w64-mingw32/include
```
PATHにld.exeを追加
Javaを追加
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment