fix header import
This commit is contained in:
parent
cceb597c45
commit
4ed0e734e1
|
@ -1,5 +1,6 @@
|
||||||
FROM rust AS chef
|
FROM rust AS chef
|
||||||
USER root
|
USER root
|
||||||
|
COPY .cargo .cargo
|
||||||
RUN cargo install cargo-chef
|
RUN cargo install cargo-chef
|
||||||
RUN apt-get update && apt-get install -y protobuf-compiler
|
RUN apt-get update && apt-get install -y protobuf-compiler
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
1
internal/pkg/all-in-one/.gitignore
vendored
1
internal/pkg/all-in-one/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
all-in-one.h
|
|
|
@ -2,7 +2,7 @@ package allinone
|
||||||
|
|
||||||
/*
|
/*
|
||||||
#cgo LDFLAGS: -L../../../build/lib -lall_in_one -lz -lm
|
#cgo LDFLAGS: -L../../../build/lib -lall_in_one -lz -lm
|
||||||
#include "./all-in-one.h"
|
#include "./all_in_one.h"
|
||||||
#include "./error_handler.h"
|
#include "./error_handler.h"
|
||||||
*/
|
*/
|
||||||
import "C"
|
import "C"
|
||||||
|
|
Loading…
Reference in a new issue