Changes between Version 32 and Version 33 of Getting-Started/Autoconf


Ignore:
Timestamp:
Sep 8, 2021 3:33:45 AM (3 years ago)
Author:
nanang
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Getting-Started/Autoconf

    v32 v33  
    181181== Cross Compilation == 
    182182 
     183=== General ===  
     184 
    183185Cross compilation should be supported, using the usual autoconf syntax: 
    184186         
     
    192194Please refer to Porting Guide for further information about porting PJ software. 
    193195 
    194   
     196=== Building for MacOS x86_64 on MacOS M1 === 
     197 
     198Run configure script: 
     199{{{ 
     200$ CFLAGS="-arch x86_64" LDFLAGS="-arch x86_64" ./configure --host=x86_64-apple-darwin 
     201}}} 
     202 
     203 
     204=== Building for MacOS M1 on MacOS x86_64 === 
     205 
     206Run configure script: 
     207{{{ 
     208$ CFLAGS="-arch arm64" LDFLAGS="-arch arm64" ./configure --host=arm-apple-darwin 
     209}}} 
     210 
     211 
    195212== Running make == 
    196213