Browse Source

Fix defaults to be the same as TIGCC IDE's for opening existing projects.

git-svn-id: file:///var/svn/tigccpp/trunk@368 9552661e-59e3-4036-b4f2-dbe53926924f
kevinkofler 18 years ago
parent
commit
68d58b4f05
2 changed files with 4 additions and 2 deletions
  1. 2 0
      tigcc/tprbuilder/ChangeLog
  2. 2 2
      tigcc/tprbuilder/src/tprbuilder.c

+ 2 - 0
tigcc/tprbuilder/ChangeLog

@@ -4,6 +4,8 @@ Changelog for TIGCC Project Builder
         * removed bsr_patch setting which is no longer used
         * added support for .o files which was missing
         * removed dead o_files code from build_files and process_files
+        * fixed defaults to be the same as TIGCC IDE's for opening existing
+          projects
 
 - 2005-03-23, version 1.0.15 (Kevin Kofler)
         * added support for Mlink-format relocs

+ 2 - 2
tigcc/tprbuilder/src/tprbuilder.c

@@ -43,8 +43,8 @@ char **asm_files  = NULL;
 char *tigcc_base = NULL;
 int c_file_count=0, s_file_count=0, m_file_count=0, h_file_count=0,
     asm_file_count=0, a_file_count=0, o_file_count=0;
-Settings settings = {0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0};
-LibOpts libopts = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,RT_NONE,RT_NONE,RT_KERNEL,RT_KERNEL};
+Settings settings = {0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0};
+LibOpts libopts = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,RT_NONE,RT_NONE,RT_KERNEL,RT_KERNEL};
 
 int clean = 0;
 int verbose = 0;