-
自分がインストールしたとき (2025年8月) の参考用のメモです。
(情報が古くなっている可能性があります) -
UCRT (ユニバーサル C ランタイム) は、マイクロソフトの新しい C ランタイムライブラリです。
MSYS2/MinGW-w64 UCRT64 (64bit) は、この UCRT を利用するバイナリを作成します。
UCRT は、Windows 10 以後ではデフォルトで入っていますが、
それより古い Windows では、インストールが必要のようです。(詳細未確認)
-
自分がインストールしたとき (2022年9月) の参考用のメモです。
(情報が古くなっている可能性があります) -
**<<<現在では より新しい MSYS2/MinGW-w64 UCRT64 (64bit) の開発環境もあります>>>
MSYS2/MinGW-w64 UCRT64 (64bit) 開発環境のインストールについては、
以下のページの方を参照ください。
https://gist.github.com/Hamayama/7810d2a1a59a872a2fbc271345151f77
-
自分がコンパイルしたとき(2016年1月~2019年12月)の参考用のメモです。
(情報が古くなっている可能性があります)
Windows 8.1 (64bit) で作業しました。 -
**以下の記述は、MSYS2/MinGW-w64 (64bit/32bit) の開発環境でのコンパイル手順となっています。
今では、より新しい MSYS2/MinGW-w64 UCRT64 (64bit) の開発環境でもコンパイル可能になっています。
MSYS2/MinGW-w64 UCRT64 (64bit) の開発環境を使う場合には、以下のページの方を参照ください。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gosh def_method.scm | |
| pause |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; | |
| ;; binary-heap patch for key | |
| ;; | |
| (use data.heap) | |
| (with-module data.heap | |
| (define (make-binary-heap :key (comparator default-comparator) | |
| (storage (make-sparse-vector)) | |
| (key identity)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Windows Console Mouse Input Test | |
| 2021-3-13 v1.28 | |
| OS : Windows 10 (version 20H2) (64bit) | |
| DevTools : MSYS2/MinGW-w64 (64bit) (gcc version 10.2.0 (Rev6, Built by MSYS2 project))) | |
| Terminal : Windows Terminal 1.6.10571.0 | |
| Compile : gcc -g -O2 -Wall -Wextra -o wincon_mouse.exe wincon_mouse.c | |
| */ | |
| #include <windows.h> |
- Lem エディタ ( https://github.com/cxxxr/lem ) の
Windows 上でのインストール手順等のメモです。
- MSYS2/MinGW-w64 (64bit/32bit) のインストール
事前に MSYS2/MinGW-w64 (64bit/32bit) がインストールされている必要があります。
NewerOlder