@@ -206,11 +206,12 @@ fn list(options: getopts::Matches) {
206
206
}
207
207
}
208
208
209
- #[ cfg( any( unix, target_os = "redox" ) ) ]
209
+ #[ cfg( any( unix, target_os = "redox" , target_os = "wasi" ) ) ]
210
210
fn sort_entries ( entries : & mut Vec < PathBuf > , options : & getopts:: Matches ) {
211
211
let mut reverse = options. opt_present ( "r" ) ;
212
212
if options. opt_present ( "t" ) {
213
213
if options. opt_present ( "c" ) {
214
+ #[ cfg( not( target_os = "wasi" ) ) ]
214
215
entries. sort_by_key ( |k| {
215
216
Reverse ( get_metadata ( k, options) . map ( |md| md. ctime ( ) ) . unwrap_or ( 0 ) )
216
217
} ) ;
@@ -225,6 +226,7 @@ fn sort_entries(entries: &mut Vec<PathBuf>, options: &getopts::Matches) {
225
226
} ) ;
226
227
}
227
228
} else if options. opt_present ( "S" ) {
229
+ #[ cfg( not( target_os = "wasi" ) ) ]
228
230
entries. sort_by_key ( |k| get_metadata ( k, options) . map ( |md| md. size ( ) ) . unwrap_or ( 0 ) ) ;
229
231
reverse = !reverse;
230
232
} else if !options. opt_present ( "U" ) {
@@ -368,19 +370,22 @@ fn display_items(items: &Vec<PathBuf>, strip: Option<&Path>, options: &getopts::
368
370
}
369
371
} ) ;
370
372
371
- if let Some ( size) = termsize:: get ( ) {
372
- let mut grid = Grid :: new ( GridOptions {
373
- filling : Filling :: Spaces ( 2 ) ,
374
- direction : Direction :: TopToBottom ,
375
- } ) ;
373
+ #[ cfg( not( target_os = "wasi" ) ) ]
374
+ {
375
+ if let Some ( size) = termsize:: get ( ) {
376
+ let mut grid = Grid :: new ( GridOptions {
377
+ filling : Filling :: Spaces ( 2 ) ,
378
+ direction : Direction :: TopToBottom ,
379
+ } ) ;
376
380
377
- for name in names {
378
- grid. add ( name) ;
379
- }
381
+ for name in names {
382
+ grid. add ( name) ;
383
+ }
380
384
381
- if let Some ( output) = grid. fit_into_width ( size. cols as usize ) {
382
- print ! ( "{}" , output) ;
383
- return ;
385
+ if let Some ( output) = grid. fit_into_width ( size. cols as usize ) {
386
+ print ! ( "{}" , output) ;
387
+ return ;
388
+ }
384
389
}
385
390
}
386
391
}
0 commit comments