lordmulder / DynamicAudioNormalizer

Dynamic Audio Normalizer
Other
251 stars 36 forks source link

ERROR: cp: cannot stat ‘DynamicAudioNormalizerCLI/bin/DynamicAudioNormalizerCLI’ #4

Closed peter1000 closed 9 years ago

peter1000 commented 9 years ago

Hi,

just to let you know that with your last commit 0dfbba884e493843d8a118810cf77e6e2f671af6 you seem to have introduced an error.

Arch Linux

[STR] bin/DynamicAudioNormalizerCLI.bin
strip --strip-unneeded -o bin/DynamicAudioNormalizerCLI.bin bin/DynamicAudioNormalizerCLI-DBG.bin
make[1]: Leaving directory '/0_ARCH_TMP_BUILD_FOLDER_0/makepkg/dynamic-audio-normalizer-git_p/src/DynamicAudioNormalizer/DynamicAudioNormalizerCLI'

-----------------------------------------------------------------------------
Copy Binaries
-----------------------------------------------------------------------------

rm -rf ./bin/2015-07-20 
mkdir -p ./bin/2015-07-20/include
cp DynamicAudioNormalizerCLI/bin/DynamicAudioNormalizerCLI ./bin/2015-07-20
cp: cannot stat ‘DynamicAudioNormalizerCLI/bin/DynamicAudioNormalizerCLI’: No such file or directory
Makefile:154: recipe for target 'CopyAllBinaries' failed
make: *** [CopyAllBinaries] Error 1
==> ERROR: A failure occurred in build().
    Aborting...

I checked and the previous commit works fine.

Cheers P

lordmulder commented 9 years ago

Sorry, this is pretty much work in progress. I will (hopefully) fix Linux build tonight.

Regards, MuldeR

On 20.07.2015 12:12, peter1000 wrote:

Hi,

just to let you know that with your last commit 0dfbba884e493843d8a118810cf77e6e2f671af6 https://github.com/lordmulder/DynamicAudioNormalizer/commit/0dfbba884e493843d8a118810cf77e6e2f671af6 you seem to have introduced an error.

Arch Linux

|[STR] bin/DynamicAudioNormalizerCLI.bin strip --strip-unneeded -o bin/DynamicAudioNormalizerCLI.bin bin/DynamicAudioNormalizerCLI-DBG.bin make[1]: Leaving directory

'/0_ARCH_TMP_BUILD_FOLDER_0/makepkg/dynamic-audio-normalizer-git_p/src/DynamicAudioNormalizer/DynamicAudioNormalizerCLI'

Copy Binaries

rm -rf ./bin/2015-07-20 mkdir -p ./bin/2015-07-20/include cp DynamicAudioNormalizerCLI/bin/DynamicAudioNormalizerCLI ./bin/2015-07-20 cp: cannot stat ‘DynamicAudioNormalizerCLI/bin/DynamicAudioNormalizerCLI’: No such file or directory Makefile:154: recipe for target 'CopyAllBinaries' failed make: *\ [CopyAllBinaries] Error 1 ==> ERROR: A failure occurred in build(). Aborting... |

I checked and the previous commit works fine.

Cheers P

— Reply to this email directly or view it on GitHub https://github.com/lordmulder/DynamicAudioNormalizer/issues/4.

peter1000 commented 9 years ago

no problem just wanted to let you know.

lordmulder commented 9 years ago

Should be fixed by now: 0fcdb0fe05d2f75af4776fb53b33f3620815e9d6

peter1000 commented 9 years ago

Thanks.

just compiled it with my arch linux package and saw that the executables are now renamed to: .bin DynamicAudioNormalizerCLI.bin

Is that on purpose? - don't see that much on linux executable except for java self extracting binary file for Linux.

lordmulder commented 9 years ago

Yes. I recently added MinGW support to the Makefiles and thus we need to append the .exe extension on the Windows platform. For the sake of simplicity, .bin is now appended on the Linux platform.

(If you don't like the .bin extension, you can rename the file safely)

peter1000 commented 9 years ago

thanks