Skip to content

Instantly share code, notes, and snippets.

View Escapingbug's full-sized avatar
🤔
Why things so hard

Anciety Escapingbug

🤔
Why things so hard
  • 北京某211大学
  • Azeroth
View GitHub Profile
@Escapingbug
Escapingbug / build.ninja
Created May 28, 2018 04:18
修改过的build.ninja
#cc = /home/anciety/sources/v8/v8/third_party/llvm-build/Release+Asserts/bin/clang
#cxx = /home/anciety/sources/v8/v8/third_party/llvm-build/Release+Asserts/bin/clang++
cc = /bin/clang
cxx = /bin/clang++
ld = $cc
ldxx = $cxx
ar = ar
nm = nm
readelf = readelf
@Escapingbug
Escapingbug / download_from_google_storage.py
Created May 28, 2018 03:39
anciety处理过的用wget下代码的depot tools工具
#!/usr/bin/env python
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Download files from Google Storage based on SHA1 sums."""
import hashlib
import optparse