summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2011-12-27 20:15:32 (GMT)
committerEvan Martin <martine@danga.com>2011-12-27 20:15:32 (GMT)
commit67a2c3c58f74701d52c3a95fdbcedd30461e9908 (patch)
treeb270156db982e107be654c6f36ab3f61ffe3f32b
parentcfb7dc6a2c0b95d218a728cbcee8bf17951f381f (diff)
parent075847031b6cf7b9de3bb7c42648a74d168a752b (diff)
downloadNinja-67a2c3c58f74701d52c3a95fdbcedd30461e9908.zip
Ninja-67a2c3c58f74701d52c3a95fdbcedd30461e9908.tar.gz
Ninja-67a2c3c58f74701d52c3a95fdbcedd30461e9908.tar.bz2
Merge branch 'master' of git://github.com/ehird/ninja
-rw-r--r--HACKING4
-rw-r--r--README2
-rwxr-xr-xbootstrap.py72
-rwxr-xr-xbootstrap.sh53
-rwxr-xr-xconfigure.py8
-rw-r--r--src/browse.cc2
-rwxr-xr-xsrc/browse.py2
7 files changed, 83 insertions, 60 deletions
diff --git a/HACKING b/HACKING
index ca16e24..c8c0af4 100644
--- a/HACKING
+++ b/HACKING
@@ -1,5 +1,5 @@
Adjusting build flags:
- CFLAGS=-O3 ./configure
+ CFLAGS=-O3 ./configure.py
and rebuild.
Test-driven development:
@@ -52,7 +52,7 @@ Windows development on Linux (this is kind of hacky right now):
Windows development on Windows:
- install mingw, msys, and python
-- in the mingw shell, put Python in your path, and: sh bootstrap.sh
+- in the mingw shell, put Python in your path, and: python bootstrap.py
- to reconfigure, run 'python configure.py'
- remember to strip the resulting executable if size matters to you
- you'll need to rename ninja.exe into my-ninja.exe during development,
diff --git a/README b/README
index 1b80cf1..a8fe582 100644
--- a/README
+++ b/README
@@ -5,7 +5,7 @@ See the manual -- http://martine.github.com/ninja/manual.html or
doc/manual.asciidoc included in the distribution -- for background
and more details.
-To build, run ./bootstrap.sh. It first blindly compiles all non-test
+To build, run ./bootstrap.py. It first blindly compiles all non-test
source files together, then re-builds Ninja using itself. You should
end up with a 'ninja' binary in the source root. Run './ninja -h' for
help.
diff --git a/bootstrap.py b/bootstrap.py
new file mode 100755
index 0000000..ea35a5b
--- /dev/null
+++ b/bootstrap.py
@@ -0,0 +1,72 @@
+#!/usr/bin/env python
+# Copyright 2011 Google Inc. All Rights Reserved.
+#
+# 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 License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+import re
+import sys
+import os
+import glob
+import errno
+import subprocess
+
+def run(*args, **kwargs):
+ try:
+ subprocess.check_call(*args, **kwargs)
+ except subprocess.CalledProcessError, e:
+ sys.exit(e.returncode)
+
+# Compute system-specific CFLAGS/LDFLAGS as used in both in the below
+# g++ call as well as in the later configure.py.
+cflags = os.environ.get('CFLAGS', '')
+ldflags = os.environ.get('LDFLAGS', '')
+if sys.platform.startswith('freebsd'):
+ cflags += ' -I/usr/local/include'
+ ldflags += ' -L/usr/local/lib'
+
+print 'Building ninja manually...'
+
+try:
+ os.mkdir('build')
+except OSError, e:
+ if e.errno != errno.EEXIST:
+ raise
+
+with open('src/browse.py') as browse_py:
+ with open('build/browse_py.h', 'w') as browse_py_h:
+ run(['./src/inline.sh', 'kBrowsePy'],
+ stdin=browse_py, stdout=browse_py_h)
+
+pattern = r'test\.cc$|\.in\.cc$'
+
+if sys.platform.startswith('win32'):
+ pattern += r'|/browse\.cc$|/subprocess\.cc$'
+else:
+ pattern += r'|-win32\.cc$'
+
+sources = [src for src in glob.glob('src/*.cc') if not re.search(pattern, src)]
+
+args = [os.environ.get('CXX', 'g++'), '-Wno-deprecated',
+ '-DNINJA_PYTHON="' + sys.executable + '"']
+args.extend(cflags.split())
+args.extend(ldflags.split())
+args.extend(['-o', 'ninja.bootstrap'])
+args.extend(sources)
+run(args)
+
+print 'Building ninja using itself...'
+run([sys.executable, 'configure.py'] + sys.argv[1:])
+run(['./ninja.bootstrap'])
+os.unlink('ninja.bootstrap')
+
+print 'Done!'
diff --git a/bootstrap.sh b/bootstrap.sh
deleted file mode 100755
index 35ffd9e..0000000
--- a/bootstrap.sh
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/bin/sh
-
-# Copyright 2011 Google Inc. All Rights Reserved.
-#
-# 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 License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-set -e
-
-SYSTEMNAME=`uname -s`
-
-# Compute system-specific CFLAGS/LDFLAGS as used in both in the below
-# g++ call as well as in the later configure.py.
-if [ "${SYSTEMNAME}" = "Linux" ]; then
- export CFLAGS="${CFLAGS}"
- export LDFLAGS="${LDFLAGS}"
-elif [ "${SYSTEMNAME}" = "FreeBSD" ]; then
- export CFLAGS="${CFLAGS} -I/usr/local/include"
- export LDFLAGS="${LDFLAGS} -L/usr/local/lib"
-fi
-
-echo "Building ninja manually..."
-mkdir -p build
-./src/inline.sh kBrowsePy < src/browse.py > build/browse_py.h
-
-pattern='test\.cc$\|\.in\.cc$'
-case "$SYSTEMNAME" in
- MINGW32*)
- pattern="$pattern"'\|/browse\.cc$\|/subprocess\.cc$'
- ;;
- *)
- pattern="$pattern"'\|-win32\.cc$'
- ;;
-esac
-srcs=$(ls src/*.cc | grep -v "$pattern")
-
-${CXX:-g++} -Wno-deprecated ${CFLAGS} ${LDFLAGS} -o ninja.bootstrap $srcs
-
-echo "Building ninja using itself..."
-python ./configure.py
-./ninja.bootstrap
-rm ninja.bootstrap
-
-echo "Done!"
diff --git a/configure.py b/configure.py
index 6111588..2e044c1 100755
--- a/configure.py
+++ b/configure.py
@@ -42,6 +42,9 @@ parser.add_option('--profile', metavar='TYPE',
help='enable profiling (' + '/'.join(profilers) + ')',)
parser.add_option('--with-gtest', metavar='PATH',
help='use gtest unpacked in directory PATH')
+parser.add_option('--with-python', metavar='EXE',
+ help='use EXE as the Python interpreter',
+ default=os.path.basename(sys.executable))
(options, args) = parser.parse_args()
platform = options.platform
@@ -87,7 +90,8 @@ cflags = ['-g', '-Wall', '-Wextra',
'-Wno-deprecated',
'-Wno-unused-parameter',
'-fno-exceptions',
- '-fvisibility=hidden', '-pipe']
+ '-fvisibility=hidden', '-pipe',
+ "'-DNINJA_PYTHON=\"%s\"'" % (options.with_python,)]
if not options.debug:
cflags += ['-O2', '-DNDEBUG']
ldflags = ['-L$builddir']
@@ -271,7 +275,7 @@ n.newline()
if host != 'mingw':
n.comment('Regenerate build files if build script changes.')
n.rule('configure',
- command='./configure.py $configure_args',
+ command=options.with_python + ' configure.py $configure_args',
generator=True)
n.build('build.ninja', 'configure',
implicit=['configure.py', 'misc/ninja_syntax.py'])
diff --git a/src/browse.cc b/src/browse.cc
index bab3f36..83bfe43 100644
--- a/src/browse.cc
+++ b/src/browse.cc
@@ -46,7 +46,7 @@ void RunBrowsePython(State* state, const char* ninja_command,
// exec Python, telling it to run the program from stdin.
const char* command[] = {
- "python", "-", ninja_command, initial_target, NULL
+ NINJA_PYTHON, "-", ninja_command, initial_target, NULL
};
execvp(command[0], (char**)command);
perror("ninja: execvp");
diff --git a/src/browse.py b/src/browse.py
index 9901adc..ca95197 100755
--- a/src/browse.py
+++ b/src/browse.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
#
# Copyright 2001 Google Inc. All Rights Reserved.
#