错误提示:Apple Mach-O Linker Error
红色提示:
Command /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/clang failed with exit code 1
这种提示往往让我们不知道哪儿出错了,给出的提示不是很明显。
发生这种错误的原因通常是因为两个子工程中存在同名类造...
分类:
移动开发 时间:
2014-07-22 23:05:33
阅读次数:
469
需求是我们需要对服务器上的流量进行监控,网络上有个流传的check_traffic.sh,它需要被监控机开启snmp。但是感觉都使用上了nagios还要开snmp。。。有点斧子剪刀一起用的感觉,所以就动手写了个监控流量的shell:#!/bin/shusage()
{ echo "Usage: $0...
分类:
移动开发 时间:
2014-05-06 08:46:56
阅读次数:
361
这两天遇到了这样一个问题,网上下载的别人导出的.unitypackage包。如果双击打开,则会出现“Failed importing package ”的错误。
为此很头疼,查了一些资料,需要将.unitypackage包复制到Editor\Standard Packages文件夹下, 然后ctrl+9打开 Asset Store, 点击下载然后找到刚刚复制的包名,点击Impor...
分类:
其他好文 时间:
2014-05-04 00:05:32
阅读次数:
431
搭建apache+php开发环境,apache一路正常安装,但是,下载的php搭建后,配置好apache、php,始终报错“The
requested operation has
failed!”换了几个版本的php依旧不行。换了php-5.3.28-Win32-VC9-x86、php-5.4.5-...
分类:
Web程序 时间:
2014-05-03 22:27:14
阅读次数:
425
1 tomcat 6600启动报错[root@localhost webapps]# sh /usr/local/apache-tomcat-6.0.37_6600/bin/startup.sh Using CATALINA_BASE: /usr/local/apache-tomcat-6.0.37_6600Using CATALINA_HOME: /usr/local/apach...
分类:
Web程序 时间:
2014-05-03 20:52:53
阅读次数:
571
Ubuntu 14.04下启动模拟设备Android 4.2.2的时候报错:failed to load libgl.so先用locate 命令定位libGL库, 然后添加一个链接即可:dean@dean-Aspire-V7-481G:~$ locate libGL
/opt/android-sdk-linux/tools/lib/libGLES_CM_translator.so
/opt/and...
分类:
其他好文 时间:
2014-05-03 16:17:54
阅读次数:
483
HDU 2063
求一个二分图的最大匹配。
完全的裸题。贴代码。
#include
#include
#include
#include
#include
using namespace std;
vector G[1005];
bool check[1005];
int mac[1005];
int n;
void add_edge(int from,int to)
{
G[f...
分类:
其他好文 时间:
2014-05-02 20:57:04
阅读次数:
359
javafx.concurrency并发包是为方便javafx Application Thread也就是javafx的UI线程与后台线程安全交互的工具包。
接口:Worker.
Worker接口封装了Worker.State枚举作为Worker的状态:READY,SCHEDULED,RUNNING,SUCCEDED,FAILED,CANCELLED.
Worker拥有下面这些只读prope...
分类:
编程语言 时间:
2014-05-01 21:51:52
阅读次数:
691
The server network address “TCP://myserverAddress:50221″ cannot be reached or does not exist.
Check the network address name and that the ports for the local and remote endpoints are operational.
(Microsoft SQL Server, Error: 1418)...
分类:
Web程序 时间:
2014-05-01 18:35:53
阅读次数:
665
其实这个错误很简单,就是当我们在国际化的时候,写key,写着写着就忘了加 ";" 所以查看一下自己的Localization文件就可以了...
分类:
移动开发 时间:
2014-05-01 08:43:53
阅读次数:
660