Changes between Initial Version and Version 1 of Getting-Started/Other-Platforms


Ignore:
Timestamp:
Apr 28, 2009 5:02:13 PM (15 years ago)
Author:
ismangil
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Getting-Started/Other-Platforms

    v1 v1  
     1 
     2 
     3 
     4 
     5The old PJLIB build system can still be used for building PJ libraries, for example for RTEMS target. Please see the Porting PJLIB page in PJLIB Reference documentation for information on how to support new target using this build system. 
     6Supported Targets 
     7The older build system supports building PJ libraries for the following operating systems: 
     8 
     9    * RTEMS 
     10    * Linux 
     11    * MacOS X 
     12    * Cygwin and Mingw 
     13 
     14And it supports the following target architectures: 
     15 
     16    * i386, x86_64, itanium 
     17    * ARM 
     18    * mips 
     19    * powerpc 
     20    * mpc860 
     21    * etc. 
     22 
     23For other targets, specific files need to be added to the build system, please see the Porting PJLIB page in PJLIB Reference documentation for details. 
     24Invoking the Build System 
     25 
     26To invoke the older build system, run the following: 
     27         
     28 
     29$ cd pjproject 
     30$ ./configure-legacy 
     31$ make dep && make clean && make 
     32 
     33