Make HAVE_MSA describe cpu capability, NO_MSA software/env
This commit is contained in:
parent
31fd13d048
commit
2a203eedd3
|
@ -208,7 +208,9 @@ void get_cpuconfig(void){
|
|||
printf("#define DTB_SIZE 4096\n");
|
||||
printf("#define L2_ASSOCIATIVE 8\n");
|
||||
}
|
||||
if (!get_feature("msa")) printf("#define NO_MSA\n");
|
||||
#ifndef NO_MSA
|
||||
if (get_feature("msa")) printf("#define HAVE_MSA\n");
|
||||
#endif
|
||||
}
|
||||
|
||||
void get_libname(void){
|
||||
|
|
Loading…
Reference in New Issue