We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
UNAME_S := $(shell uname -s) ifeq ($(UNAME_S),Darwin) SRT_PREFIX := $(shell brew --prefix srt) CGO_CFLAGS := -I$(SRT_PREFIX)/include CGO_LDFLAGS := -L$(SRT_PREFIX)/lib -lsrt else ifeq ($(UNAME_S),Linux) CGO_CFLAGS := -I/usr/local/include CGO_LDFLAGS := -L/usr/local/lib -lsrt -L/usr/local/ssl/lib -lcrypto -lstdc++ -lm -ldl endif 没有windows下的适配 得自己添加吗
The text was updated successfully, but these errors were encountered:
No branches or pull requests
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Darwin)
SRT_PREFIX := $(shell brew --prefix srt)
CGO_CFLAGS := -I$(SRT_PREFIX)/include
CGO_LDFLAGS := -L$(SRT_PREFIX)/lib -lsrt
else ifeq ($(UNAME_S),Linux)
CGO_CFLAGS := -I/usr/local/include
CGO_LDFLAGS := -L/usr/local/lib -lsrt -L/usr/local/ssl/lib -lcrypto -lstdc++ -lm -ldl
endif
没有windows下的适配 得自己添加吗
The text was updated successfully, but these errors were encountered: