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> => {
8282	if  ( proxyLinker )  { 
8383		const  isCross  =  build  !==  host ; 
8484		const  prefix  =  isCross  ? `${ host }   : `` ; 
85- 		const  embedWrapper  =  arg . embedWrapper  ??  false ; 
85+ 		const  embedWrapper  =  arg . embedWrapper  ??  true ; 
8686
8787		// Construct the ld proxy. 
88+ 		const  ldEnv  =  embedWrapper  ? {  TANGRAM_LINKER_EMBED_WRAPPER : true  }  : { } ; 
8889		const  ldProxyArtifact  =  await  ldProxy ( { 
8990			buildToolchain : buildToolchainDir , 
9091			build, 
@@ -228,7 +229,7 @@ export const env = async (arg?: Arg): Promise<tg.Directory> => {
228229	binDir  =  await  tg . directory ( binDir ,  replacements ) ; 
229230
230231	// Return the toolchain with the modified bin directory 
231- 	return  tg . directory ( buildToolchainDir ,  {  bin : binDir  } ) ; 
232+ 	const   envDir   =  tg . directory ( buildToolchainDir ,  {  bin : binDir  } ) ; 
232233} ; 
233234
234235export  default  env ; 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments