File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -82,9 +82,10 @@ export const env = async (arg?: Arg): Promise<tg.Directory> => {
82
82
if ( proxyLinker ) {
83
83
const isCross = build !== host ;
84
84
const prefix = isCross ? `${ host } -` : `` ;
85
- const embedWrapper = arg . embedWrapper ?? false ;
85
+ const embedWrapper = arg . embedWrapper ?? true ;
86
86
87
87
// Construct the ld proxy.
88
+ const ldEnv = embedWrapper ? { TANGRAM_LINKER_EMBED_WRAPPER : true } : { } ;
88
89
const ldProxyArtifact = await ldProxy ( {
89
90
buildToolchain : buildToolchainDir ,
90
91
build,
@@ -228,7 +229,7 @@ export const env = async (arg?: Arg): Promise<tg.Directory> => {
228
229
binDir = await tg . directory ( binDir , replacements ) ;
229
230
230
231
// Return the toolchain with the modified bin directory
231
- return tg . directory ( buildToolchainDir , { bin : binDir } ) ;
232
+ const envDir = tg . directory ( buildToolchainDir , { bin : binDir } ) ;
232
233
} ;
233
234
234
235
export default env ;
You can’t perform that action at this time.
0 commit comments