Skip to content

Instantly share code, notes, and snippets.

@duguying
Created July 19, 2019 08:02
Show Gist options
  • Save duguying/da80432136912aebaf5ecaebba3dbe48 to your computer and use it in GitHub Desktop.
Save duguying/da80432136912aebaf5ecaebba3dbe48 to your computer and use it in GitHub Desktop.
cgo -rpath指定动态库路径
// #cgo CFLAGS: -Wall
// #cgo LDFLAGS: -Wl,-rpath="/home/liuliang/ffmpeg-build/lib"
// #cgo LDFLAGS: -L/home/liuliang/workspace/wetrip_ffmpeg_demuxer/Debug
// #cgo LDFLAGS: -L/home/liuliang/workspace/wetrip_ffmpeg_demuxer
// #cgo LDFLAGS: -lwetrip_ffmpeg_demuxer -lstdc++ -ljpeg -lpthread -lrt
// #cgo LDFLAGS: -L/home/liuliang/ffmpeg-build/lib
// #cgo LDFLAGS: -lavformat -lavcodec -lswscale -lavutil -lswresample
// #include "test.h"
// #include <stdio.h>
// #include <stdlib.h>
// #include "wetrip_ffmpeg_demuxer.h"
@dasituer
Copy link

// #cgo LDFLAGS: -Wl,-rpath="/home/liuliang/ffmpeg-build/lib"

这一行并不能编译成功

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment