File tree Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Original file line number Diff line number Diff line change 44import subprocess
55import platform
66
7- extensions = ['parquet' ]
8-
9- # check if there are any additional extensions being requested
10- if 'DUCKDB_R_EXTENSIONS' in os .environ :
11- extensions = extensions + os .environ ['DUCKDB_R_EXTENSIONS' ].split ("," )
7+ # We always load extensions externally
8+ extensions = []
129
1310unity_build = 20
1411if 'DUCKDB_BUILD_UNITY' in os .environ :
@@ -36,11 +33,7 @@ def open_utf8(fpath, flags):
3633 return open (fpath , flags , encoding = "utf8" )
3734
3835
39- extension_list = ""
40-
41- for ext in extensions :
42- extension_list += ' -DDUCKDB_EXTENSION_{}_LINKED' .format (ext .upper ())
43- extension_list += " -DDUCKDB_BUILD_LIBRARY"
36+ extension_list = " -DDUCKDB_BUILD_LIBRARY"
4437
4538libraries = []
4639if platform .system () == 'Windows' :
You can’t perform that action at this time.
0 commit comments