search for: dgnulinux_platform

Displaying 5 results from an estimated 5 matches for "dgnulinux_platform".

2015 Feb 26
3
[RFC PATCH v2] Encode optimize using libNe10
...not be used when making a shared object; recompile with -fPIC CMakeFiles/NE10_shared.dir/imgproc/NE10_boxfilter.c.o: error adding symbols: Bad value collect2: error: ld returned 1 exit status The instructions for building libNE10 in doc/BuildingNe10.txt are also incorrect. I don't know if -DGNULINUX_PLATFORM=ON does anything, but I needed to specify -DNE10_LINUX_TARGET_ARCH=armv7 to avoid cmake failing with a 'syntax error' at line 83. In short, this needs some work.
2015 Feb 27
0
[RFC PATCH v2] Encode optimize using libNe10
Hi Timothy, > The instructions for building libNE10 in doc/BuildingNe10.txt are also > incorrect. I don't know if -DGNULINUX_PLATFORM=ON does anything, but I > needed to specify -DNE10_LINUX_TARGET_ARCH=armv7 to avoid cmake > failing with a 'syntax error' at line 83. > > > In short, this needs some work. Yes, -DNE10_LINUX_TARGET_ARCH=armv7 is needed for native compiling. I have updated doc/BuildingNe10.t...
2015 Mar 04
0
[RFC PATCHv3] Encode optimize using libNe10
...odules to OFF and left dsp module on. This is optional, but it will speed up the building. My steps on Pandaboard Ubuntu 12.04 hard float: Checkout rfcv3_final_ne10_fft from https://git.linaro.org/people/viswanath.puttagunta/Ne10.git $ cd $NE10_DIR $ mkdir build $ cd build $ cmake -DGNULINUX_PLATFORM=on -DNE10_LINUX_TARGET_ARCH=armv7 \ -DNE10_BUILD_SHARED=on .. $ make Checkout rfcv3_final_opus_fft_ne10 from git://git.linaro.org/people/viswanath.puttagunta/opus.git $ cd $OPUS_DIR $ ./autogen.sh $ ./configure --host=arm-linux-gnueabihf --enable-intrinsics \ -...
2015 Feb 26
0
[RFC PATCH v2] Encode optimize using libNe10
...ed object; recompile with -fPIC > CMakeFiles/NE10_shared.dir/imgproc/NE10_boxfilter.c.o: error adding symbols: > Bad value > collect2: error: ld returned 1 exit status > > > The instructions for building libNE10 in doc/BuildingNe10.txt are also > incorrect. I don't know if -DGNULINUX_PLATFORM=ON does anything, but I > needed to specify -DNE10_LINUX_TARGET_ARCH=armv7 to avoid cmake failing with > a 'syntax error' at line 83. I use the following commands cmake -DNE10_BUILD_SHARED=ON -DCMAKE_TOOLCHAIN_FILE=../ GNUlinux_config.cmake .. The GNUlinux_config.cmake sets up any o...
2015 Feb 04
4
[RFC PATCH v2] Encode optimize using libNe10
Changes from RFC PATCH v1: - passing arch parameter explicitly - reduced stack usage by ~3.5K by using scaled NE10 fft version - moved all optimization array functions to arm_celt_map.c - Other cleanups pointed out by Timothy Phil, As you mentioned earlier, could you please address all compile and linker errors/warnings coming out of Ne10 library? You can find my working Ne10 repo at [1] You