這也發生在我身上。編譯總是在1.9 GB時中斷。
唯一幫助我的是關閉巨石。在config.gcc
# Multiple libraries or single huge monolithic one? [0,1]
MONOLITHIC = 0
# Build GUI libraries? [0,1]
USE_GUI = 1
現在在wxWidgets \ lib \ gcc_dll我有15個Dll的。
希望幫助;-)
編輯:
我認爲在你的config.gcc中 「共享= 1」。
我認爲最好在config.gcc中進行所有設置。提示設置也RUNTIME_LIBS =動態。
搜索以下設置,並與
# What type of library to build? [0,1]
SHARED = 1
# Compile Unicode build of wxWidgets? [0,1]
UNICODE = 1
# Type of compiled binaries [debug,release]
BUILD = release
# Multiple libraries or single huge monolithic one? [0,1]
MONOLITHIC = 0
RUNTIME_LIBS = dynamic
感謝Marc Bolan ;-)我使用最新的MinGW(今天下載),我的交換文件當前設置爲3171 MB。根據我在過程資源管理器中看到的,我認爲我還沒有達到這個限制。 – mydoghasworms