mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2026-02-14 05:25:44 +00:00
Can't build Mac version #191
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 @mackworth on GitHub (Oct 10, 2016).
The github version does not compile; it complains about missing protobuf. I tried adding
-I../src/to the BLD_INCLUDE, andSRC_PROTOBUF="$(find ../src/protobuf-c -name '*.c')"to the BLD-SOURCES line, which avoids the error, but then it has the rather odd symptom of not producing an executable.The 0.82 version downloaded from the original ccextractor site does compile and does work, but it seems to be behind the github version.
@cfsmp3 commented on GitHub (Oct 10, 2016):
Post the complete output from build so we can take a look.
On Mon, Oct 10, 2016 at 9:35 AM, Hugh Mackworth notifications@github.com
wrote:
@mackworth commented on GitHub (Oct 10, 2016):
First is output without any changes:
ccextractor Build1.txt
Then I changed build.command to:
build2.command.txt
and got essentially the same results without the protobuf errors, but with no binary!
ccextractor build2.txt
I should mention that many of the warning messages from clang should probably be looked into. It looks like several checks are not doing what they look like they're doing due to type issues.
Oh, and here's the output from the (successful) sourceforge version 0.82
ccextractor sourceforge.txt
@cfsmp3 commented on GitHub (Oct 11, 2016):
Most likely you also have to add curl to the list of libraries.
@mackworth commented on GitHub (Oct 11, 2016):
Figured this one out; I missed an error message for
utf8procburied in all the warnings. I'll do a pull request for the revised build command that incorporates protobuf and utf8proc in the process.@mackworth commented on GitHub (Oct 11, 2016):
fixed in PR #435