No banners, make a banners thread

/ttg/ - Tik Tok General

Safe haven from 4chan jannies


New Reply on thread #25969
X
Max 20 files0 B total
[New Reply]

Index | Catalog | Banners | Logs
Posting mode: Reply [Return]


 >>/26901/
Yes, but not for web based projects. Low level programming for electronics like C or pic16/ARM assembly.
The bakape V6 branch is easy to get running. Just install docker and docker compose, restart, clone the git repo branch, then build and deploy. Still working on the meowmin branch.
 >>/26911/
grocksdb was what I spent this morning fixing. that version of builds against rocksdb v10.2.1 and the Debian repos only go up to v9. you have to get 10.2.1 from GitHub and build/install it

this it what I put in my Dockerfile:
#rocksdb lib to fix go errors?
RUN apt-get install -y \
	libsnappy-dev zlib1g-dev libbz2-dev \
	liblz4-dev libzstd-dev libgflags-dev
WORKDIR /tmp
RUN wget -q https://github.com/facebook/rocksdb/archive/refs/tags/v10.2.1.tar.gz \
	&& tar -xzf v10.2.1.tar.gz
WORKDIR /tmp/rocksdb-10.2.1
RUN make DISABLE_WARNING_AS_ERROR=ON static_lib -j nproc
RUN cp librocksdb.a /usr/lib/
RUN mkdir -p /usr/include/rocksdb && cp -r include/rocksdb/* /usr/include/rocksdb/

make sure you go back to the correct workdir after. also it takes a million years to build.

the template errors might be because of wrong qtc binary? I install qtc with this line:
RUN go install github.com/valyala/quicktemplate/qtc@latest


Post(s) action:


Moderation Help
Scope:
Duration: Days

Ban Type:


937 replies | 320 file
New Reply on thread #25969
Max 20 files0 B total