Changeset 5804


Ignore:
Timestamp:
Jun 13, 2018 4:27:32 PM (6 years ago)
Author:
riza
Message:

Re #2059 (misc): Patch to build Arch Linux on ARMv7 (e.g: Raspberry Pi).
Thanks to Attila Bogár for the patch.

Location:
pjproject/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/aconfigure

    r5796 r5804  
    88378837                        ;; 
    88388838                     *win32* | *w32* | *darwin* | *linux*) 
    8839                         ac_webrtc_instset=sse2 
     8839                         case $target in 
     8840                             armv7l*gnueabihf) 
     8841                                 ac_webrtc_instset=neon 
     8842                                 ac_webrtc_cflags="-DWEBRTC_ARCH_ARMV7 -mfloat-abi=hard -mfpu=neon" 
     8843                                 ;; 
     8844                             *) 
     8845                                 ac_webrtc_instset=sse2 
     8846                                 ;; 
     8847                         esac 
    88408848                        ;; 
    88418849                     *) 
  • pjproject/trunk/aconfigure.ac

    r5796 r5804  
    20002000                        ;; 
    20012001                     *win32* | *w32* | *darwin* | *linux*) 
    2002                         ac_webrtc_instset=sse2 
     2002                         case $target in 
     2003                             armv7l*gnueabihf) 
     2004                                 ac_webrtc_instset=neon 
     2005                                 ac_webrtc_cflags="-DWEBRTC_ARCH_ARMV7 -mfloat-abi=hard -mfpu=neon" 
     2006                                 ;; 
     2007                             *) 
     2008                                 ac_webrtc_instset=sse2 
     2009                                 ;; 
     2010                         esac 
    20032011                        ;; 
    20042012                     *) 
Note: See TracChangeset for help on using the changeset viewer.