Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MinGWでサクラエディタをビルドできるようにメイクファイルを更新する #351

Merged
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
fcc9538
入力ファイルのエンコーディング指定変更: cp932 -> utf-8
kobake Jul 26, 2018
f92466c
svnrev 出力関連を githash 出力に差し替え
kobake Jul 26, 2018
519bf89
-fexec-charset は utf-8 ではなく cp932 に戻す
kobake Jul 26, 2018
28805ba
sakura_rc ビルドを UTF-8 指定に変更 (RCTOOLは用いない)
kobake Aug 7, 2018
6861472
svnrev⇒githashの横展開
berryzplus Aug 19, 2018
300bc7c
sakura_rc.rcのutf8化対応
berryzplus Aug 19, 2018
5b8576d
プリコンパイルヘッダーの依存関係を修正する
berryzplus Aug 19, 2018
8b7ba73
exeとcppの依存関係を更新
berryzplus Aug 19, 2018
c9f59d8
MinGWでセキュリティ強化版CRT関数を使えるようにする
berryzplus Aug 19, 2018
25dd45b
暗黙のnarrow_castがgccに怒られる問題に対する対処
berryzplus Aug 19, 2018
23c683d
#288[auto キーワードを使って iterator 変数の宣言を簡潔にする]で入れてしまった gcc に怒られる記述を訂正する
berryzplus Aug 19, 2018
d8837c9
#303で入れてしまった gcc に怒られる例外処理をなんとかする
berryzplus Aug 19, 2018
11c5ff3
古いMinGWに含まれていないCOMのIDを除去
berryzplus Aug 19, 2018
98ac13c
レビュー指摘対応 (#if ディレクティブの改行には \ を付ける)
berryzplus Aug 19, 2018
8789964
レビュー指摘対応 (自動インクルードされるファイルは明示でインクルードしなくてもいい)
berryzplus Aug 19, 2018
2d45280
レビュー指摘対応(パラメータが正しくありません。と出ている)
berryzplus Aug 23, 2018
e1ee546
mingw32-make cleanできるようにする
berryzplus Aug 23, 2018
b78aec4
MinGWビルドについて追記
berryzplus Aug 23, 2018
9a3e316
mingw32-make clean時のcould not found fileを抑制する
berryzplus Aug 24, 2018
c737e5d
ビルドで生成されるファイルをmake cleanの対象に入れる
berryzplus Aug 24, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sakura_core/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ Funccode_enum.h: $(HEADERMAKE) Funccode_x.hsrc
$(HEADERMAKE) -in=../sakura_core/Funccode_x.hsrc -out=../sakura_core/Funccode_enum.h -mode=enum -enum=EFunctionCode

githash:
cmd /c $(CURDIR)/../sakura/githash.bat ../sakura_core
cmd /c $(CURDIR)/../sakura/githash.bat ..\\sakura_core
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

githash.bat の中で / を置換する方法でもいいと思います。


stdafx: Funccode_enum.h StdAfx.h
$(CXX) $(CXXFLAGS) -c StdAfx.h
Expand Down