Upload Kmake

This commit is contained in:
Gorochu
2026-05-26 23:36:42 -07:00
parent ba051b2f74
commit 555ec72358
41615 changed files with 13344630 additions and 1 deletions

12
deps/openssl/config/fake_gcc.pl vendored Executable file
View File

@ -0,0 +1,12 @@
#! /usr/bin/env perl
use 5.10.0;
use strict;
my $args = join(' ', @ARGV);
my $ret;
if ($args eq '-Wa,-v -c -o /dev/null -x assembler /dev/null') {
$ret = "GNU assembler version 2.23.52.0.1 (x86_64-redhat-linux) using BFD version version 2.23.52.0.1-30.el7_1.2 20130226\n";
} else {
$ret = `gcc $args`;
}
print STDOUT $ret;