Sha256: f243b9a1d9de94b0591bd2cf5787371c2982f54faa247ebd9f5ec8e9a1d86c3b
Contents?: true
Size: 894 Bytes
Versions: 4
Compression:
Stored size: 894 Bytes
Contents
SCONS=build/scons/install/bin/scons SCONSSRC=build/scons V8SRC=build/v8 LIBV8=build/v8/libv8.a LIBV8_G=build/v8/libv8_g.a GCC_VERSION=$(shell ruby -e 'puts %x{gcc --version} =~ /(\d)\.(\d)\.\d/ ? $$1 + $$2 : "UNKNOWN"') ARCH=$(shell ruby -e "puts ['foo'].pack('p').size == 8 ? 'x64' : 'ia32'") all: $(LIBV8) debug: $(LIBV8_G) cp $(LIBV8_G) $(LIBV8) $(LIBV8): $(SCONS) $(V8SRC) cd build/v8 && GCC_VERSION=$(GCC_VERSION) ../scons/install/bin/scons arch=$(ARCH) $(LIBV8_G): $(SCONS) $(V8SRC) cd build/v8 && GCC_VERSION=$(GCC_VERSION) ../scons/install/bin/scons arch=$(ARCH) mode=debug $(SCONS): $(SCONSSRC) mkdir -p $(SCONSSRC)/install python build/scons/setup.py install --prefix=install $(V8SRC): build cp -r 2.1.10 build/v8 patch -td build/v8 -i ../../fpic-on-linux-amd64.patch $(SCONSSRC): build cp -r scons build build: mkdir -p build scons: $(SCONS) clean: rm -rf build
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
therubyracer-0.7.1 | ext/v8/upstream/Makefile |
therubyracer-0.7.1.pre | ext/v8/upstream/Makefile |
therubyracer-0.7.0 | ext/v8/upstream/Makefile |
therubyracer-0.7.0.pre | ext/v8/upstream/Makefile |