bloomberg / blazingmq

A modern high-performance open source message queuing system
https://bloomberg.github.io/blazingmq/
Apache License 2.0
2.53k stars 130 forks source link

How to install the libs locally after done compiling it? #202

Closed faizol closed 6 months ago

faizol commented 6 months ago

Is there an existing proposal for this?

Is your feature request related to a problem?

Successfully compiled the library, and now trying to compile the tutorial source code.

Describe the solution you'd like

I successfully compiled the library using the supplied sh script. Now how can I install the libraries in usual places (/usr/local/*) for local development?

Alternatives you considered

No response

pniedzielski commented 6 months ago

Hi @faizol. Thanks for trying BlazingMQ! If you're using the build-ubuntu.sh script, you can set the DIR_INSTALL environment variable to be the path you want the installed artifacts to end up:

DIR_INSTALL=/usr/local ./bin/build-ubuntu.sh

Let me know if you have any issues with this.

faizol commented 6 months ago

Thank you, that solved it.