Build libfslcodec-4.0.8 on Ubuntu 16.04 for IMX6Qqmake error when trying to build qwbfsTrying to Build and Install apingerHow to install IRSTLM (automake warning during the build)?Yamcha 0.33 Make InstallInstall es40 emulator from source code on ubuntu 14.04.3LaTeX Biblatex Build for Ubuntu 16.04I just couldn't build this iwlwifi core source. Others could

Famous conjecture or unsolved problem that could be plausibly proven/solved by freshman mathematician?

Blur gradient along timeline arrow

How to fill a closed parametric curve?

QGIS "open attribute table" as tab

Is it possible to keep cat litter on balcony during winter (down to -10°C)

What was the first operating system that supported preemptive multitasking?

Is Schrodinger operator with potential self adjoint

Do Macs come with any programming language available from the Terminal?

speaking german abroad and feeling condescended to

Does a symmetric positive definite matrix also have A = L^T * L, (L is lower triangular matrix)?

I'm being blamed for not responding to an email from a client

Novel where a serial killer lives (almost) forever by swapping bodies

There are three checks in this position?

Fermat's Last Theorem, mod n

Implement the Max-Pooling operation from Convolutional Neural Networks

Well-known American figure with Roman numerals

Is it unsafe to remove one stud from a load bearing wall?

Calculate the sum of interior angles of a polygon

Could you fly a Boeing 747 on Venus?

Need Good OOP Design For World and Countries Problem

Printing the bits of an integer using bitfields and union

Slimy whey in store-bought yoghurt

Does an envoy warforged have to choose a specific vehicle?

What would happen to the world if all lightning stopped?



Build libfslcodec-4.0.8 on Ubuntu 16.04 for IMX6Q


qmake error when trying to build qwbfsTrying to Build and Install apingerHow to install IRSTLM (automake warning during the build)?Yamcha 0.33 Make InstallInstall es40 emulator from source code on ubuntu 14.04.3LaTeX Biblatex Build for Ubuntu 16.04I just couldn't build this iwlwifi core source. Others could






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;









0

















I installed Ubuntu 16.04 with kernel 4.1.15 on IMX6Q "sabresd" Board and successfully boot. I used This instruction for install rootfs also I changed distro and solve some issues by myself. Just now I tried compile libfslcodec-4.0.8 but I have problem. let me explain sequences:



1- install all tools I need to compile packages by apt like make, autoconf, gcc, and etc...



autoconf -V --> autoconf (GNU Autoconf) 2.69



automake --version --> automake (GNU automake) 1.15



make --> GNU Make 4.1



gcc --version --> gcc (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.11) 5.4.0 20160609



2- Download libfslcodec-4.0.8.bin from here is not .bin file and need Extract by this comment.



./libfslcodec-4.0.8.bin --auto-accept –force


after that make a Directory with same name.



3-Run some commands for Auto configure but I can not make and see error "make: Nothing to be done for 'all'." Make file made by auto conf process and had issue, also I have seen a waring during auto conf process :



configure.ac:7: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see:
configure.ac:7: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation



However I checked a link recommended by autoconf Warning,It were exactly like template(Like This) So I can't make this library. How can I solve this issue.You can see log in below.



Thanks



Amir




radio@Radio:~/vps_pack/libfslcodec-4.0.8$ sudo ./autogen.sh --prefix=/usr --enable-fhw --enable-vpu
processing .
Running aclocal ...
Running automake --gnu ...
configure.ac:7: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see:
configure.ac:7: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation
Running autoconf ...
Running ./configure --enable-maintainer-mode --prefix=/usr --enable-fhw --enable-vpu ...
checking whether make supports nested variables... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes

Enable FHW option

Enable VPU option
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating libfslaudiocodec.pc
config.status: creating libfslvideocodec.pc
Configure result (with uni_audio: yes):
Enabled audio codec:
peq
src
aacdec
mp3dec
mp3enc
vorbisdec
bsacdec
flacdec
sbcenc
g726
g711
g723
g729
amrnb
amrwb
Disabled audio codec:
Enabled video codec:
deinterlace
h264dec
mpeg2dec
mpeg4aspdec
jpegdec
jpegenc
bmpdec
pngdec
gifdec
Disabled video codec:
Now type `make' to compile.
radio@Radio:~/vps_pack/libfslcodec-4.0.8$ make
make: Nothing to be done for 'all'.
radio@Radio:~/vps_pack/libfslcodec-4.0.8$










share|improve this question




























  • The .bin file in your link appears to contain pre-built binary files and libraries as well as source code - presumably make decides that they don't need to be rebuilt before installing.

    – steeldriver
    Jul 19 at 16:06











  • Modified part 2 Please see that.It is not bin file and need Extract.

    – Amir Farahani
    Jul 19 at 16:48












  • If you look in libfslcodec-4.0.8/release/exe/ or libfslcodec-4.0.8/release/lib/ what do you see? I'm betting it is pre-built executables and libraries

    – steeldriver
    Jul 19 at 16:54











  • It is not pre-build lib some parts need to compile again. Please see Here and looking "5: Setting Ubuntu on target -> Get and Install the BSP packages (EULA required)." Please see Line 25. You can see a part need to make and make install.(Lines 28 and 29).

    – Amir Farahani
    Jul 19 at 17:07


















0

















I installed Ubuntu 16.04 with kernel 4.1.15 on IMX6Q "sabresd" Board and successfully boot. I used This instruction for install rootfs also I changed distro and solve some issues by myself. Just now I tried compile libfslcodec-4.0.8 but I have problem. let me explain sequences:



1- install all tools I need to compile packages by apt like make, autoconf, gcc, and etc...



autoconf -V --> autoconf (GNU Autoconf) 2.69



automake --version --> automake (GNU automake) 1.15



make --> GNU Make 4.1



gcc --version --> gcc (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.11) 5.4.0 20160609



2- Download libfslcodec-4.0.8.bin from here is not .bin file and need Extract by this comment.



./libfslcodec-4.0.8.bin --auto-accept –force


after that make a Directory with same name.



3-Run some commands for Auto configure but I can not make and see error "make: Nothing to be done for 'all'." Make file made by auto conf process and had issue, also I have seen a waring during auto conf process :



configure.ac:7: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see:
configure.ac:7: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation



However I checked a link recommended by autoconf Warning,It were exactly like template(Like This) So I can't make this library. How can I solve this issue.You can see log in below.



Thanks



Amir




radio@Radio:~/vps_pack/libfslcodec-4.0.8$ sudo ./autogen.sh --prefix=/usr --enable-fhw --enable-vpu
processing .
Running aclocal ...
Running automake --gnu ...
configure.ac:7: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see:
configure.ac:7: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation
Running autoconf ...
Running ./configure --enable-maintainer-mode --prefix=/usr --enable-fhw --enable-vpu ...
checking whether make supports nested variables... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes

Enable FHW option

Enable VPU option
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating libfslaudiocodec.pc
config.status: creating libfslvideocodec.pc
Configure result (with uni_audio: yes):
Enabled audio codec:
peq
src
aacdec
mp3dec
mp3enc
vorbisdec
bsacdec
flacdec
sbcenc
g726
g711
g723
g729
amrnb
amrwb
Disabled audio codec:
Enabled video codec:
deinterlace
h264dec
mpeg2dec
mpeg4aspdec
jpegdec
jpegenc
bmpdec
pngdec
gifdec
Disabled video codec:
Now type `make' to compile.
radio@Radio:~/vps_pack/libfslcodec-4.0.8$ make
make: Nothing to be done for 'all'.
radio@Radio:~/vps_pack/libfslcodec-4.0.8$










share|improve this question




























  • The .bin file in your link appears to contain pre-built binary files and libraries as well as source code - presumably make decides that they don't need to be rebuilt before installing.

    – steeldriver
    Jul 19 at 16:06











  • Modified part 2 Please see that.It is not bin file and need Extract.

    – Amir Farahani
    Jul 19 at 16:48












  • If you look in libfslcodec-4.0.8/release/exe/ or libfslcodec-4.0.8/release/lib/ what do you see? I'm betting it is pre-built executables and libraries

    – steeldriver
    Jul 19 at 16:54











  • It is not pre-build lib some parts need to compile again. Please see Here and looking "5: Setting Ubuntu on target -> Get and Install the BSP packages (EULA required)." Please see Line 25. You can see a part need to make and make install.(Lines 28 and 29).

    – Amir Farahani
    Jul 19 at 17:07














0












0








0








I installed Ubuntu 16.04 with kernel 4.1.15 on IMX6Q "sabresd" Board and successfully boot. I used This instruction for install rootfs also I changed distro and solve some issues by myself. Just now I tried compile libfslcodec-4.0.8 but I have problem. let me explain sequences:



1- install all tools I need to compile packages by apt like make, autoconf, gcc, and etc...



autoconf -V --> autoconf (GNU Autoconf) 2.69



automake --version --> automake (GNU automake) 1.15



make --> GNU Make 4.1



gcc --version --> gcc (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.11) 5.4.0 20160609



2- Download libfslcodec-4.0.8.bin from here is not .bin file and need Extract by this comment.



./libfslcodec-4.0.8.bin --auto-accept –force


after that make a Directory with same name.



3-Run some commands for Auto configure but I can not make and see error "make: Nothing to be done for 'all'." Make file made by auto conf process and had issue, also I have seen a waring during auto conf process :



configure.ac:7: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see:
configure.ac:7: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation



However I checked a link recommended by autoconf Warning,It were exactly like template(Like This) So I can't make this library. How can I solve this issue.You can see log in below.



Thanks



Amir




radio@Radio:~/vps_pack/libfslcodec-4.0.8$ sudo ./autogen.sh --prefix=/usr --enable-fhw --enable-vpu
processing .
Running aclocal ...
Running automake --gnu ...
configure.ac:7: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see:
configure.ac:7: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation
Running autoconf ...
Running ./configure --enable-maintainer-mode --prefix=/usr --enable-fhw --enable-vpu ...
checking whether make supports nested variables... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes

Enable FHW option

Enable VPU option
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating libfslaudiocodec.pc
config.status: creating libfslvideocodec.pc
Configure result (with uni_audio: yes):
Enabled audio codec:
peq
src
aacdec
mp3dec
mp3enc
vorbisdec
bsacdec
flacdec
sbcenc
g726
g711
g723
g729
amrnb
amrwb
Disabled audio codec:
Enabled video codec:
deinterlace
h264dec
mpeg2dec
mpeg4aspdec
jpegdec
jpegenc
bmpdec
pngdec
gifdec
Disabled video codec:
Now type `make' to compile.
radio@Radio:~/vps_pack/libfslcodec-4.0.8$ make
make: Nothing to be done for 'all'.
radio@Radio:~/vps_pack/libfslcodec-4.0.8$










share|improve this question

















I installed Ubuntu 16.04 with kernel 4.1.15 on IMX6Q "sabresd" Board and successfully boot. I used This instruction for install rootfs also I changed distro and solve some issues by myself. Just now I tried compile libfslcodec-4.0.8 but I have problem. let me explain sequences:



1- install all tools I need to compile packages by apt like make, autoconf, gcc, and etc...



autoconf -V --> autoconf (GNU Autoconf) 2.69



automake --version --> automake (GNU automake) 1.15



make --> GNU Make 4.1



gcc --version --> gcc (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.11) 5.4.0 20160609



2- Download libfslcodec-4.0.8.bin from here is not .bin file and need Extract by this comment.



./libfslcodec-4.0.8.bin --auto-accept –force


after that make a Directory with same name.



3-Run some commands for Auto configure but I can not make and see error "make: Nothing to be done for 'all'." Make file made by auto conf process and had issue, also I have seen a waring during auto conf process :



configure.ac:7: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see:
configure.ac:7: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation



However I checked a link recommended by autoconf Warning,It were exactly like template(Like This) So I can't make this library. How can I solve this issue.You can see log in below.



Thanks



Amir




radio@Radio:~/vps_pack/libfslcodec-4.0.8$ sudo ./autogen.sh --prefix=/usr --enable-fhw --enable-vpu
processing .
Running aclocal ...
Running automake --gnu ...
configure.ac:7: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see:
configure.ac:7: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation
Running autoconf ...
Running ./configure --enable-maintainer-mode --prefix=/usr --enable-fhw --enable-vpu ...
checking whether make supports nested variables... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes

Enable FHW option

Enable VPU option
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating libfslaudiocodec.pc
config.status: creating libfslvideocodec.pc
Configure result (with uni_audio: yes):
Enabled audio codec:
peq
src
aacdec
mp3dec
mp3enc
vorbisdec
bsacdec
flacdec
sbcenc
g726
g711
g723
g729
amrnb
amrwb
Disabled audio codec:
Enabled video codec:
deinterlace
h264dec
mpeg2dec
mpeg4aspdec
jpegdec
jpegenc
bmpdec
pngdec
gifdec
Disabled video codec:
Now type `make' to compile.
radio@Radio:~/vps_pack/libfslcodec-4.0.8$ make
make: Nothing to be done for 'all'.
radio@Radio:~/vps_pack/libfslcodec-4.0.8$







16.04 make makefile autoconf automake






share|improve this question
















share|improve this question













share|improve this question




share|improve this question








edited Jul 19 at 16:45







Amir Farahani

















asked Jul 19 at 15:50









Amir FarahaniAmir Farahani

11 bronze badge




11 bronze badge















  • The .bin file in your link appears to contain pre-built binary files and libraries as well as source code - presumably make decides that they don't need to be rebuilt before installing.

    – steeldriver
    Jul 19 at 16:06











  • Modified part 2 Please see that.It is not bin file and need Extract.

    – Amir Farahani
    Jul 19 at 16:48












  • If you look in libfslcodec-4.0.8/release/exe/ or libfslcodec-4.0.8/release/lib/ what do you see? I'm betting it is pre-built executables and libraries

    – steeldriver
    Jul 19 at 16:54











  • It is not pre-build lib some parts need to compile again. Please see Here and looking "5: Setting Ubuntu on target -> Get and Install the BSP packages (EULA required)." Please see Line 25. You can see a part need to make and make install.(Lines 28 and 29).

    – Amir Farahani
    Jul 19 at 17:07


















  • The .bin file in your link appears to contain pre-built binary files and libraries as well as source code - presumably make decides that they don't need to be rebuilt before installing.

    – steeldriver
    Jul 19 at 16:06











  • Modified part 2 Please see that.It is not bin file and need Extract.

    – Amir Farahani
    Jul 19 at 16:48












  • If you look in libfslcodec-4.0.8/release/exe/ or libfslcodec-4.0.8/release/lib/ what do you see? I'm betting it is pre-built executables and libraries

    – steeldriver
    Jul 19 at 16:54











  • It is not pre-build lib some parts need to compile again. Please see Here and looking "5: Setting Ubuntu on target -> Get and Install the BSP packages (EULA required)." Please see Line 25. You can see a part need to make and make install.(Lines 28 and 29).

    – Amir Farahani
    Jul 19 at 17:07

















The .bin file in your link appears to contain pre-built binary files and libraries as well as source code - presumably make decides that they don't need to be rebuilt before installing.

– steeldriver
Jul 19 at 16:06





The .bin file in your link appears to contain pre-built binary files and libraries as well as source code - presumably make decides that they don't need to be rebuilt before installing.

– steeldriver
Jul 19 at 16:06













Modified part 2 Please see that.It is not bin file and need Extract.

– Amir Farahani
Jul 19 at 16:48






Modified part 2 Please see that.It is not bin file and need Extract.

– Amir Farahani
Jul 19 at 16:48














If you look in libfslcodec-4.0.8/release/exe/ or libfslcodec-4.0.8/release/lib/ what do you see? I'm betting it is pre-built executables and libraries

– steeldriver
Jul 19 at 16:54





If you look in libfslcodec-4.0.8/release/exe/ or libfslcodec-4.0.8/release/lib/ what do you see? I'm betting it is pre-built executables and libraries

– steeldriver
Jul 19 at 16:54













It is not pre-build lib some parts need to compile again. Please see Here and looking "5: Setting Ubuntu on target -> Get and Install the BSP packages (EULA required)." Please see Line 25. You can see a part need to make and make install.(Lines 28 and 29).

– Amir Farahani
Jul 19 at 17:07






It is not pre-build lib some parts need to compile again. Please see Here and looking "5: Setting Ubuntu on target -> Get and Install the BSP packages (EULA required)." Please see Line 25. You can see a part need to make and make install.(Lines 28 and 29).

– Amir Farahani
Jul 19 at 17:07











0






active

oldest

votes













Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);














draft saved

draft discarded
















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1159495%2fbuild-libfslcodec-4-0-8-on-ubuntu-16-04-for-imx6q%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown


























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded















































Thanks for contributing an answer to Ask Ubuntu!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1159495%2fbuild-libfslcodec-4-0-8-on-ubuntu-16-04-for-imx6q%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown









Popular posts from this blog

Tamil (spriik) Luke uk diar | Nawigatjuun

Align equal signs while including text over equalitiesAMS align: left aligned text/math plus multicolumn alignmentMultiple alignmentsAligning equations in multiple placesNumbering and aligning an equation with multiple columnsHow to align one equation with another multline equationUsing \ in environments inside the begintabularxNumber equations and preserving alignment of equal signsHow can I align equations to the left and to the right?Double equation alignment problem within align enviromentAligned within align: Why are they right-aligned?

Where does the image of a data connector as a sharp metal spike originate from?Where does the concept of infected people turning into zombies only after death originate from?Where does the motif of a reanimated human head originate?Where did the notion that Dragons could speak originate?Where does the archetypal image of the 'Grey' alien come from?Where did the suffix '-Man' originate?Where does the notion of being injured or killed by an illusion originate?Where did the term “sophont” originate?Where does the trope of magic spells being driven by advanced technology originate from?Where did the term “the living impaired” originate?