Giter Site home page Giter Site logo

Comments (5)

sonullx avatar sonullx commented on May 21, 2024

Hi there! Thank you for using our project.

I think I could help with the later question.

This is your command:

g++ -g -std=c++11 -Wall -I./sogou-workflow/include -L./sogou-workflow/lib -l:libworkflow.a src/main.cc -o src/main.o

Here are my two opinions:

  • src/main.cc should be put before -l:libworkflow.a. Library order does matter when using g++. See Here for more details.

  • -lssl -lcrypto -lpthread is needed following -l:libworkflow.a. Workflow needs OpenSSL and PThreads.

So, I think the right command was:

g++ -g -std=c++11 -Wall src/main.cc -I./sogou-workflow/include/ -L./sogou-workflow/lib -l:libworkflow.a -lssl -lcrypto -lpthread -o src/main.o

In addition, I have two other suggestions:

  • g++ outputs an executable file, so main.o might not be a good name. Usually .o file is created by g++ -c.

  • It is not necessary to rename _include and _lib dirs under sogou-workflow. But it is all right if you like it, not a problem.

If you got other problems, please don't be hesitate to contact us. Thank you.

from workflow.

tjliupeng avatar tjliupeng commented on May 21, 2024

My fault.

from workflow.

tjliupeng avatar tjliupeng commented on May 21, 2024

Thanks @sonullx for quick reply. "main.o" is just for my test code. In formal project, I won't use the name like this.

from workflow.

tjliupeng avatar tjliupeng commented on May 21, 2024

@sonullx
One more question: why the content of libworkflow.so is text: GROUP ( libworkflow.a AS_NEEDED ( libpthread.so libssl.so libcrypto.so ) ) ? I don't this kind of usage before. Where can I find the reference?

from workflow.

sonullx avatar sonullx commented on May 21, 2024

It is a linker script.

See this.

from workflow.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.