ParserFlags.st
branchjv
changeset 3707 4593eb11f9f5
parent 3700 264d6604a9f3
child 3727 5ce5e4d7a752
equal deleted inserted replaced
3706:dc340265d27d 3707:4593eb11f9f5
  1630 !
  1630 !
  1631 
  1631 
  1632 initializeSTCFlagsForGCC
  1632 initializeSTCFlagsForGCC
  1633     self ccPath: 'gcc'.
  1633     self ccPath: 'gcc'.
  1634     self linkCommand: 'gcc'.
  1634     self linkCommand: 'gcc'.
  1635     self linkArgs: ''.
  1635     ExternalAddress pointerSize == 4 ifTrue:[
  1636     self linkSharedArgs: '-shared'
  1636         self linkArgs: '-m32'.
       
  1637         self linkSharedArgs: '-shared -m32'
       
  1638     ] ifFalse:[ 
       
  1639         self linkArgs: '-m64'.
       
  1640         self linkSharedArgs: '-shared -m64'
       
  1641     ].
  1637 
  1642 
  1638     "Created: / 09-12-2015 / 22:10:52 / jv"
  1643     "Created: / 09-12-2015 / 22:10:52 / jv"
       
  1644     "Modified: / 03-02-2016 / 23:48:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
  1639 !
  1645 !
  1640 
  1646 
  1641 initializeSTCFlagsForMINGW32
  1647 initializeSTCFlagsForMINGW32
  1642     | mingwDirs mingwDir |
  1648     | mingwDirs mingwDir |
  1643 
  1649