Changeset 46

Show
Ignore:
Timestamp:
Mon Sep 12 16:13:56 2005
Author:
williamcaban
Message:

Changes to use support/loader under *nix

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/Makespec.py

    r43 r46  
    159 159         scripts.insert(0, os.path.join(HOME, 'support', 'useUnicode.py'))  
    160 160     for i in range(len(scripts)):  
    161           scripts[i] = Path(scripts[i])  
      161         scripts[i] = Path(os.path.abspath(scripts[i])) # Use absolute path in specfiles to avoid problems  
      162  
    162 163     d = {'tktree':'',  
    163 164          'tkpkg' :'',  
     
    215 216  --version verfile -> add a version resource from verfile to the exe (Windows only)  
    216 217 The next step is to run Build.py against the generated spec file.  
    217   See doc/begin.html for details.  
      218 See doc/Tutorial.html for details.  
    217 218 """  
    218 219  
  • trunk/Build.py

    r43 r46  
    488 488             exe = exe + "wc"[self.console]  
    489 489         else:  
    490               exe = 'support/run'  
      490             exe = 'support/loader/run'  
    490 490             if not self.console:  
    491 491                 exe = exe + 'w'  
     
    535 535         print "building DLL", os.path.basename(self.out)  
    536 536         outf = open(self.name, 'wb')  
    537           dll = 'support/inprocsrvr'  
      537         dll = 'support/loader/inprocsrvr'  
    537 537         if self.debug:  
    538 538             dll = dll + '_d'  
     
    553 553         print "building NonELFEXE", os.path.basename(self.out)  
    554 554         trash = []  
    555           exe = 'support/run'  
      555         exe = 'support/loader/run'  
    555 555         if not self.console:  
    556 556             exe = exe + 'w'  
     
    800 800 Usage: python %s <specfile>  
    801 801  
    802   See doc/specfiles.html for details.  
      802 See doc/Tutorial.html for details.  
    802 802 """  
    803 803  
  • trunk/MakeCOMServer_old.py

    r43 r46  
    140 140  
    141 141 The next step is to run Build.py against the generated spec file.  
    142   See doc/begin.html for details.  
      142 See doc/Tutorial.html for details.  
    142 142 """  
    143 143  
  • trunk/MakeComServer.py

    r43 r46  
    140 140  
    141 141 The next step is to run Build.py against the generated spec file.  
    142   See doc/begin.html for details.  
      142 See doc/Tutorial.html for details.  
    142 142 """  
    143 143  
  • trunk/source/linux/Make.py

    r43 r46  
    107 107  
    108 108     targets = [None, None]  
    109       targets[0] = os.path.join('../../support', 'run')  
    110       targets[1] = os.path.join('../../support', 'run_d')  
      109     targets[0] = os.path.join('../../support/loader/', 'run')  
      110     targets[1] = os.path.join('../../support/loader/', 'run_d')  
    111 111  
    112 112     includes = ['-I../common', '-I' + incldir, '-I' + config_h_dir]