在自动制作程序中打印到终端

时间:2019-04-15 04:42:26

标签: c++ linux automake s3fs

我正在研究3sfs-fuse(https://github.com/s3fs-fuse/s3fs-fuse),试图集成RC4客户端加密。我很难理解某些功能是如何相互影响的。问题:使用automake时标准输出会去哪里?即std::coutprintf()等,是否可以将其重定向到终端?

我尝试使用std::coutprintfperror以及其他我能想到的东西。

这是我的Makefile,我很确定这是我要更改的地方-但我不确定如何更改。其余代码(无需我的修改)可以在上面的GitHub中找到。

bin_PROGRAMS=s3fs

AM_CPPFLAGS = $(DEPS_CFLAGS)
if USE_GNUTLS_NETTLE
  AM_CPPFLAGS += -DUSE_GNUTLS_NETTLE
endif

s3fs_SOURCES = s3fs.cpp s3fs.h curl.cpp curl.h cache.cpp cache.h string_util.cpp string_util.h s3fs_util.cpp s3fs_util.h fdcache.cpp fdcache.h common_auth.cpp s3fs_auth.h addhead.cpp addhead.h common.h RC4Driver.cpp RC4Driver.h
if USE_SSL_OPENSSL
  s3fs_SOURCES += openssl_auth.cpp
endif
if USE_SSL_GNUTLS
  s3fs_SOURCES += gnutls_auth.cpp
endif
if USE_SSL_NSS
  s3fs_SOURCES += nss_auth.cpp
endif

s3fs_LDADD = $(DEPS_LIBS)

noinst_PROGRAMS = test_string_util

test_string_util_SOURCES = string_util.cpp test_string_util.cpp test_util.h

TESTS = test_string_util

0 个答案:

没有答案