[clang] 0d7596c - libclang: Add missing export to python script that generates export list
Tom Stellard via cfe-commits
cfe-commits at lists.llvm.org
Mon Jul 26 17:06:20 PDT 2021
Author: Tom Stellard
Date: 2021-07-26T17:06:08-07:00
New Revision: 0d7596c348842af2c34b13cfd9e5b3480e6c8b0e
URL: https://github.com/llvm/llvm-project/commit/0d7596c348842af2c34b13cfd9e5b3480e6c8b0e
DIFF: https://github.com/llvm/llvm-project/commit/0d7596c348842af2c34b13cfd9e5b3480e6c8b0e.diff
LOG: libclang: Add missing export to python script that generates export list
This script was added in 0cf37a3b0617457daaed3224373ffa07724f8482.
Added:
Modified:
clang/tools/libclang/linker-script-to-export-list.py
Removed:
################################################################################
diff --git a/clang/tools/libclang/linker-script-to-export-list.py b/clang/tools/libclang/linker-script-to-export-list.py
index aa035c7ed4e4..4b57be03c6c7 100644
--- a/clang/tools/libclang/linker-script-to-export-list.py
+++ b/clang/tools/libclang/linker-script-to-export-list.py
@@ -1,5 +1,6 @@
import re
import os
+import sys
input_file = open(sys.argv[1])
output_file = open(sys.argv[2])
More information about the cfe-commits
mailing list