在 Makefile 中经常会用到一些内置的标准变量。下面说明:1. MAKE_VERSIONmake
命令的版本号,也就是执行 make -v 时看到的版本号。2. CURDIR当前的工作目录,一般的就是 Makefile 所在的目录。确切的说,应该是 make
执行时此进程所在目录。如果在 ma...
分类:
其他好文 时间:
2014-05-24 06:08:57
阅读次数:
260
$ wget
http://nginx.org/download/nginx-1.3.2.tar.gz$ tar xvzf
nginx-1.3.2.tar.gz#查看ngixn版本极其编译参数 $ /usr/local/nginx/sbin/nginx -Vnginx
version: nginx/...
分类:
其他好文 时间:
2014-05-24 00:01:29
阅读次数:
269
编译警告:This project was created using a version of
compiler that is not currently installed: 6.0.3 [C2000]. Another version of the
compiler will be used...
分类:
其他好文 时间:
2014-05-23 12:16:21
阅读次数:
3014
在eclipse下的日志文档:!SESSION 2014-05-19 17:23:10.833
-----------------------------------------------
eclipse.buildId=4.3.2.M20140221-1700 java.version=1.8....
分类:
编程语言 时间:
2014-05-23 10:56:13
阅读次数:
457
//============================================================================
// Name : DoubleBuffer.cpp
// Author : Vit
// Version :
// Copyright : Your copyright notice
// Descrip...
分类:
其他好文 时间:
2014-05-22 12:43:51
阅读次数:
349
Gallery和swithcer联合使用
/*
* Copyright (C) 2007 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in complian...
分类:
其他好文 时间:
2014-05-22 11:19:05
阅读次数:
288
SQL> select * from v$version;
BANNER
--------------------------------------------------------------------------------
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
...
分类:
数据库 时间:
2014-05-22 10:00:09
阅读次数:
434
<!--
Copyright 2011 Google Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the L...
分类:
移动开发 时间:
2014-05-22 08:41:44
阅读次数:
377
#查看数据库版本
mysql> select @@version;
+------------+
| @@version |
+------------+
| 5.5.16-log |
+------------+
1 row in set (0.00 sec)
mysql> select * from information_schema.schemata; # 保存了系统...
分类:
数据库 时间:
2014-05-20 15:05:07
阅读次数:
456
测试源码:
//测试派生类的构造函数的调用顺序何时调用
//Fedora20 gcc version=4.8.2
#include
using namespace std;
class base
{
public:
base()
{
cout<<"base created!"<<endl;
}
~base()
{
cout<<"base destroyed!"<<en...
分类:
编程语言 时间:
2014-05-20 14:12:21
阅读次数:
322