如何解决以下问题?
$ brew update && brew upgrade
Already up-to-date.
Error: Calling needs :cxx11 is disabled! There is no replacement.
Please report this to the weikengchen/caskformula tap:
/usr/local/Homebrew/Library/Taps/weikengchen/homebrew-caskformula/Formula/inkscape.rb:31
If reporting this issue please do so at (not Homebrew/brew or Homebrew/core):
https://github.com/weikengchen/homebrew-caskformula/issues
答案 0 :(得分:10)
水龙头 caskformula / caskformula 和 weikengchen / caskformula (可能是其他水龙头)似乎都引起了此问题。要列出您当前的水龙头,请运行
brew tap
现在请取消可疑存储库的访问:
brew untap caskformula/caskformula
#这对我有用
运行brew doctor
,以在删除木桶后检查问题。如果有问题,请按照建议进行操作。
最后更新存储库并升级软件:
brew update
brew upgrade
此问题在github上有更多信息:
https://github.com/caskformula/homebrew-caskformula/issues/74
答案 1 :(得分:8)
这终于解决了我的问题:
private static CloudBlockBlob ReadBlockBlob(string input, IConfigurationRoot config)
{
CloudStorageAccount storageAccount = new CloudStorageAccount(
new Microsoft.WindowsAzure.Storage.Auth.StorageCredentials(config["storageAccountName"], config["storageKeyValue"]), true);
CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
CloudBlobContainer container = blobClient.GetContainerReference(config["blobContainer"]);
return container.GetBlockBlobReference(input);
}