-
Notifications
You must be signed in to change notification settings - Fork 223
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
failed to build in ubuntu18.04 #15
Comments
configure生成Makefile不严谨,新版本lld检查问题。 在每个target(action)中把含有main函数的目标目标文件加上就好了。 比如"objs/sb_http_load: 后面紧接着加上"objs/src/main/htl_main_http_load.o ",这个target就能编译通过了。 其他部分如法炮制即可 |
怎么改?
|
又尝试了下,发现改错文件了。
|
Thanks. Here are the full modification for the file objs/Makefile CXXFLAGS = -std=c++98 -Wall -Wextra -g -O0 -DSRS_HIJACK_IO -DSRS_DISABLE_LOG ...... build objs/sb_http_loadsb_http_load: objs/sb_http_load build objs/sb_rtmp_loadsb_rtmp_load: objs/sb_rtmp_load build objs/sb_rtmp_load_fastsb_rtmp_load_fast: objs/sb_rtmp_load_fast build objs/sb_rtmp_publishsb_rtmp_publish: objs/sb_rtmp_publish build objs/sb_hls_loadsb_hls_load: objs/sb_hls_load |
The text was updated successfully, but these errors were encountered: