changeset 762:215c4f8f2246

* standalone/wxwin/appsettings.cpp: Disable use of "make -j<n>" for eCos builds in 2.0b1 release due to problems with Cygwin 1.3.18.
author jld
date Thu, 06 Mar 2003 12:19:58 +0000
parents 235f08f1c59b
children 7617ab51641e
files host/tools/configtool/ChangeLog host/tools/configtool/standalone/wxwin/appsettings.cpp
diffstat 2 files changed, 9 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/host/tools/configtool/ChangeLog
+++ b/host/tools/configtool/ChangeLog
@@ -1,3 +1,8 @@
+2003-03-06  John Dallaway  <jld@ecoscentric.com>
+
+	* appsettings.cpp: Disable use of "make -j<n>" for eCos builds in
+	2.0b1 release due to problems with Cygwin 1.3.18.
+
 2003-02-25  John Dallaway  <jld@ecoscentric.com>
 
 	* standalone/wxwin/makefile.gnu: No need to specify -L /usr/lib for
--- a/host/tools/configtool/standalone/wxwin/appsettings.cpp
+++ b/host/tools/configtool/standalone/wxwin/appsettings.cpp
@@ -109,7 +109,7 @@ ecSettings::ecSettings()
     m_showShortDescrWindow = TRUE;
     m_showMemoryWindow = FALSE;
     m_showOutputWindow = TRUE;
-    
+
     m_showMacroNames = FALSE;
     
     m_bUseCustomViewer = FALSE;
@@ -257,7 +257,7 @@ bool ecSettings::LoadConfig()
     config.Read(_("/Window Size/WindowY"), & m_frameSize.y);
     config.Read(_("/Window Size/WindowWidth"), & m_frameSize.width);
     config.Read(_("/Window Size/WindowHeight"), & m_frameSize.height);
-    
+
     config.Read(_("/Window Size/TreeSashWidth"), & m_treeSashSize.x);
     config.Read(_("/Window Size/TreeSashHeight"), & m_treeSashSize.y);
     config.Read(_("/Window Size/ConfigPaneWidth"), & m_configPaneWidth);
@@ -320,7 +320,8 @@ bool ecSettings::LoadConfig()
 #ifdef __WXMSW__
         SYSTEM_INFO SystemInfo;
         GetSystemInfo(&SystemInfo);
-        m_strMakeOptions.Printf(_T("-j%d"),SystemInfo.dwNumberOfProcessors);
+//        disable -j option for now due to problem with Cygwin 1.3.18
+//        m_strMakeOptions.Printf(_T("-j%d"),SystemInfo.dwNumberOfProcessors);
 #endif
     }