mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-27 14:58:30 +00:00
Update tests and CPU detection for Blink
This commit is contained in:
parent
be3e109309
commit
006c44ff5d
24 changed files with 206 additions and 56 deletions
|
@ -637,7 +637,7 @@ static void DropOutput(void) {
|
|||
}
|
||||
|
||||
static bool ShouldAvoidGzip(void) {
|
||||
return IsGenuineCosmo() || (IsGenuineBlink() && !X86_HAVE(JIT));
|
||||
return (IsGenuineBlink() && !X86_HAVE(JIT));
|
||||
}
|
||||
|
||||
static char *MergePaths(const char *p, size_t n, const char *q, size_t m,
|
||||
|
@ -7266,7 +7266,7 @@ static void GetOpts(int argc, char *argv[]) {
|
|||
int opt;
|
||||
bool storeasset = false;
|
||||
// only generate ecp cert under blinkenlights (rsa is slow)
|
||||
norsagen = IsGenuineCosmo() || IsGenuineBlink();
|
||||
norsagen = IsGenuineBlink();
|
||||
while ((opt = getopt(argc, argv, GETOPTS)) != -1) {
|
||||
switch (opt) {
|
||||
CASE('S', ++sandboxed);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue