this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[kernel/libsyscall] Add Workaround For Case Sensitivity

Thomas A 73761f1c b947d5e6

+9 -3
+9 -3
src/kernel/libsyscall/xcodescripts/create-syscalls.pl
··· 50 50 51 51 my $MyName = File::Basename::basename($0); 52 52 53 - my @CustomSrc = qw(custom.s); 53 + # DARLING - Fix case sensivity 54 + #my @CustomSrc = qw(custom.s); 55 + my @CustomSrc = qw(custom.S); 54 56 55 57 my @Architectures = split /\s/, $ENV{"ARCHS"}; 56 58 my @Copy = (qw(SYS.h), @CustomSrc); ··· 246 248 247 249 my ($c_sym_name, $sym); 248 250 while (($c_sym_name, $sym) = each %Symbols) { 249 - my $source = "__".$$sym{c_sym}.".s"; 251 + # DARLING - Fix case sensivity 252 + #my $source = "__".$$sym{c_sym}.".s"; 253 + my $source = "__".$$sym{c_sym}.".S"; 250 254 my $custom = File::Spec->join($dir, $source); 251 255 next unless -f $custom; 252 256 ··· 458 462 my($k, $sym); 459 463 while (($k, $sym) = each %Symbols) 460 464 { 461 - my $srcname = $$sym{asm_sym} . ".s"; 465 + # DARLING - Fix case sensivity 466 + #my $srcname = $$sym{asm_sym} . ".s"; 467 + my $srcname = $$sym{asm_sym} . ".S"; 462 468 my $outpath = File::Spec->join($OutDir, $srcname); 463 469 464 470 if ($$sym{is_custom}) {