mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2026-02-04 05:44:53 +00:00
[BUG] Issue while building ccextractor with cmakefile #321
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @satyammittal on GitHub (Aug 6, 2017).
Please prefix your issue with one of the following: [BUG], [PROPOSAL], [QUESTION].
CCExtractor version (using the --version parameter preferably) : 0.85
In raising this issue, I confirm the following (please check boxes, eg [X]):
My familiarity with the project is as follows (check one, eg [X]):
Necessary information
-autoprogramCommands I used:
Video links
Please make the affected input file available for us (no screenshots, those don't help!). Public links to Dropbox, Google Drive, etc, are all fine. If it is not possible to make it available publicly, send us a private invitation (both Dropbox and Google Drive allow that). In this case we will download the file and upload it to the private developer repository.
Do not upload your file to any location that will require us to sign up or endure a wait list, slow downloads, etc. If your upload expires make sure you keep it active somehow (replace links if needed). Keep in mind that while we go over all tickets some may take a few days, and it's important we have the file available when we actually need it.
Additional information
Error:
log file: https://pastebin.com/E8HyYL6f
{issue content here, replace this line with your issue content}
I am trying to build using cmake. But facing issue. May be some specific issue for gnome os. Log file link is attached.
PS: Make sure you set an alert in GitHub so you get notifications about your ticket. We may need to ask questions and we do everything inside GitHub's system.
@saurabhshri commented on GitHub (Aug 7, 2017):
From your error log @satyammittal , it's evident that the makefile tries to compile
/win_iconv/iconv.heven when the platform is Linux. The reason is the set of commands you are issuing.You are generating makefile from cmake in the same directory where the libraries resides. Please create a separate folder in which you intend to keep the built files so that they don't get mixed with source files.
Please try the instructions as mentioned in the compiling section of the readme file and report back, i.e. :
@satyammittal commented on GitHub (Aug 7, 2017):
@saurabhshri Thanks it works. May be some cache issue of cmake. :)