Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(308)

Unified Diff: fusl/tools/sysroot_nothing.py

Issue 1649133002: Start to fusl toolchain (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Actually works Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« fusl/BUILD.gn ('K') | « fusl/test/empty_main.c ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fusl/tools/sysroot_nothing.py
diff --git a/fusl/tools/sysroot_nothing.py b/fusl/tools/sysroot_nothing.py
new file mode 100644
index 0000000000000000000000000000000000000000..bff16bc09dfec845f35c7e6ab57dcfa4f79c4654
--- /dev/null
+++ b/fusl/tools/sysroot_nothing.py
@@ -0,0 +1,16 @@
+# Copyright 2016 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.
+
+import os
+import sys
+
+def stamp():
+ stamp_file = sys.argv[1]
+ try:
+ os.utime(stamp_file, None)
+ except:
+ open(stamp_file, 'a')
+
+if __name__ == '__main__':
+ stamp()
« fusl/BUILD.gn ('K') | « fusl/test/empty_main.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698