活动介绍

2*((60-30+(-40/5)*(9-2*5/3+7/3*99/4*2998+10*568/14)) 假设表达式里面除了包含空格、'+'、'-'、'*'、'/'和括号外,再无其他特殊符号。请编写代码解析表达式,并实现实现加减乘除;最后得出的结果与真实的计算机所算的结果必须一致。

时间: 2024-03-15 21:45:02 浏览: 132
以下是一个简单的 Python 代码实现: ```python def calculate(expression): # 去掉表达式中的空格 expression = expression.replace(' ', '') # 定义一个操作数栈和一个操作符栈 operands = [] operators = [] # 定义一个函数,用于计算两个操作数的结果 def do_math(op, op1, op2): if op == '+': return op1 + op2 elif op == '-': return op1 - op2 elif op == '*': return op1 * op2 elif op == '/': return op1 / op2 # 开始遍历表达式 i = 0 while i < len(expression): # 如果当前字符是数字 if expression[i].isdigit(): # 从字符串中读取数字,并将其转换为整数或浮点数 j = i while j < len(expression) and (expression[j].isdigit() or expression[j] == '.'): j += 1 operands.append(float(expression[i:j])) i = j # 如果当前字符是操作符 elif expression[i] in ('+', '-', '*', '/'): # 如果操作符栈不为空,且当前操作符的优先级小于等于栈顶操作符的优先级,就先计算栈顶的表达式 while operators and operators[-1] in ('*', '/') and (expression[i] in ('+', '-') or (expression[i] in ('*', '/') and (operators[-1] == '*' or operators[-1] == '/'))): op2, op1 = operands.pop(), operands.pop() op = operators.pop() operands.append(do_math(op, op1, op2)) # 将当前操作符入栈 operators.append(expression[i]) i += 1 # 如果当前字符是左括号 elif expression[i] == '(': operators.append(expression[i]) i += 1 # 如果当前字符是右括号 elif expression[i] == ')': # 计算括号内的表达式 while operators[-1] != '(': op2, op1 = operands.pop(), operands.pop() op = operators.pop() operands.append(do_math(op, op1, op2)) operators.pop() i += 1 # 计算剩下的表达式 while operators: op2, op1 = operands.pop(), operands.pop() op = operators.pop() operands.append(do_math(op, op1, op2)) # 返回最终结果 return operands[0] # 测试 expression = '2*((60-30+(-40/5)*(9-2*5/3+7/3*99/4*2998+10*568/14)))' result = calculate(expression) print(result) ``` 这个程序实现了一个简单的表达式计算器,可以处理加减乘除和括号。它的基本思路是将表达式分解成操作数和操作符,并将它们分别存储在两个栈中。然后按照操作符的优先级和括号的顺序计算表达式。最后返回计算的结果。这个程序的输出结果应该与真实计算机的输出结果一致。
阅读全文

相关推荐

这是我的主程序/***************************************** 功能卡 计分模式:20 120 普通模式:20 100 返 回:30 *****************************************/ #include "reg52.h" #include "Allhead.h" #include "NRF24L01.c" #include "led.c" #include "intrins.h" #include "lcd.h" unchar a1,a2,a3,a4,a5,s1,TxDate[4],lei,dui,number; unint time1,s,time2,time3; sbit open=P1^6; sbit led12=P1^0; sbit led1=P0^2; sbit led2=P0^1; sbit led3=P5^0; sbit led4=P3^5; sbit bee=P0^0; sbit keyleft=P3^4; sbit keyrigt=P3^3; bit busy,t1; void Delay10ms() //@22.1184MHz { unsigned char i, j, k; _nop_(); _nop_(); i = 1; j = 216; k = 35; do { do { while (--k); } while (--j); } while (--i); } void uart_sendbyte(char dat)//串口发送单个字符 { while (busy); busy = 1; S2BUF = dat; } /************************主函数********************/ void INTO() interrupt 0 // 外部中断是0号 { a1=1; uart_sendbyte1(1); } void show_main() { display_graphic_16x16(2,32,1,huan1); display_graphic_16x16(2,48,1,yin1); display_graphic_16x16(2,64,1,shi1); display_graphic_16x16(2,80,1,yong1); display_graphic_16x16(4,24,1,qi1); display_graphic_16x16(4,40,1,ti1); display_graphic_16x16(4,56,1,jian1); display_graphic_16x16(4,72,1,che1); display_graphic_16x16(4,88,1,yi2); } void main() { unint ji21,ji23; unchar ji2,ji3; P0M0=0X10; P0M1=0; P1M0=1;//0X7F; P1M1=0; P2M0=0X0; P2M1=0; P3M0=0; P3M1=0; P5M0=0; P5M1=0X10; open=1; // AUXR1=0x24; AUXR=0XB5; TMOD=0X21; //T1方式2 // ET0 =1; //定时器0中断充许位 TR1 =1; //启动T1 TR0=0; PT0=1; IT0=1;//下降沿触发. IT1=1; P_SW2=0X00; t1=1; bee=0;led12=1; led1=0;led2=0;led3=0;led4=0; initial_lcd(); clear_screen(); TxDate[0]=0xaa;TxDate[1]=0xaa;TxDate[2]=0xaa;TxDate[3]=0xab; uart_init(); SCON=0X50; //0101 0000 方式1,允许接收 EX0 =0; //外中断0中断充许位 show_main(); NRF24L01Int(); TxDate[0]='G'; NRFSetTxMode(TxDate); while(CheckACK()); //检测是否发送完毕 NRFSetTxMode(TxDate); while(CheckACK()); //检测是否发送完毕 a2=0; t1=0; EA=0; while(1) { ji23+=1; if(ji23>60000) { ji23=0; ji3+=1; if(ji3>60) { Delay10ms(); ji23=0; ji2=30; open=0; ji2=0; ji21=0; } } if(keyrigt==0) { Delay10ms(); ji23=0; ji2=0;open=0; ji21=0; } if(keyleft==0) { Delay10ms(); if(keyleft==0) { ji23=0; ji2=0; ji21=0;ji3=0; clear_screen(); display_graphic_16x16(2,32,1,zhen1); display_graphic_16x16(2,48,1,zai1); display_graphic_16x16(2,64,1,jian1); display_graphic_16x16(2,80,1,che1); t1=1; } } if(t1==1) { ji21+=1; if(ji21>50000) { ji2+=1; ji21=0; if(ji2==20) { ji23=0; ji3=0; TxDate[0]='O'; TxDate[1]='K'; NRFSetTxMode(TxDate); clear_screen(); display_graphic_16x16(2,32,1,jian1); display_graphic_16x16(2,48,1,che1); display_graphic_16x16(2,64,1,wan1); display_graphic_16x16(2,80,1,bi1); display_graphic_16x16(4,48,1,he1); display_graphic_16x16(4,64,1,ge1); display_graphic_16x16(6,24,1,shu1); display_graphic_16x16(6,40,1,ju1); display_graphic_16x16(6,56,1,yi1); display_graphic_16x16(6,72,1,shan1); display_graphic_16x16(6,88,1,chuan1); while(CheckACK()); //检测是否发送完毕 } if(ji2>80) { clear_screen(); show_main(); ji2=0; t1=0; } } } } } 将 display_graphic_16x16(2,32,1,huan1); display_graphic_16x16(2,48,1,yin1); display_graphic_16x16(2,64,1,shi1); display_graphic_16x16(2,80,1,yong1); display_graphic_16x16(4,24,1,qi1); display_graphic_16x16(4,40,1,ti1); display_graphic_16x16(4,56,1,jian1); display_graphic_16x16(4,72,1,che1); display_graphic_16x16(4,88,1,yi2); 显示为英文Welcome to use the gas detector display_graphic_16x16(2,32,1,zhen1); display_graphic_16x16(2,48,1,zai1); display_graphic_16x16(2,64,1,jian1); display_graphic_16x16(2,80,1,che1); 显示为Detecting display_graphic_16x16(2,32,1,jian1); display_graphic_16x16(2,48,1,che1); display_graphic_16x16(2,64,1,wan1); display_graphic_16x16(2,80,1,bi1); display_graphic_16x16(4,48,1,he1); display_graphic_16x16(4,64,1,ge1); display_graphic_16x16(6,24,1,shu1); display_graphic_16x16(6,40,1,ju1); display_graphic_16x16(6,56,1,yi1); display_graphic_16x16(6,72,1,shan1); display_graphic_16x16(6,88,1,chuan1);显示为Testing completed换行显示qualified 换行显示Data uploaded. 请为我修改代码,显示完整代码,这是我led.c代码/* 液晶演示程序JLX12864G-330,串行接口! 驱动IC是:ST7567 晶联讯电子:网址 http://www.jlxlcd.cn; */ #include <intrins.h> #include <Ctype.h> #include <font.h> #include "reg52.h" #include "lcd.h" sbit cs1=P1^3; sbit reset=P1^2;// sbit rs=P1^1;// sbit sclk=P5^3;// sbit sid=P5^2; sbit LEDA=P1^0;//背光控制,低电平点亮 void delay(int i); void delay_us(int i); /*写指令到LCD模块*/ void transfer_command(int data1) { char i; cs1=0; rs=0; for(i=0;i<8;i++) { sclk=0; // delay_us(2); if(data1&0x80) sid=1; else sid=0; sclk=1; delay_us(2); data1=data1<<=1; } cs1=1; } /*写数据到LCD模块*/ void transfer_data(int data1) { char i; cs1=0; rs=1; for(i=0;i<8;i++) { sclk=0; // delay_us(1); if(data1&0x80) sid=1; else sid=0; sclk=1; // delay_us(1); data1=data1<<=1; } cs1=1; } /*延时*/ void delay(int i) { int j,k; for(j=0;j<i;j++) for(k=0;k<110;k++); } /*延时*/ void delay_us(int i) { int j,k; for(j=0;j<i;j++) for(k=0;k<1;k++); } /*LCD模块初始化*/ void initial_lcd() { reset=0; /*低电平复位*/ delay(100); reset=1; /*复位完毕*/ delay(100); transfer_command(0xe2); /*软复位*/ delay(5); transfer_command(0xae); /*开显示*/ transfer_command(0x2c); /*升压步聚1*/ delay(5); transfer_command(0x2e); /*升压步聚2*/ delay(5); transfer_command(0x2f); /*升压步聚3*/ delay(5); transfer_command(0x24); /*粗调对比度,可设置范围0x20~0x27*/ transfer_command(0x81); /*微调对比度*/ transfer_command(0x0d); /*微调对比度的值,可设置范围0x00~0x3f*/ transfer_command(0xa2); /*1/9偏压比(bias)*/ transfer_command(0xc8); /*行扫描顺序:从上到下*/ transfer_command(0xa0); /*列扫描顺序:从左到右*/ transfer_command(0x40); /*起始行:第一行开始*/ transfer_command(0xaf); /*开显示*/ } void lcd_address(unsigned char page,unsigned char column) { column=column-1; //我们平常所说的第1列,在LCD驱动IC里是第0列。所以在这里减去1. page=page-1; transfer_command(0xb0+page); //设置页地址。每页是8行。一个画面的64行被分成8个页。我们平常所说的第1页,在LCD驱动IC里是第0页,所以在这里减去1*/ transfer_command(((column>>4)&0x0f)+0x10); //设置列地址的高4位 transfer_command(column&0x0f); //设置列地址的低4位 } /*全屏清屏*/ void clear_screen() { unsigned char i,j; for(i=0;i<9;i++) { lcd_address(1+i,1); for(j=0;j<132;j++) { transfer_data(0x00); } } } /*显示16x16点阵图像、汉字、生僻字或16x16点阵的其他图标*/ void display_graphic_16x16(unsigned char page,unsigned char column,unsigned char reverse,unsigned char *dp) { unsigned char i,j; for(j=0;j<2;j++) { lcd_address(page+j,column); for (i=0;i<16;i++) { if(reverse==1) { transfer_data(*dp); /*写数据到LCD,每写完一个8位的数据后列地址自动加1*/ } else transfer_data(~*dp); dp++; } } } 这是我font.h代码 unsigned char code zhen1[]={ /*-- 文字: 正 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/ 0x00,0x02,0x02,0xC2,0x02,0x02,0x02,0xFE,0x82,0x82,0x82,0x82,0x82,0x02,0x00,0x00, 0x40,0x40,0x40,0x7F,0x40,0x40,0x40,0x7F,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00}; unsigned char code zai1[]={ /*-- 文字: 在 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/ 0x08,0x08,0x88,0xC8,0x38,0x0C,0x0B,0x08,0x08,0xE8,0x08,0x08,0x08,0x08,0x08,0x00, 0x02,0x01,0x00,0xFF,0x40,0x41,0x41,0x41,0x41,0x7F,0x41,0x41,0x41,0x41,0x40,0x00}; unsigned char code jian1[]={ /*-- 文字: 检 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/ 0x10,0x10,0xD0,0xFF,0x90,0x50,0x20,0x50,0x4C,0x43,0x4C,0x50,0x20,0x40,0x40,0x00, 0x04,0x03,0x00,0xFF,0x00,0x41,0x44,0x58,0x41,0x4E,0x60,0x58,0x47,0x40,0x40,0x00}; unsigned char code che1[]={ /*-- 文字: 测 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/ 0x10,0x60,0x02,0x8C,0x00,0xFE,0x02,0xF2,0x02,0xFE,0x00,0xF8,0x00,0xFF,0x00,0x00, 0x04,0x04,0x7E,0x01,0x80,0x47,0x30,0x0F,0x10,0x27,0x00,0x47,0x80,0x7F,0x00,0x00}; unsigned char code wan1[]={ /*-- 文字: 完 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/ 0x10,0x0C,0x04,0x24,0x24,0x24,0x25,0x26,0x24,0x24,0x24,0x24,0x04,0x14,0x0C,0x00, 0x00,0x81,0x81,0x41,0x31,0x0F,0x01,0x01,0x01,0x7F,0x81,0x81,0x81,0xF1,0x00,0x00}; unsigned char code bi1[]={ /*-- 文字: 毕 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/ 0x00,0x00,0xFF,0x88,0x88,0x48,0x48,0x00,0x7F,0x88,0x84,0x84,0x82,0xE0,0x00,0x00, 0x04,0x04,0x05,0x04,0x04,0x04,0x04,0xFF,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00}; unsigned char code shu1[]={ /*-- 文字: 数 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/ 0x90,0x52,0x34,0x10,0xFF,0x10,0x34,0x52,0x80,0x70,0x8F,0x08,0x08,0xF8,0x08,0x00, 0x82,0x9A,0x56,0x63,0x22,0x52,0x8E,0x00,0x80,0x40,0x33,0x0C,0x33,0x40,0x80,0x00}; unsigned char code ju1[]={ /*-- 文字: 据 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/ 0x10,0x10,0xFF,0x10,0x90,0x00,0xFE,0x92,0x92,0x92,0xF2,0x92,0x92,0x9E,0x80,0x00, 0x42,0x82,0x7F,0x01,0x80,0x60,0x1F,0x00,0xFC,0x44,0x47,0x44,0x44,0xFC,0x00,0x00}; unsigned char code yi1[]={ /*-- 文字: 已 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/ 0x00,0x00,0xE2,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0xFE,0x00,0x00,0x00,0x00, 0x00,0x00,0x3F,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x78,0x00,0x00}; unsigned char code shan1[]={ /*-- 文字: 上 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/ 0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0x40,0x40,0x40,0x40,0x40,0x40,0x00,0x00,0x00, 0x40,0x40,0x40,0x40,0x40,0x40,0x7F,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00}; unsigned char code chuan1[]={ /*-- 文字: 传 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/ 0x00,0x80,0x60,0xF8,0x07,0x40,0x48,0x48,0xE8,0x5F,0x48,0x48,0x48,0x40,0x40,0x00, 0x01,0x00,0x00,0xFF,0x00,0x00,0x02,0x0B,0x12,0x22,0xD2,0x0A,0x06,0x00,0x00,0x00}; unsigned char code tai1[]={ /*-- 文字: 态 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/ 0x00,0x04,0x04,0x04,0x84,0x44,0x34,0x4F,0x94,0x24,0x44,0x84,0x84,0x04,0x00,0x00, 0x00,0x60,0x39,0x01,0x00,0x3C,0x40,0x42,0x4C,0x40,0x40,0x70,0x04,0x09,0x31,0x00}; unsigned char code shi1[]={ /*-- 文字: 使 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/ 0x40,0x20,0xF0,0x1C,0x07,0xF2,0x94,0x94,0x94,0xFF,0x94,0x94,0x94,0xF4,0x04,0x00, 0x00,0x00,0x7F,0x00,0x40,0x41,0x22,0x14,0x0C,0x13,0x10,0x30,0x20,0x61,0x20,0x00}; unsigned char code yong1[]={ /*-- 文字: 用 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/ 0x00,0x00,0x00,0xFE,0x22,0x22,0x22,0x22,0xFE,0x22,0x22,0x22,0x22,0xFE,0x00,0x00, 0x80,0x40,0x30,0x0F,0x02,0x02,0x02,0x02,0xFF,0x02,0x02,0x42,0x82,0x7F,0x00,0x00}; unsigned char code huan1[]={ /*-- 文字: 欢 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/ 0x04,0x24,0x44,0x84,0x64,0x9C,0x40,0x30,0x0F,0xC8,0x08,0x08,0x28,0x18,0x00,0x00, 0x10,0x08,0x06,0x01,0x82,0x4C,0x20,0x18,0x06,0x01,0x06,0x18,0x20,0x40,0x80,0x00}; unsigned char code yin1[]={ /*-- 文字: 迎 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/ 0x40,0x40,0x42,0xCC,0x00,0x00,0xFC,0x04,0x02,0x00,0xFC,0x04,0x04,0xFC,0x00,0x00, 0x00,0x40,0x20,0x1F,0x20,0x40,0x4F,0x44,0x42,0x40,0x7F,0x42,0x44,0x43,0x40,0x00}; unsigned char code qi1[]={ /*-- 文字: 气 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/ 0x20,0x10,0x4C,0x47,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0xD4,0x04,0x04,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0F,0x30,0x40,0xF0,0x00}; unsigned char code ti1[]={ /*-- 文字: 体 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/ 0x00,0x80,0x60,0xF8,0x07,0x10,0x10,0x10,0xD0,0xFF,0xD0,0x10,0x10,0x10,0x00,0x00, 0x01,0x00,0x00,0xFF,0x10,0x08,0x04,0x0B,0x08,0xFF,0x08,0x0B,0x04,0x08,0x10,0x00}; unsigned char code yi2[]={ /*-- 文字: 仪 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/ 0x00,0x80,0x60,0xF8,0x07,0x00,0x1C,0xE0,0x01,0x06,0x00,0xE0,0x1E,0x00,0x00,0x00, 0x01,0x00,0x00,0xFF,0x00,0x80,0x40,0x20,0x13,0x0C,0x13,0x20,0x40,0x80,0x80,0x00}; unsigned char code he1[]={ /*-- 文字: 合 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/ 0x40,0x40,0x20,0x20,0x50,0x48,0x44,0x43,0x44,0x48,0x50,0x20,0x20,0x40,0x40,0x00, 0x00,0x00,0x00,0xFE,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0xFE,0x00,0x00,0x00,0x00}; unsigned char code ge1[]={ /*-- 文字: 格 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=16x16 --*/ 0x10,0x10,0xD0,0xFF,0x90,0x20,0x10,0x18,0xA7,0x44,0xA4,0x14,0x0C,0x00,0x00,0x00, 0x04,0x03,0x00,0xFF,0x00,0x05,0x02,0xFD,0x44,0x44,0x44,0x45,0xFD,0x02,0x02,0x00}; unsigned char code mao_hao[]={ /*-- 文字: : (冒号) --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=8x16 --*/ 0x00,0x00,0x00,0xC0,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x00,0x00,0x00}; char code num0[]={ /*-- 文字: 0 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=8x16 --*/ 0x00,0xE0,0x10,0x08,0x08,0x10,0xE0,0x00,0x00,0x0F,0x10,0x20,0x20,0x10,0x0F,0x00 }; char code num1[]={ /*-- 文字: 1 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=8x16 --*/ 0x00,0x10,0x10,0xF8,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x3F,0x20,0x20,0x00,0x00 }; char code num2[]={ /*-- 文字: 2 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=8x16 --*/ 0x00,0x70,0x08,0x08,0x08,0x88,0x70,0x00,0x00,0x30,0x28,0x24,0x22,0x21,0x30,0x00 }; char code num3[]={ /*-- 文字: 3 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=8x16 --*/ 0x00,0x30,0x08,0x88,0x88,0x48,0x30,0x00,0x00,0x18,0x20,0x20,0x20,0x11,0x0E,0x00 }; char code num4[]={ /*-- 文字: 4 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=8x16 --*/ 0x00,0x00,0xC0,0x20,0x10,0xF8,0x00,0x00,0x00,0x07,0x04,0x24,0x24,0x3F,0x24,0x00 }; char code num5[]={ /*-- 文字: 5 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=8x16 --*/ 0x00,0xF8,0x08,0x88,0x88,0x08,0x08,0x00,0x00,0x19,0x21,0x20,0x20,0x11,0x0E,0x00 }; char code num6[]={ /*-- 文字: 6 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=8x16 --*/ 0x00,0xE0,0x10,0x88,0x88,0x18,0x00,0x00,0x00,0x0F,0x11,0x20,0x20,0x11,0x0E,0x00 }; char code num7[]={ /*-- 文字: 7 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=8x16 --*/ 0x00,0x38,0x08,0x08,0xC8,0x38,0x08,0x00,0x00,0x00,0x00,0x3F,0x00,0x00,0x00,0x00 }; char code num8[]={ /*-- 文字: 8 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=8x16 --*/ 0x00,0x70,0x88,0x08,0x08,0x88,0x70,0x00,0x00,0x1C,0x22,0x21,0x21,0x22,0x1C,0x00 }; char code num9[]={ /*-- 文字: 9 --*/ /*-- 宋体12; 此字体下对应的点阵为:宽x高=8x16 --*/ 0x00,0xE0,0x10,0x08,0x08,0x10,0xE0,0x00,0x00,0x00,0x31,0x22,0x22,0x11,0x0F,0x00 };

(li) lenovo@lenovo-ThinkStation-P920:/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan$ pip install -v --no-cache-dir --force-reinstall . 2>&1 | tee build.log Using pip 25.1 from /home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/pip (python 3.10) Looking in indexes: https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple Processing /media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan Preparing metadata (setup.py): started Running command python setup.py egg_info A module that was compiled using NumPy 1.x cannot be run in NumPy 2.2.6 as it may crash. To support both 1.x and 2.x versions of NumPy, modules must be compiled with NumPy 2.0. Some module may need to rebuild instead e.g. with 'pybind11>=2.12'. If you are a user of the module, the easiest solution will be to downgrade to 'numpy<2' or try to upgrade the affected module. We expect that some modules will need time to support NumPy 2. Traceback (most recent call last): File "<string>", line 2, in <module> File "", line 35, in <module> File "/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/setup.py", line 17, in <module> import torch File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/__init__.py", line 1471, in <module> from .functional import * # noqa: F403 File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/functional.py", line 9, in <module> import torch.nn.functional as F File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/nn/__init__.py", line 1, in <module> from .modules import * # noqa: F403 File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/nn/modules/__init__.py", line 35, in <module> from .transformer import TransformerEncoder, TransformerDecoder, \ File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/nn/modules/transformer.py", line 20, in <module> device: torch.device = torch.device(torch._C._get_default_device()), # torch.device('cpu'), /home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/nn/modules/transformer.py:20: UserWarning: Failed to initialize NumPy: _ARRAY_API not found (Triggered internally at ../torch/csrc/utils/tensor_numpy.cpp:84.) device: torch.device = torch.device(torch._C._get_default_device()), # torch.device('cpu'), torch.__version__ = 2.2.0+cu118 CUDA_HOME = /home/lenovo/anaconda3/envs/li CUDA version: 11.8 /home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. !! ******************************************************************************** Please consider removing the following classifiers in favor of a SPDX license expression: License :: OSI Approved :: BSD License See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. ******************************************************************************** !! self._finalize_license_expression() running egg_info creating /tmp/pip-pip-egg-info-w2djvsss/selective_scan.egg-info writing /tmp/pip-pip-egg-info-w2djvsss/selective_scan.egg-info/PKG-INFO writing dependency_links to /tmp/pip-pip-egg-info-w2djvsss/selective_scan.egg-info/dependency_links.txt writing requirements to /tmp/pip-pip-egg-info-w2djvsss/selective_scan.egg-info/requires.txt writing top-level names to /tmp/pip-pip-egg-info-w2djvsss/selective_scan.egg-info/top_level.txt writing manifest file '/tmp/pip-pip-egg-info-w2djvsss/selective_scan.egg-info/SOURCES.txt' reading manifest file '/tmp/pip-pip-egg-info-w2djvsss/selective_scan.egg-info/SOURCES.txt' writing manifest file '/tmp/pip-pip-egg-info-w2djvsss/selective_scan.egg-info/SOURCES.txt' Preparing metadata (setup.py): finished with status 'done' Collecting torch (from selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/0a/7c/0a5b3aee977596459ec45be2220370fde8e017f651fecc40522fd478cb1e/torch-2.7.1-cp310-cp310-manylinux_2_28_x86_64.whl (821.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 821.2/821.2 MB 1.1 MB/s eta 0:00:00 Collecting packaging (from selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl (66 kB) Collecting ninja (from selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/eb/7a/455d2877fe6cf99886849c7f9755d897df32eaf3a0fba47b56e615f880f7/ninja-1.11.1.4-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (422 kB) Collecting einops (from selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/87/62/9773de14fe6c45c23649e98b83231fffd7b9892b6cf863251dc2afa73643/einops-0.8.1-py3-none-any.whl (64 kB) Collecting filelock (from torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/4d/36/2a115987e2d8c300a974597416d9de88f2444426de9571f4b59b2cca3acc/filelock-3.18.0-py3-none-any.whl (16 kB) Collecting typing-extensions>=4.10.0 (from torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/69/e0/552843e0d356fbb5256d21449fa957fa4eff3bbc135a74a691ee70c7c5da/typing_extensions-4.14.0-py3-none-any.whl (43 kB) Collecting sympy>=1.13.3 (from torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/a2/09/77d55d46fd61b4a135c444fc97158ef34a095e5681d0a6c10b75bf356191/sympy-1.14.0-py3-none-any.whl (6.3 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.3/6.3 MB 946.1 kB/s eta 0:00:00 Link requires a different Python (3.10.18 not in: '>=3.11'): https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/eb/8d/776adee7bbf76365fdd7f2552710282c79a4ead5d2a46408c9043a2b70ba/networkx-3.5-py3-none-any.whl (from https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/networkx/) (requires-python:>=3.11) Link requires a different Python (3.10.18 not in: '>=3.11'): https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/6c/4f/ccdb8ad3a38e583f214547fd2f7ff1fc160c43a75af88e6aec213404b96a/networkx-3.5.tar.gz (from https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/networkx/) (requires-python:>=3.11) Link requires a different Python (3.10.18 not in: '>=3.11'): https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/3f/a1/46c1b6e202e3109d2a035b21a7e5534c5bb233ee30752d7f16a0bd4c3989/networkx-3.5rc0-py3-none-any.whl (from https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/networkx/) (requires-python:>=3.11) Link requires a different Python (3.10.18 not in: '>=3.11'): https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/90/7e/0319606a20ced20730806b9f7fe91d8a92f7da63d76a5c388f87d3f7d294/networkx-3.5rc0.tar.gz (from https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/networkx/) (requires-python:>=3.11) Collecting networkx (from torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl (1.7 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 883.3 kB/s eta 0:00:00 Collecting jinja2 (from torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl (134 kB) Collecting fsspec (from torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/bb/61/78c7b3851add1481b048b5fdc29067397a1784e2910592bc81bb3f608635/fsspec-2025.5.1-py3-none-any.whl (199 kB) Collecting nvidia-cuda-nvrtc-cu12==12.6.77 (from torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/75/2e/46030320b5a80661e88039f59060d1790298b4718944a65a7f2aeda3d9e9/nvidia_cuda_nvrtc_cu12-12.6.77-py3-none-manylinux2014_x86_64.whl (23.7 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 23.7/23.7 MB 1.1 MB/s eta 0:00:00 Collecting nvidia-cuda-runtime-cu12==12.6.77 (from torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/e1/23/e717c5ac26d26cf39a27fbc076240fad2e3b817e5889d671b67f4f9f49c5/nvidia_cuda_runtime_cu12-12.6.77-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (897 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 897.7/897.7 kB 1.7 MB/s eta 0:00:00 Collecting nvidia-cuda-cupti-cu12==12.6.80 (from torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/49/60/7b6497946d74bcf1de852a21824d63baad12cd417db4195fc1bfe59db953/nvidia_cuda_cupti_cu12-12.6.80-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (8.9 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.9/8.9 MB 1.1 MB/s eta 0:00:00 Collecting nvidia-cudnn-cu12==9.5.1.17 (from torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/2a/78/4535c9c7f859a64781e43c969a3a7e84c54634e319a996d43ef32ce46f83/nvidia_cudnn_cu12-9.5.1.17-py3-none-manylinux_2_28_x86_64.whl (571.0 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 571.0/571.0 MB 1.1 MB/s eta 0:00:00 Collecting nvidia-cublas-cu12==12.6.4.1 (from torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/af/eb/ff4b8c503fa1f1796679dce648854d58751982426e4e4b37d6fce49d259c/nvidia_cublas_cu12-12.6.4.1-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (393.1 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 393.1/393.1 MB 889.2 kB/s eta 0:00:00 Collecting nvidia-cufft-cu12==11.3.0.4 (from torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/8f/16/73727675941ab8e6ffd86ca3a4b7b47065edcca7a997920b831f8147c99d/nvidia_cufft_cu12-11.3.0.4-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (200.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 200.2/200.2 MB 761.5 kB/s eta 0:00:00 Collecting nvidia-curand-cu12==10.3.7.77 (from torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/73/1b/44a01c4e70933637c93e6e1a8063d1e998b50213a6b65ac5a9169c47e98e/nvidia_curand_cu12-10.3.7.77-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (56.3 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 56.3/56.3 MB 1.1 MB/s eta 0:00:00 Collecting nvidia-cusolver-cu12==11.7.1.2 (from torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/f0/6e/c2cf12c9ff8b872e92b4a5740701e51ff17689c4d726fca91875b07f655d/nvidia_cusolver_cu12-11.7.1.2-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (158.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 158.2/158.2 MB 881.4 kB/s eta 0:00:00 Collecting nvidia-cusparse-cu12==12.5.4.2 (from torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/06/1e/b8b7c2f4099a37b96af5c9bb158632ea9e5d9d27d7391d7eb8fc45236674/nvidia_cusparse_cu12-12.5.4.2-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (216.6 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 216.6/216.6 MB 1.4 MB/s eta 0:00:00 Collecting nvidia-cusparselt-cu12==0.6.3 (from torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/3b/9a/72ef35b399b0e183bc2e8f6f558036922d453c4d8237dab26c666a04244b/nvidia_cusparselt_cu12-0.6.3-py3-none-manylinux2014_x86_64.whl (156.8 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 156.8/156.8 MB 887.6 kB/s eta 0:00:00 Collecting nvidia-nccl-cu12==2.26.2 (from torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/67/ca/f42388aed0fddd64ade7493dbba36e1f534d4e6fdbdd355c6a90030ae028/nvidia_nccl_cu12-2.26.2-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (201.3 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 201.3/201.3 MB 1.1 MB/s eta 0:00:00 Collecting nvidia-nvtx-cu12==12.6.77 (from torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/56/9a/fff8376f8e3d084cd1530e1ef7b879bb7d6d265620c95c1b322725c694f4/nvidia_nvtx_cu12-12.6.77-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (89 kB) Collecting nvidia-nvjitlink-cu12==12.6.85 (from torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/9d/d7/c5383e47c7e9bf1c99d5bd2a8c935af2b6d705ad831a7ec5c97db4d82f4f/nvidia_nvjitlink_cu12-12.6.85-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl (19.7 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 19.7/19.7 MB 1.9 MB/s eta 0:00:00 Collecting nvidia-cufile-cu12==1.11.1.6 (from torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/b2/66/cc9876340ac68ae71b15c743ddb13f8b30d5244af344ec8322b449e35426/nvidia_cufile_cu12-1.11.1.6-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.1 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 1.9 MB/s eta 0:00:00 Collecting triton==3.3.1 (from torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/8d/a9/549e51e9b1b2c9b854fd761a1d23df0ba2fbc60bd0c13b489ffa518cfcb7/triton-3.3.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (155.6 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 155.6/155.6 MB 758.4 kB/s eta 0:00:00 Collecting setuptools>=40.8.0 (from triton==3.3.1->torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/a3/dc/17031897dae0efacfea57dfd3a82fdd2a2aeb58e0ff71b77b87e44edc772/setuptools-80.9.0-py3-none-any.whl (1.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 872.9 kB/s eta 0:00:00 Collecting mpmath<1.4,>=1.1.0 (from sympy>=1.13.3->torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/43/e3/7d92a15f894aa0c9c4b49b8ee9ac9850d6e63b03c9c32c0367a13ae62209/mpmath-1.3.0-py3-none-any.whl (536 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 536.2/536.2 kB 919.5 kB/s eta 0:00:00 Collecting MarkupSafe>=2.0 (from jinja2->torch->selective_scan==0.0.2) Downloading https://mirrors.tuna.tsinghua.edu.cn/pypi/web/packages/22/35/137da042dfb4720b638d2937c38a9c2df83fe32d20e8c8f3185dbfef05f7/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20 kB) Building wheels for collected packages: selective_scan DEPRECATION: Building 'selective_scan' using the legacy setup.py bdist_wheel mechanism, which will be removed in a future version. pip 25.3 will enforce this behaviour change. A possible replacement is to use the standardized build interface by setting the --use-pep517 option, (possibly combined with --no-build-isolation), or adding a pyproject.toml file to the source tree of 'selective_scan'. Discussion can be found at https://github.com/pypa/pip/issues/6334 Building wheel for selective_scan (setup.py): started Running command python setup.py bdist_wheel A module that was compiled using NumPy 1.x cannot be run in NumPy 2.2.6 as it may crash. To support both 1.x and 2.x versions of NumPy, modules must be compiled with NumPy 2.0. Some module may need to rebuild instead e.g. with 'pybind11>=2.12'. If you are a user of the module, the easiest solution will be to downgrade to 'numpy<2' or try to upgrade the affected module. We expect that some modules will need time to support NumPy 2. Traceback (most recent call last): File "<string>", line 2, in <module> File "", line 35, in <module> File "/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/setup.py", line 17, in <module> import torch File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/__init__.py", line 1471, in <module> from .functional import * # noqa: F403 File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/functional.py", line 9, in <module> import torch.nn.functional as F File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/nn/__init__.py", line 1, in <module> from .modules import * # noqa: F403 File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/nn/modules/__init__.py", line 35, in <module> from .transformer import TransformerEncoder, TransformerDecoder, \ File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/nn/modules/transformer.py", line 20, in <module> device: torch.device = torch.device(torch._C._get_default_device()), # torch.device('cpu'), /home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/nn/modules/transformer.py:20: UserWarning: Failed to initialize NumPy: _ARRAY_API not found (Triggered internally at ../torch/csrc/utils/tensor_numpy.cpp:84.) device: torch.device = torch.device(torch._C._get_default_device()), # torch.device('cpu'), torch.__version__ = 2.2.0+cu118 CUDA_HOME = /home/lenovo/anaconda3/envs/li CUDA version: 11.8 /home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. !! ******************************************************************************** Please consider removing the following classifiers in favor of a SPDX license expression: License :: OSI Approved :: BSD License See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. ******************************************************************************** !! self._finalize_license_expression() running bdist_wheel running build running build_ext /home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/utils/cpp_extension.py:425: UserWarning: There are no g++ version bounds defined for CUDA version 11.8 warnings.warn(f'There are no {compiler_name} version bounds defined for CUDA version {cuda_str_version}') building 'selective_scan_cuda_core' extension creating /media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/build/temp.linux-x86_64-cpython-310/csrc/selective_scan/cus Emitting ninja build file /media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/build/temp.linux-x86_64-cpython-310/build.ninja... Compiling objects... Allowing ninja to set a default number of workers... (overridable by setting the environment variable MAX_JOBS=N) [1/3] c++ -MMD -MF '/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/build/temp.linux-x86_64-cpython-310/csrc/selective_scan/cus/selective_scan.o'.d -pthread -B /home/lenovo/anaconda3/envs/li/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/lenovo/anaconda3/envs/li/include -fPIC -O2 -isystem /home/lenovo/anaconda3/envs/li/include -fPIC '-I/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/csrc/selective_scan' -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include/TH -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include/THC -I/home/lenovo/anaconda3/envs/li/include -I/home/lenovo/anaconda3/envs/li/include/python3.10 -c -c '/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/csrc/selective_scan/cus/selective_scan.cpp' -o '/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/build/temp.linux-x86_64-cpython-310/csrc/selective_scan/cus/selective_scan.o' -O3 -std=c++17 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1011"' -DTORCH_EXTENSION_NAME=selective_scan_cuda_core -D_GLIBCXX_USE_CXX11_ABI=0 FAILED: /media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/build/temp.linux-x86_64-cpython-310/csrc/selective_scan/cus/selective_scan.o c++ -MMD -MF '/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/build/temp.linux-x86_64-cpython-310/csrc/selective_scan/cus/selective_scan.o'.d -pthread -B /home/lenovo/anaconda3/envs/li/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -fwrapv -O2 -Wall -fPIC -O2 -isystem /home/lenovo/anaconda3/envs/li/include -fPIC -O2 -isystem /home/lenovo/anaconda3/envs/li/include -fPIC '-I/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/csrc/selective_scan' -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include/TH -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include/THC -I/home/lenovo/anaconda3/envs/li/include -I/home/lenovo/anaconda3/envs/li/include/python3.10 -c -c '/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/csrc/selective_scan/cus/selective_scan.cpp' -o '/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/build/temp.linux-x86_64-cpython-310/csrc/selective_scan/cus/selective_scan.o' -O3 -std=c++17 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1011"' -DTORCH_EXTENSION_NAME=selective_scan_cuda_core -D_GLIBCXX_USE_CXX11_ABI=0 In file included from /home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include/ATen/cuda/CUDAContext.h:3, from /media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/csrc/selective_scan/cus/selective_scan.cpp:5: /home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include/ATen/cuda/CUDAContextLight.h:6:10: fatal error: cuda_runtime_api.h: 没有那个文件或目录 6 | #include <cuda_runtime_api.h> | ^~~~~~~~~~~~~~~~~~~~ compilation terminated. [2/3] /home/lenovo/anaconda3/envs/li/bin/nvcc --generate-dependencies-with-compile --dependency-output '/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/build/temp.linux-x86_64-cpython-310/csrc/selective_scan/cus/selective_scan_core_fwd.o'.d '-I/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/csrc/selective_scan' -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include/TH -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include/THC -I/home/lenovo/anaconda3/envs/li/include -I/home/lenovo/anaconda3/envs/li/include/python3.10 -c -c '/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/csrc/selective_scan/cus/selective_scan_core_fwd.cu' -o '/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/build/temp.linux-x86_64-cpython-310/csrc/selective_scan/cus/selective_scan_core_fwd.o' -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_BFLOAT16_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ --expt-relaxed-constexpr --compiler-options ''"'"'-fPIC'"'"'' -O3 -std=c++17 -U__CUDA_NO_HALF_OPERATORS__ -U__CUDA_NO_HALF_CONVERSIONS__ -U__CUDA_NO_BFLOAT16_OPERATORS__ -U__CUDA_NO_BFLOAT16_CONVERSIONS__ -U__CUDA_NO_BFLOAT162_OPERATORS__ -U__CUDA_NO_BFLOAT162_CONVERSIONS__ --expt-relaxed-constexpr --expt-extended-lambda --use_fast_math --ptxas-options=-v -lineinfo -arch=sm_86 --threads 4 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1011"' -DTORCH_EXTENSION_NAME=selective_scan_cuda_core -D_GLIBCXX_USE_CXX11_ABI=0 FAILED: /media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/build/temp.linux-x86_64-cpython-310/csrc/selective_scan/cus/selective_scan_core_fwd.o /home/lenovo/anaconda3/envs/li/bin/nvcc --generate-dependencies-with-compile --dependency-output '/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/build/temp.linux-x86_64-cpython-310/csrc/selective_scan/cus/selective_scan_core_fwd.o'.d '-I/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/csrc/selective_scan' -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include/TH -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include/THC -I/home/lenovo/anaconda3/envs/li/include -I/home/lenovo/anaconda3/envs/li/include/python3.10 -c -c '/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/csrc/selective_scan/cus/selective_scan_core_fwd.cu' -o '/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/build/temp.linux-x86_64-cpython-310/csrc/selective_scan/cus/selective_scan_core_fwd.o' -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_BFLOAT16_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ --expt-relaxed-constexpr --compiler-options ''"'"'-fPIC'"'"'' -O3 -std=c++17 -U__CUDA_NO_HALF_OPERATORS__ -U__CUDA_NO_HALF_CONVERSIONS__ -U__CUDA_NO_BFLOAT16_OPERATORS__ -U__CUDA_NO_BFLOAT16_CONVERSIONS__ -U__CUDA_NO_BFLOAT162_OPERATORS__ -U__CUDA_NO_BFLOAT162_CONVERSIONS__ --expt-relaxed-constexpr --expt-extended-lambda --use_fast_math --ptxas-options=-v -lineinfo -arch=sm_86 --threads 4 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1011"' -DTORCH_EXTENSION_NAME=selective_scan_cuda_core -D_GLIBCXX_USE_CXX11_ABI=0 <command-line>: fatal error: cuda_runtime.h: 没有那个文件或目录 compilation terminated. <command-line>: fatal error: cuda_runtime.h: 没有那个文件或目录 compilation terminated. fatal : Could not open input file /tmp/tmpxft_00005756_00000000-7_selective_scan_core_fwd.cpp1.ii [3/3] /home/lenovo/anaconda3/envs/li/bin/nvcc --generate-dependencies-with-compile --dependency-output '/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/build/temp.linux-x86_64-cpython-310/csrc/selective_scan/cus/selective_scan_core_bwd.o'.d '-I/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/csrc/selective_scan' -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include/TH -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include/THC -I/home/lenovo/anaconda3/envs/li/include -I/home/lenovo/anaconda3/envs/li/include/python3.10 -c -c '/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/csrc/selective_scan/cus/selective_scan_core_bwd.cu' -o '/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/build/temp.linux-x86_64-cpython-310/csrc/selective_scan/cus/selective_scan_core_bwd.o' -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_BFLOAT16_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ --expt-relaxed-constexpr --compiler-options ''"'"'-fPIC'"'"'' -O3 -std=c++17 -U__CUDA_NO_HALF_OPERATORS__ -U__CUDA_NO_HALF_CONVERSIONS__ -U__CUDA_NO_BFLOAT16_OPERATORS__ -U__CUDA_NO_BFLOAT16_CONVERSIONS__ -U__CUDA_NO_BFLOAT162_OPERATORS__ -U__CUDA_NO_BFLOAT162_CONVERSIONS__ --expt-relaxed-constexpr --expt-extended-lambda --use_fast_math --ptxas-options=-v -lineinfo -arch=sm_86 --threads 4 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1011"' -DTORCH_EXTENSION_NAME=selective_scan_cuda_core -D_GLIBCXX_USE_CXX11_ABI=0 FAILED: /media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/build/temp.linux-x86_64-cpython-310/csrc/selective_scan/cus/selective_scan_core_bwd.o /home/lenovo/anaconda3/envs/li/bin/nvcc --generate-dependencies-with-compile --dependency-output '/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/build/temp.linux-x86_64-cpython-310/csrc/selective_scan/cus/selective_scan_core_bwd.o'.d '-I/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/csrc/selective_scan' -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include/torch/csrc/api/include -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include/TH -I/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/include/THC -I/home/lenovo/anaconda3/envs/li/include -I/home/lenovo/anaconda3/envs/li/include/python3.10 -c -c '/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/csrc/selective_scan/cus/selective_scan_core_bwd.cu' -o '/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/build/temp.linux-x86_64-cpython-310/csrc/selective_scan/cus/selective_scan_core_bwd.o' -D__CUDA_NO_HALF_OPERATORS__ -D__CUDA_NO_HALF_CONVERSIONS__ -D__CUDA_NO_BFLOAT16_CONVERSIONS__ -D__CUDA_NO_HALF2_OPERATORS__ --expt-relaxed-constexpr --compiler-options ''"'"'-fPIC'"'"'' -O3 -std=c++17 -U__CUDA_NO_HALF_OPERATORS__ -U__CUDA_NO_HALF_CONVERSIONS__ -U__CUDA_NO_BFLOAT16_OPERATORS__ -U__CUDA_NO_BFLOAT16_CONVERSIONS__ -U__CUDA_NO_BFLOAT162_OPERATORS__ -U__CUDA_NO_BFLOAT162_CONVERSIONS__ --expt-relaxed-constexpr --expt-extended-lambda --use_fast_math --ptxas-options=-v -lineinfo -arch=sm_86 --threads 4 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1011"' -DTORCH_EXTENSION_NAME=selective_scan_cuda_core -D_GLIBCXX_USE_CXX11_ABI=0 <command-line>: fatal error: cuda_runtime.h: 没有那个文件或目录 compilation terminated. <command-line>: fatal error: cuda_runtime.h: 没有那个文件或目录 compilation terminated. fatal : Could not open input file /tmp/tmpxft_00005755_00000000-7_selective_scan_core_bwd.cpp1.ii ninja: build stopped: subcommand failed. Traceback (most recent call last): File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/utils/cpp_extension.py", line 2096, in _run_ninja_build subprocess.run( File "/home/lenovo/anaconda3/envs/li/lib/python3.10/subprocess.py", line 526, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['ninja', '-v']' returned non-zero exit status 1. The above exception was the direct cause of the following exception: Traceback (most recent call last): File "<string>", line 2, in <module> File "", line 35, in <module> File "/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/setup.py", line 146, in <module> setup( File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/__init__.py", line 117, in setup return distutils.core.setup(**attrs) File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/_distutils/core.py", line 186, in setup return run_commands(dist) File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/_distutils/core.py", line 202, in run_commands dist.run_commands() File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/_distutils/dist.py", line 1002, in run_commands self.run_command(cmd) File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/dist.py", line 1104, in run_command super().run_command(command) File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/_distutils/dist.py", line 1021, in run_command cmd_obj.run() File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/command/bdist_wheel.py", line 370, in run self.run_command("build") File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/_distutils/cmd.py", line 357, in run_command self.distribution.run_command(command) File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/dist.py", line 1104, in run_command super().run_command(command) File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/_distutils/dist.py", line 1021, in run_command cmd_obj.run() File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/_distutils/command/build.py", line 135, in run self.run_command(cmd_name) File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/_distutils/cmd.py", line 357, in run_command self.distribution.run_command(command) File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/dist.py", line 1104, in run_command super().run_command(command) File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/_distutils/dist.py", line 1021, in run_command cmd_obj.run() File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/command/build_ext.py", line 99, in run _build_ext.run(self) File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/_distutils/command/build_ext.py", line 368, in run self.build_extensions() File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/utils/cpp_extension.py", line 871, in build_extensions build_ext.build_extensions(self) File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/_distutils/command/build_ext.py", line 484, in build_extensions self._build_extensions_serial() File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/_distutils/command/build_ext.py", line 510, in _build_extensions_serial self.build_extension(ext) File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/command/build_ext.py", line 264, in build_extension _build_ext.build_extension(self, ext) File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/_distutils/command/build_ext.py", line 565, in build_extension objects = self.compiler.compile( File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/utils/cpp_extension.py", line 684, in unix_wrap_ninja_compile _write_ninja_file_and_compile_objects( File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/utils/cpp_extension.py", line 1774, in _write_ninja_file_and_compile_objects _run_ninja_build( File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/utils/cpp_extension.py", line 2112, in _run_ninja_build raise RuntimeError(message) from e RuntimeError: Error compiling objects for extension error: subprocess-exited-with-error × python setup.py bdist_wheel did not run successfully. │ exit code: 1 ╰─> See above for output. note: This error originates from a subprocess, and is likely not a problem with pip. full command: /home/lenovo/anaconda3/envs/li/bin/python3.10 -u -c ' exec(compile('"'"''"'"''"'"' # This is -- a caller that pip uses to run setup.py # # - It imports setuptools before invoking setup.py, to enable projects that directly # import from distutils.core to work with newer packaging standards. # - It provides a clear error message when setuptools is not installed. # - It sets sys.argv[0] to the underlying setup.py, when invoking setup.py so # setuptools doesn'"'"'t think the script is -c. This avoids the following warning: # manifest_maker: standard file '"'"'-c'"'"' not found". # - It generates a shim setup.py, for handling setup.cfg-only projects. import os, sys, tokenize, traceback try: import setuptools except ImportError: print( "ERROR: Can not execute setup.py since setuptools failed to import in " "the build environment with exception:", file=sys.stderr, ) traceback.print_exc() sys.exit(1) __file__ = %r sys.argv[0] = __file__ if os.path.exists(__file__): filename = __file__ with tokenize.open(__file__) as f: setup_py_code = f.read() else: filename = "<auto-generated setuptools caller>" setup_py_code = "from setuptools import setup; setup()" exec(compile(setup_py_code, filename, "exec")) '"'"''"'"''"'"' % ('"'"'/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/setup.py'"'"',), "", "exec"))' bdist_wheel -d /tmp/pip-wheel-fm2tmb40 cwd: /media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/ Building wheel for selective_scan (setup.py): finished with status 'error' ERROR: Failed building wheel for selective_scan Running setup.py clean for selective_scan Running command python setup.py clean A module that was compiled using NumPy 1.x cannot be run in NumPy 2.2.6 as it may crash. To support both 1.x and 2.x versions of NumPy, modules must be compiled with NumPy 2.0. Some module may need to rebuild instead e.g. with 'pybind11>=2.12'. If you are a user of the module, the easiest solution will be to downgrade to 'numpy<2' or try to upgrade the affected module. We expect that some modules will need time to support NumPy 2. Traceback (most recent call last): File "<string>", line 2, in <module> File "", line 35, in <module> File "/media/lenovo/PHILIPS/Mamba_20250409_ torch22_cuda118/VMamba-main/kernels/selective_scan/setup.py", line 17, in <module> import torch File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/__init__.py", line 1471, in <module> from .functional import * # noqa: F403 File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/functional.py", line 9, in <module> import torch.nn.functional as F File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/nn/__init__.py", line 1, in <module> from .modules import * # noqa: F403 File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/nn/modules/__init__.py", line 35, in <module> from .transformer import TransformerEncoder, TransformerDecoder, \ File "/home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/nn/modules/transformer.py", line 20, in <module> device: torch.device = torch.device(torch._C._get_default_device()), # torch.device('cpu'), /home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/torch/nn/modules/transformer.py:20: UserWarning: Failed to initialize NumPy: _ARRAY_API not found (Triggered internally at ../torch/csrc/utils/tensor_numpy.cpp:84.) device: torch.device = torch.device(torch._C._get_default_device()), # torch.device('cpu'), torch.__version__ = 2.2.0+cu118 CUDA_HOME = /home/lenovo/anaconda3/envs/li CUDA version: 11.8 /home/lenovo/anaconda3/envs/li/lib/python3.10/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. !! ******************************************************************************** Please consider removing the following classifiers in favor of a SPDX license expression: License :: OSI Approved :: BSD License See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. ******************************************************************************** !! self._finalize_license_expression() running clean removing 'build/temp.linux-x86_64-cpython-310' (and everything under it) 'build/lib.linux-x86_64-cpython-310' does not exist -- can't clean it 'build/bdist.linux-x86_64' does not exist -- can't clean it 'build/scripts-3.10' does not exist -- can't clean it removing 'build' Failed to build selective_scan ERROR: Failed to build installable wheels for some pyproject.toml based projects (selective_scan)

/* USER CODE BEGIN Header */ /** ****************************************************************************** * @file : main.c * @brief : Main program body ****************************************************************************** * @attention * * Copyright (c) 2025 STMicroelectronics. * All rights reserved. * * This software is licensed under terms that can be found in the LICENSE file * in the root directory of this software component. * If no LICENSE file comes with this software, it is provided AS-IS. * ****************************************************************************** */ /* USER CODE END Header */ /* Includes ------------------------------------------------------------------*/ #include "main.h" #include "adc.h" #include "dma.h" #include "tim.h" #include "usart.h" #include "gpio.h" /* Private includes ----------------------------------------------------------*/ /* USER CODE BEGIN Includes */ #include <stdio.h> #include "arm_math.h" #include "arm_const_structs.h" // 必须包含这个头文件 /* USER CODE END Includes */ /* Private typedef -----------------------------------------------------------*/ /* USER CODE BEGIN PTD */ #define FFT_LENGTH 1024 __IO uint8_t AdcConvEnd = 0; uint16_t adcBuff[FFT_LENGTH];// float fft_inputbuf[FFT_LENGTH * 2]; // float fft_outputbuf[FFT_LENGTH]; // uint16_t a = 128; // #define LENGTH (FFT_LENGTH/2) // 确保LENGTH等于FFT_LENGTH的一半 float mag[LENGTH]; // 全局数组声明 uint32_t timeout = 0; /* USER CODE END PTD */ /* Private define ------------------------------------------------------------*/ /* USER CODE BEGIN PD */ /* USER CODE END PD */ /* Private macro -------------------------------------------------------------*/ /* USER CODE BEGIN PM */ /* USER CODE END PM */ /* Private variables ---------------------------------------------------------*/ /* USER CODE BEGIN PV */ /* USER CODE END PV */ /* Private function prototypes -----------------------------------------------*/ void SystemClock_Config(void); /* USER CODE BEGIN PFP */ void ProcessFFT(void); // 在函数原型区域提前声明 // 在文件顶部添加函数原型声明 void SendSpectrum(UART_HandleTypeDef *huart); //HAL_StatusTypeDef HAL_ADCEx_Calibration_Start(ADC_HandleTypeDef* hadc);//要先声明ADC校准函数,一直报错是因为没有声明,直接调用了 /* USER CODE END PFP */ /* Private user code ---------------------------------------------------------*/ /* USER CODE BEGIN 0 */ /* USER CODE END 0 */ /** * @brief The application entry point. * @retval int */ int main(void) { /* USER CODE BEGIN 1 */ /* USER CODE END 1 */ /* MCU Configuration--------------------------------------------------------*/ /* Reset of all peripherals, Initializes the Flash interface and the Systick. */ HAL_Init(); /* USER CODE BEGIN Init */ /* USER CODE END Init */ /* Configure the system clock */ SystemClock_Config(); /* USER CODE BEGIN SysInit */ /* USER CODE END SysInit */ /* Initialize all configured peripherals */ MX_GPIO_Init(); MX_DMA_Init(); MX_ADC1_Init(); MX_USART1_UART_Init(); MX_TIM2_Init(); /* USER CODE BEGIN 2 */ /* USER CODE BEGIN 2 */ printf ("123456\r\n"); //AdcConvEnd = 0; // 在主循环前初始化标志位 HAL_StatusTypeDef HAL_ADCEx_SamplingTimeCalibration_Start(ADC_HandleTypeDef* hadc);//ADC校准函数 printf ("1234\r\n"); HAL_TIM_Base_Start(&htim2);//开启定时器2 HAL_ADC_Start_DMA(&hadc1, (uint32_t *)adcBuff, FFT_LENGTH);//开启ADC printf ("12\r\n"); //AdcConvEnd = 0; while (!AdcConvEnd) //当前程序会堵塞到这里 ; while(1) { timeout++; if (timeout > 1000000) { // 超时退出(约1秒,根据主频调整) printf("ADC超时!\r\n"); break; } } //for (uint16_t i = 0; i <128; i++) //{ // printf("%.3f\n", adcBuff[i] * 3.3 / 4095); //数据打印,查看结果 //} while (1) { if (AdcConvEnd) { ProcessFFT(); printf("FFT Result:\r\n"); for (int i = 0; i < 200; i++)//输出各次谐波幅值 { printf("%d:\t%.2f\r\n", i, fft_outputbuf[i]);//2表示输出的小数位数 } AdcConvEnd = 0; HAL_ADC_Start_DMA(&hadc1, (uint32_t*)adcBuff,FFT_LENGTH); // 重启采样 } } /* USER CODE END 2 */ /* Infinite loop */ /* USER CODE BEGIN WHILE */ while (1) { /* USER CODE END WHILE */ /* USER CODE BEGIN 3 */ } /* USER CODE END 3 */ } /** * @brief System Clock Configuration * @retval None */ void SystemClock_Config(void) { RCC_OscInitTypeDef RCC_OscInitStruct = {0}; RCC_ClkInitTypeDef RCC_ClkInitStruct = {0}; /** Configure the main internal regulator output voltage */ __HAL_RCC_PWR_CLK_ENABLE(); __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1); /** Initializes the RCC Oscillators according to the specified parameters * in the RCC_OscInitTypeDef structure. */ RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE; RCC_OscInitStruct.HSEState = RCC_HSE_ON; RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON; RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE; RCC_OscInitStruct.PLL.PLLM = 4; RCC_OscInitStruct.PLL.PLLN = 84; RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2; RCC_OscInitStruct.PLL.PLLQ = 4; if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) { Error_Handler(); } /** Initializes the CPU, AHB and APB buses clocks */ RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2; RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK; RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1; RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2; RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV2; if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK) { Error_Handler(); } } /* USER CODE BEGIN 4 */ //FFT处理过程 void ProcessFFT(void) { //加窗减小频谱泄露情况 int32_t dc_sum = 0; //去除直流 float dc_accum = 0; for(int i=0; i<FFT_LENGTH; i++) { dc_accum += adcBuff[i] * 3.3f / 4095.0f; // 先转换为电压值再累加 } float dc_offset = dc_accum / FFT_LENGTH; // 得到精确直流分量(单位:伏特) for(int i=0; i<FFT_LENGTH; i++) { fft_inputbuf[2*i] = (adcBuff[i] * 3.3f / 4095.0f) - dc_offset; // 去除直流 fft_inputbuf[2*i+1] = 0; } // 1. ADC采样过程 for(int i=0; i<FFT_LENGTH; i++) { fft_inputbuf[2*i] = adcBuff[i] * 3.3f / 4095.0f; // ADC输出实部实际电压值 fft_inputbuf[2*i+1] = 0; } //2. 执行 FFT arm_cfft_f32(&arm_cfft_sR_f32_len1024, fft_inputbuf, 0, 1); // 3. 计算幅度 arm_cmplx_mag_f32(fft_inputbuf, fft_outputbuf, FFT_LENGTH); //DSP库提供的取模函数,直接可以算出幅值 //4.归一化处理 for(int i=0; i<FFT_LENGTH; i++) { fft_outputbuf[i] /= (FFT_LENGTH/2); } // 5. 复制结果到mag(移到这里) memcpy(mag, fft_outputbuf, sizeof(mag)); } //ADC的回调函数 void HAL_ADC_ConvCpltCallback(ADC_HandleTypeDef* hadc) { if (hadc->Instance == ADC1) { printf("666\n");//调试检查回调函数是否正常 AdcConvEnd = 1; } } /* USER CODE END 4 */ /** * @brief This function is executed in case of error occurrence. * @retval None */ void Error_Handler(void) { /* USER CODE BEGIN Error_Handler_Debug */ /* User can add his own implementation to report the HAL error return state */ __disable_irq(); while (1) { } /* USER CODE END Error_Handler_Debug */ } #ifdef USE_FULL_ASSERT /** * @brief Reports the name of the source file and the source line number * where the assert_param error has occurred. * @param file: pointer to the source file name * @param line: assert_param error line source number * @retval None */ void assert_failed(uint8_t *file, uint32_t line) { /* USER CODE BEGIN 6 */ /* User can add his own implementation to report the file name and line number, ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */ /* USER CODE END 6 */ } #endif /* USE_FULL_ASSERT */ 我加上直流偏置之后我的串口数据就变成了 0: 2.05 [11:18:37.607] 1: 0.00 [11:18:37.610] 2: 0.00 [11:18:37.610] 3: 0.00 [11:18:37.610] 4: 0.00 [11:18:37.613] 5: 0.00 [11:18:37.613] 6: 0.00 [11:18:37.613] 7: 0.00 [11:18:37.613] 8: 0.00 [11:18:37.616] 9: 0.00 [11:18:37.616] 10: 0.00 [11:18:37.616] 11: 0.00 [11:18:37.619] 12: 0.00 [11:18:37.619] 13: 0.00 [11:18:37.619] 14: 0.00 [11:18:37.622] 15: 0.00 [11:18:37.622] 16: 0.00 [11:18:37.622] 17: 0.00 [11:18:37.627] 18: 0.00 [11:18:37.627] 19: 0.00 [11:18:37.627] 20: 0.00 [11:18:37.627] 21: 0.00 [11:18:37.630] 22: 0.00 [11:18:37.630] 23: 0.00 [11:18:37.630] 24: 0.00 [11:18:37.633] 25: 0.00 [11:18:37.633] 26: 0.00 [11:18:37.633] 27: 0.00 [11:18:37.636] 28: 0.00 [11:18:37.636] 29: 0.00 [11:18:37.636] 30: 0.00 [11:18:37.639] 31: 0.00 [11:18:37.639] 32: 0.00 [11:18:37.639] 33: 0.00 [11:18:37.643] 34: 0.00 [11:18:37.643] 35: 0.00 [11:18:37.643] 36: 0.00 [11:18:37.643] 37: 0.00 [11:18:37.646] 38: 0.00 [11:18:37.646] 39: 0.00 [11:18:37.646] 40: 0.00 [11:18:37.649] 41: 0.00 [11:18:37.649] 42: 0.00 [11:18:37.649] 43: 0.00 [11:18:37.652] 44: 0.00 [11:18:37.652] 45: 0.00 [11:18:37.652] 46: 0.00 [11:18:37.656] 47: 0.00 [11:18:37.656] 48: 0.00 [11:18:37.656] 49: 0.00 [11:18:37.659] 50: 0.00 [11:18:37.659] 51: 0.00 [11:18:37.659] 52: 0.00 [11:18:37.659] 53: 0.00 [11:18:37.662] 54: 0.00 [11:18:37.662] 55: 0.00 [11:18:37.662] 56: 0.00 [11:18:37.665] 57: 0.00 [11:18:37.665] 58: 0.00 [11:18:37.665] 59: 0.00 [11:18:37.668] 60: 0.00 [11:18:37.668] 61: 0.00 [11:18:37.668] 62: 0.00 [11:18:37.672] 63: 0.00 [11:18:37.672] 64: 0.00 [11:18:37.672] 65: 0.00 [11:18:37.675] 66: 0.00 [11:18:37.675] 67: 0.00 [11:18:37.675] 68: 0.00 [11:18:37.675] 69: 0.00 [11:18:37.678] 70: 0.00 [11:18:37.678] 71: 0.00 [11:18:37.678] 72: 0.00 [11:18:37.682] 73: 0.00 [11:18:37.682] 74: 0.00 [11:18:37.682] 75: 0.00 [11:18:37.685] 76: 0.00 [11:18:37.685] 77: 0.00 [11:18:37.685] 78: 0.00 [11:18:37.689] 79: 0.00 [11:18:37.689] 80: 0.00 [11:18:37.689] 81: 0.00 [11:18:37.692] 82: 0.00 [11:18:37.692] 83: 0.00 [11:18:37.692] 84: 0.00 [11:18:37.692] 85: 0.00 [11:18:37.695] 86: 0.00 [11:18:37.695] 87: 0.00 [11:18:37.695] 88: 0.00 [11:18:37.698] 89: 0.00 [11:18:37.698] 90: 0.00 [11:18:37.698] 91: 0.00 [11:18:37.702] 92: 0.00 [11:18:37.702] 93: 0.00 [11:18:37.702] 94: 0.00 [11:18:37.705] 95: 0.00 [11:18:37.705] 96: 0.00 [11:18:37.705] 97: 0.00 [11:18:37.708] 98: 0.00 [11:18:37.708] 99: 0.00 [11:18:37.708] 100: 0.00 [11:18:37.711] 101: 0.00 [11:18:37.711] 102: 0.00 [11:18:37.711] 103: 0.00 [11:18:37.715] 104: 0.00 [11:18:37.715] 105: 0.00 [11:18:37.715] 106: 0.00 [11:18:37.718] 107: 0.00 [11:18:37.718] 108: 0.00 [11:18:37.718] 109: 0.00 [11:18:37.721] 110: 0.00 [11:18:37.721] 111: 0.00 [11:18:37.721] 112: 0.00 [11:18:37.724] 113: 0.00 [11:18:37.724] 114: 0.00 [11:18:37.724] 115: 0.00 [11:18:37.728] 116: 0.00 [11:18:37.728] 117: 0.00 [11:18:37.728] 118: 0.00 [11:18:37.731] 119: 0.00 [11:18:37.731] 120: 0.00 [11:18:37.731] 121: 0.00 [11:18:37.735] 122: 0.00 [11:18:37.735] 123: 0.00 [11:18:37.735] 124: 0.00 [11:18:37.738] 125: 0.01 [11:18:37.738] 126: 0.00 [11:18:37.738] 127: 0.00 [11:18:37.741] 128: 0.00 [11:18:37.741] 129: 0.00 [11:18:37.741] 130: 0.00 [11:18:37.744] 131: 0.00 [11:18:37.744] 132: 0.00 [11:18:37.748] 133: 0.00 [11:18:37.748] 134: 0.00 [11:18:37.748] 135: 0.00 [11:18:37.751] 136: 0.00 [11:18:37.751] 137: 0.00 [11:18:37.751] 138: 0.00 [11:18:37.754] 139: 0.00 [11:18:37.754] 140: 0.00 [11:18:37.754] 141: 0.00 [11:18:37.758] 142: 0.00 [11:18:37.758] 143: 0.00 [11:18:37.758] 144: 0.00 [11:18:37.761] 145: 0.00 [11:18:37.761] 146: 0.00 [11:18:37.761] 147: 0.00 [11:18:37.764] 148: 0.00 [11:18:37.764] 149: 0.00 [11:18:37.764] 150: 0.00 [11:18:37.768] 151: 0.00 [11:18:37.768] 152: 0.00 [11:18:37.768] 153: 0.00 [11:18:37.771] 154: 0.00 [11:18:37.771] 155: 0.00 [11:18:37.771] 156: 0.00这样,分析原因

分析整个编译过程,我添加新架构需要添加哪些东西 [ 0%] Building C object CMakeFiles/unicorn-common.dir/list.c.o [ 0%] Building C object CMakeFiles/unicorn-common.dir/glib_compat/glib_compat.c.o [ 1%] Building C object CMakeFiles/unicorn-common.dir/glib_compat/gtestutils.c.o [ 1%] Building C object CMakeFiles/unicorn-common.dir/glib_compat/garray.c.o [ 1%] Building C object CMakeFiles/unicorn-common.dir/glib_compat/gtree.c.o [ 1%] Building C object CMakeFiles/unicorn-common.dir/glib_compat/grand.c.o [ 1%] Building C object CMakeFiles/unicorn-common.dir/glib_compat/glist.c.o [ 1%] Building C object CMakeFiles/unicorn-common.dir/glib_compat/gmem.c.o [ 2%] Building C object CMakeFiles/unicorn-common.dir/glib_compat/gpattern.c.o [ 2%] Building C object CMakeFiles/unicorn-common.dir/glib_compat/gslice.c.o [ 2%] Building C object CMakeFiles/unicorn-common.dir/qemu/util/bitmap.c.o [ 2%] Building C object CMakeFiles/unicorn-common.dir/qemu/util/bitops.c.o [ 2%] Building C object CMakeFiles/unicorn-common.dir/qemu/util/crc32c.c.o [ 2%] Building C object CMakeFiles/unicorn-common.dir/qemu/util/cutils.c.o [ 2%] Building C object CMakeFiles/unicorn-common.dir/qemu/util/getauxval.c.o [ 3%] Building C object CMakeFiles/unicorn-common.dir/qemu/util/guest-random.c.o [ 3%] Building C object CMakeFiles/unicorn-common.dir/qemu/util/host-utils.c.o [ 3%] Building C object CMakeFiles/unicorn-common.dir/qemu/util/osdep.c.o [ 3%] Building C object CMakeFiles/unicorn-common.dir/qemu/util/qdist.c.o [ 3%] Building C object CMakeFiles/unicorn-common.dir/qemu/util/qemu-timer.c.o [ 3%] Building C object CMakeFiles/unicorn-common.dir/qemu/util/qemu-timer-common.c.o [ 3%] Building C object CMakeFiles/unicorn-common.dir/qemu/util/range.c.o [ 4%] Building C object CMakeFiles/unicorn-common.dir/qemu/util/qht.c.o [ 4%] Building C object CMakeFiles/unicorn-common.dir/qemu/util/pagesize.c.o [ 4%] Building C object CMakeFiles/unicorn-common.dir/qemu/util/cacheinfo.c.o [ 4%] Building C object CMakeFiles/unicorn-common.dir/qemu/crypto/aes.c.o [ 4%] Building C object CMakeFiles/unicorn-common.dir/qemu/util/oslib-posix.c.o [ 4%] Building C object CMakeFiles/unicorn-common.dir/qemu/util/qemu-thread-posix.c.o [ 5%] Linking C static library libunicorn-common.a [ 5%] Built target unicorn-common [ 5%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/exec.c.o [ 6%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/exec-vary.c.o [ 6%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/softmmu/cpus.c.o [ 6%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/softmmu/ioport.c.o [ 6%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/softmmu/memory.c.o [ 6%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/softmmu/memory_mapping.c.o [ 6%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/fpu/softfloat.c.o [ 7%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/tcg/optimize.c.o [ 7%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/tcg/tcg.c.o [ 7%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/tcg/tcg-op.c.o [ 7%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/tcg/tcg-op-gvec.c.o [ 7%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/tcg/tcg-op-vec.c.o [ 7%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/accel/tcg/cpu-exec.c.o [ 7%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/accel/tcg/cpu-exec-common.c.o [ 8%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/accel/tcg/cputlb.c.o [ 8%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/accel/tcg/tcg-all.c.o [ 8%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/accel/tcg/tcg-runtime.c.o [ 8%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/accel/tcg/tcg-runtime-gvec.c.o [ 8%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/accel/tcg/translate-all.c.o [ 8%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/accel/tcg/translator.c.o [ 8%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/softmmu/unicorn_vtlb.c.o [ 9%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/hw/i386/x86.c.o [ 9%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/target/i386/arch_memory_mapping.c.o [ 9%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/target/i386/bpt_helper.c.o [ 9%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/target/i386/cc_helper.c.o [ 9%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/target/i386/cpu.c.o [ 9%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/target/i386/excp_helper.c.o [ 10%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/target/i386/fpu_helper.c.o [ 10%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/target/i386/helper.c.o [ 10%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/target/i386/int_helper.c.o [ 10%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/target/i386/machine.c.o [ 10%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/target/i386/mem_helper.c.o [ 10%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/target/i386/misc_helper.c.o [ 10%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/target/i386/mpx_helper.c.o [ 11%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/target/i386/seg_helper.c.o [ 11%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/target/i386/smm_helper.c.o [ 11%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/target/i386/svm_helper.c.o [ 11%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/target/i386/translate.c.o [ 11%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/target/i386/xsave_helper.c.o [ 11%] Building C object CMakeFiles/x86_64-softmmu.dir/qemu/target/i386/unicorn.c.o [ 12%] Linking C static library libx86_64-softmmu.a [ 12%] Built target x86_64-softmmu [ 12%] Building C object CMakeFiles/arm-softmmu.dir/qemu/exec.c.o [ 12%] Building C object CMakeFiles/arm-softmmu.dir/qemu/exec-vary.c.o [ 12%] Building C object CMakeFiles/arm-softmmu.dir/qemu/softmmu/cpus.c.o [ 12%] Building C object CMakeFiles/arm-softmmu.dir/qemu/softmmu/ioport.c.o [ 13%] Building C object CMakeFiles/arm-softmmu.dir/qemu/softmmu/memory.c.o [ 13%] Building C object CMakeFiles/arm-softmmu.dir/qemu/softmmu/memory_mapping.c.o [ 13%] Building C object CMakeFiles/arm-softmmu.dir/qemu/fpu/softfloat.c.o [ 13%] Building C object CMakeFiles/arm-softmmu.dir/qemu/tcg/optimize.c.o [ 13%] Building C object CMakeFiles/arm-softmmu.dir/qemu/tcg/tcg.c.o [ 13%] Building C object CMakeFiles/arm-softmmu.dir/qemu/tcg/tcg-op.c.o [ 14%] Building C object CMakeFiles/arm-softmmu.dir/qemu/tcg/tcg-op-gvec.c.o [ 14%] Building C object CMakeFiles/arm-softmmu.dir/qemu/tcg/tcg-op-vec.c.o [ 14%] Building C object CMakeFiles/arm-softmmu.dir/qemu/accel/tcg/cpu-exec.c.o [ 14%] Building C object CMakeFiles/arm-softmmu.dir/qemu/accel/tcg/cpu-exec-common.c.o [ 14%] Building C object CMakeFiles/arm-softmmu.dir/qemu/accel/tcg/cputlb.c.o [ 14%] Building C object CMakeFiles/arm-softmmu.dir/qemu/accel/tcg/tcg-all.c.o [ 14%] Building C object CMakeFiles/arm-softmmu.dir/qemu/accel/tcg/tcg-runtime.c.o [ 15%] Building C object CMakeFiles/arm-softmmu.dir/qemu/accel/tcg/tcg-runtime-gvec.c.o [ 15%] Building C object CMakeFiles/arm-softmmu.dir/qemu/accel/tcg/translate-all.c.o [ 15%] Building C object CMakeFiles/arm-softmmu.dir/qemu/accel/tcg/translator.c.o [ 15%] Building C object CMakeFiles/arm-softmmu.dir/qemu/softmmu/unicorn_vtlb.c.o [ 15%] Building C object CMakeFiles/arm-softmmu.dir/qemu/target/arm/cpu.c.o [ 15%] Building C object CMakeFiles/arm-softmmu.dir/qemu/target/arm/crypto_helper.c.o [ 15%] Building C object CMakeFiles/arm-softmmu.dir/qemu/target/arm/debug_helper.c.o [ 16%] Building C object CMakeFiles/arm-softmmu.dir/qemu/target/arm/helper.c.o [ 16%] Building C object CMakeFiles/arm-softmmu.dir/qemu/target/arm/iwmmxt_helper.c.o [ 16%] Building C object CMakeFiles/arm-softmmu.dir/qemu/target/arm/m_helper.c.o [ 16%] Building C object CMakeFiles/arm-softmmu.dir/qemu/target/arm/neon_helper.c.o [ 16%] Building C object CMakeFiles/arm-softmmu.dir/qemu/target/arm/op_helper.c.o [ 16%] Building C object CMakeFiles/arm-softmmu.dir/qemu/target/arm/psci.c.o [ 17%] Building C object CMakeFiles/arm-softmmu.dir/qemu/target/arm/tlb_helper.c.o [ 17%] Building C object CMakeFiles/arm-softmmu.dir/qemu/target/arm/translate.c.o [ 17%] Building C object CMakeFiles/arm-softmmu.dir/qemu/target/arm/vec_helper.c.o [ 17%] Building C object CMakeFiles/arm-softmmu.dir/qemu/target/arm/vfp_helper.c.o [ 17%] Building C object CMakeFiles/arm-softmmu.dir/qemu/target/arm/unicorn_arm.c.o [ 17%] Linking C static library libarm-softmmu.a [ 17%] Built target arm-softmmu [ 17%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/exec.c.o [ 17%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/exec-vary.c.o [ 17%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/softmmu/cpus.c.o [ 17%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/softmmu/ioport.c.o [ 17%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/softmmu/memory.c.o [ 17%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/softmmu/memory_mapping.c.o [ 18%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/fpu/softfloat.c.o [ 18%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/tcg/optimize.c.o [ 18%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/tcg/tcg.c.o [ 18%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/tcg/tcg-op.c.o [ 18%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/tcg/tcg-op-gvec.c.o [ 18%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/tcg/tcg-op-vec.c.o [ 18%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/accel/tcg/cpu-exec.c.o [ 19%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/accel/tcg/cpu-exec-common.c.o [ 19%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/accel/tcg/cputlb.c.o [ 19%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/accel/tcg/tcg-all.c.o [ 19%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/accel/tcg/tcg-runtime.c.o [ 19%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/accel/tcg/tcg-runtime-gvec.c.o [ 19%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/accel/tcg/translate-all.c.o [ 20%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/accel/tcg/translator.c.o [ 20%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/softmmu/unicorn_vtlb.c.o [ 20%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/target/arm/cpu64.c.o [ 20%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/target/arm/cpu.c.o [ 20%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/target/arm/crypto_helper.c.o [ 20%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/target/arm/debug_helper.c.o [ 20%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/target/arm/helper-a64.c.o [ 21%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/target/arm/helper.c.o [ 21%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/target/arm/iwmmxt_helper.c.o [ 21%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/target/arm/m_helper.c.o [ 21%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/target/arm/neon_helper.c.o [ 21%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/target/arm/op_helper.c.o [ 21%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/target/arm/pauth_helper.c.o [ 21%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/target/arm/psci.c.o [ 22%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/target/arm/sve_helper.c.o [ 22%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/target/arm/tlb_helper.c.o [ 22%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/target/arm/translate-a64.c.o [ 22%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/target/arm/translate.c.o [ 22%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/target/arm/translate-sve.c.o [ 22%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/target/arm/vec_helper.c.o [ 23%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/target/arm/vfp_helper.c.o [ 23%] Building C object CMakeFiles/aarch64-softmmu.dir/qemu/target/arm/unicorn_aarch64.c.o [ 23%] Linking C static library libaarch64-softmmu.a [ 23%] Built target aarch64-softmmu [ 23%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/exec.c.o [ 24%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/exec-vary.c.o [ 24%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/softmmu/cpus.c.o [ 24%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/softmmu/ioport.c.o [ 24%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/softmmu/memory.c.o [ 24%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/softmmu/memory_mapping.c.o [ 24%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/fpu/softfloat.c.o [ 24%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/tcg/optimize.c.o [ 25%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/tcg/tcg.c.o [ 25%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/tcg/tcg-op.c.o [ 25%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/tcg/tcg-op-gvec.c.o [ 25%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/tcg/tcg-op-vec.c.o [ 25%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/accel/tcg/cpu-exec.c.o [ 25%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/accel/tcg/cpu-exec-common.c.o [ 26%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/accel/tcg/cputlb.c.o [ 26%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/accel/tcg/tcg-all.c.o [ 26%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/accel/tcg/tcg-runtime.c.o [ 26%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/accel/tcg/tcg-runtime-gvec.c.o [ 26%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/accel/tcg/translate-all.c.o [ 26%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/accel/tcg/translator.c.o [ 26%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/softmmu/unicorn_vtlb.c.o [ 27%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/target/m68k/cpu.c.o [ 27%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/target/m68k/fpu_helper.c.o [ 27%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/target/m68k/helper.c.o [ 27%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/target/m68k/op_helper.c.o [ 27%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/target/m68k/softfloat.c.o [ 27%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/target/m68k/translate.c.o [ 28%] Building C object CMakeFiles/m68k-softmmu.dir/qemu/target/m68k/unicorn.c.o [ 28%] Linking C static library libm68k-softmmu.a [ 28%] Built target m68k-softmmu [ 28%] Building C object CMakeFiles/mips-softmmu.dir/qemu/exec.c.o [ 28%] Building C object CMakeFiles/mips-softmmu.dir/qemu/exec-vary.c.o [ 28%] Building C object CMakeFiles/mips-softmmu.dir/qemu/softmmu/cpus.c.o [ 29%] Building C object CMakeFiles/mips-softmmu.dir/qemu/softmmu/ioport.c.o [ 29%] Building C object CMakeFiles/mips-softmmu.dir/qemu/softmmu/memory.c.o [ 29%] Building C object CMakeFiles/mips-softmmu.dir/qemu/softmmu/memory_mapping.c.o [ 29%] Building C object CMakeFiles/mips-softmmu.dir/qemu/fpu/softfloat.c.o [ 29%] Building C object CMakeFiles/mips-softmmu.dir/qemu/tcg/optimize.c.o [ 29%] Building C object CMakeFiles/mips-softmmu.dir/qemu/tcg/tcg.c.o [ 29%] Building C object CMakeFiles/mips-softmmu.dir/qemu/tcg/tcg-op.c.o [ 30%] Building C object CMakeFiles/mips-softmmu.dir/qemu/tcg/tcg-op-gvec.c.o [ 30%] Building C object CMakeFiles/mips-softmmu.dir/qemu/tcg/tcg-op-vec.c.o [ 30%] Building C object CMakeFiles/mips-softmmu.dir/qemu/accel/tcg/cpu-exec.c.o [ 30%] Building C object CMakeFiles/mips-softmmu.dir/qemu/accel/tcg/cpu-exec-common.c.o [ 30%] Building C object CMakeFiles/mips-softmmu.dir/qemu/accel/tcg/cputlb.c.o [ 30%] Building C object CMakeFiles/mips-softmmu.dir/qemu/accel/tcg/tcg-all.c.o [ 31%] Building C object CMakeFiles/mips-softmmu.dir/qemu/accel/tcg/tcg-runtime.c.o [ 31%] Building C object CMakeFiles/mips-softmmu.dir/qemu/accel/tcg/tcg-runtime-gvec.c.o [ 31%] Building C object CMakeFiles/mips-softmmu.dir/qemu/accel/tcg/translate-all.c.o [ 31%] Building C object CMakeFiles/mips-softmmu.dir/qemu/accel/tcg/translator.c.o [ 31%] Building C object CMakeFiles/mips-softmmu.dir/qemu/softmmu/unicorn_vtlb.c.o [ 31%] Building C object CMakeFiles/mips-softmmu.dir/qemu/target/mips/cp0_helper.c.o [ 31%] Building C object CMakeFiles/mips-softmmu.dir/qemu/target/mips/cp0_timer.c.o [ 32%] Building C object CMakeFiles/mips-softmmu.dir/qemu/target/mips/cpu.c.o [ 32%] Building C object CMakeFiles/mips-softmmu.dir/qemu/target/mips/dsp_helper.c.o [ 32%] Building C object CMakeFiles/mips-softmmu.dir/qemu/target/mips/fpu_helper.c.o [ 32%] Building C object CMakeFiles/mips-softmmu.dir/qemu/target/mips/helper.c.o [ 32%] Building C object CMakeFiles/mips-softmmu.dir/qemu/target/mips/lmi_helper.c.o [ 32%] Building C object CMakeFiles/mips-softmmu.dir/qemu/target/mips/msa_helper.c.o [ 32%] Building C object CMakeFiles/mips-softmmu.dir/qemu/target/mips/op_helper.c.o [ 33%] Building C object CMakeFiles/mips-softmmu.dir/qemu/target/mips/translate.c.o [ 33%] Building C object CMakeFiles/mips-softmmu.dir/qemu/target/mips/unicorn.c.o [ 33%] Linking C static library libmips-softmmu.a [ 33%] Built target mips-softmmu [ 33%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/exec.c.o [ 33%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/exec-vary.c.o [ 33%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/softmmu/cpus.c.o [ 34%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/softmmu/ioport.c.o [ 34%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/softmmu/memory.c.o [ 34%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/softmmu/memory_mapping.c.o [ 34%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/fpu/softfloat.c.o [ 34%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/tcg/optimize.c.o [ 34%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/tcg/tcg.c.o [ 34%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/tcg/tcg-op.c.o [ 35%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/tcg/tcg-op-gvec.c.o [ 35%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/tcg/tcg-op-vec.c.o [ 35%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/accel/tcg/cpu-exec.c.o [ 35%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/accel/tcg/cpu-exec-common.c.o [ 35%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/accel/tcg/cputlb.c.o [ 35%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/accel/tcg/tcg-all.c.o [ 35%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/accel/tcg/tcg-runtime.c.o [ 36%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/accel/tcg/tcg-runtime-gvec.c.o [ 36%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/accel/tcg/translate-all.c.o [ 36%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/accel/tcg/translator.c.o [ 36%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/softmmu/unicorn_vtlb.c.o [ 36%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/target/mips/cp0_helper.c.o [ 36%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/target/mips/cp0_timer.c.o [ 37%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/target/mips/cpu.c.o [ 37%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/target/mips/dsp_helper.c.o [ 37%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/target/mips/fpu_helper.c.o [ 37%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/target/mips/helper.c.o [ 37%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/target/mips/lmi_helper.c.o [ 37%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/target/mips/msa_helper.c.o [ 37%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/target/mips/op_helper.c.o [ 38%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/target/mips/translate.c.o [ 38%] Building C object CMakeFiles/mipsel-softmmu.dir/qemu/target/mips/unicorn.c.o [ 38%] Linking C static library libmipsel-softmmu.a [ 38%] Built target mipsel-softmmu [ 38%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/exec.c.o [ 38%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/exec-vary.c.o [ 38%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/softmmu/cpus.c.o [ 39%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/softmmu/ioport.c.o [ 39%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/softmmu/memory.c.o [ 39%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/softmmu/memory_mapping.c.o [ 39%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/fpu/softfloat.c.o [ 39%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/tcg/optimize.c.o [ 39%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/tcg/tcg.c.o [ 39%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/tcg/tcg-op.c.o [ 40%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/tcg/tcg-op-gvec.c.o [ 40%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/tcg/tcg-op-vec.c.o [ 40%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/accel/tcg/cpu-exec.c.o [ 40%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/accel/tcg/cpu-exec-common.c.o [ 40%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/accel/tcg/cputlb.c.o [ 40%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/accel/tcg/tcg-all.c.o [ 41%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/accel/tcg/tcg-runtime.c.o [ 41%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/accel/tcg/tcg-runtime-gvec.c.o [ 41%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/accel/tcg/translate-all.c.o [ 41%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/accel/tcg/translator.c.o [ 41%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/softmmu/unicorn_vtlb.c.o [ 41%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/target/mips/cp0_helper.c.o [ 41%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/target/mips/cp0_timer.c.o [ 42%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/target/mips/cpu.c.o [ 42%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/target/mips/dsp_helper.c.o [ 42%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/target/mips/fpu_helper.c.o [ 42%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/target/mips/helper.c.o [ 42%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/target/mips/lmi_helper.c.o [ 42%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/target/mips/msa_helper.c.o [ 42%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/target/mips/op_helper.c.o [ 43%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/target/mips/translate.c.o [ 43%] Building C object CMakeFiles/mips64-softmmu.dir/qemu/target/mips/unicorn.c.o [ 43%] Linking C static library libmips64-softmmu.a [ 43%] Built target mips64-softmmu [ 43%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/exec.c.o [ 43%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/exec-vary.c.o [ 43%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/softmmu/cpus.c.o [ 44%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/softmmu/ioport.c.o [ 44%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/softmmu/memory.c.o [ 44%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/softmmu/memory_mapping.c.o [ 44%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/fpu/softfloat.c.o [ 44%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/tcg/optimize.c.o [ 44%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/tcg/tcg.c.o [ 44%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/tcg/tcg-op.c.o [ 45%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/tcg/tcg-op-gvec.c.o [ 45%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/tcg/tcg-op-vec.c.o [ 45%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/accel/tcg/cpu-exec.c.o [ 45%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/accel/tcg/cpu-exec-common.c.o [ 45%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/accel/tcg/cputlb.c.o [ 45%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/accel/tcg/tcg-all.c.o [ 46%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/accel/tcg/tcg-runtime.c.o [ 46%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/accel/tcg/tcg-runtime-gvec.c.o [ 46%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/accel/tcg/translate-all.c.o [ 46%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/accel/tcg/translator.c.o [ 46%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/softmmu/unicorn_vtlb.c.o [ 46%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/target/mips/cp0_helper.c.o [ 46%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/target/mips/cp0_timer.c.o [ 47%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/target/mips/cpu.c.o [ 47%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/target/mips/dsp_helper.c.o [ 47%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/target/mips/fpu_helper.c.o [ 47%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/target/mips/helper.c.o [ 47%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/target/mips/lmi_helper.c.o [ 47%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/target/mips/msa_helper.c.o [ 47%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/target/mips/op_helper.c.o [ 48%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/target/mips/translate.c.o [ 48%] Building C object CMakeFiles/mips64el-softmmu.dir/qemu/target/mips/unicorn.c.o [ 48%] Linking C static library libmips64el-softmmu.a [ 48%] Built target mips64el-softmmu [ 48%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/exec.c.o [ 48%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/exec-vary.c.o [ 48%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/softmmu/cpus.c.o [ 48%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/softmmu/ioport.c.o [ 49%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/softmmu/memory.c.o [ 49%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/softmmu/memory_mapping.c.o [ 49%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/fpu/softfloat.c.o [ 49%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/tcg/optimize.c.o [ 49%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/tcg/tcg.c.o [ 49%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/tcg/tcg-op.c.o [ 50%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/tcg/tcg-op-gvec.c.o [ 50%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/tcg/tcg-op-vec.c.o [ 50%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/accel/tcg/cpu-exec.c.o [ 50%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/accel/tcg/cpu-exec-common.c.o [ 50%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/accel/tcg/cputlb.c.o [ 50%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/accel/tcg/tcg-all.c.o [ 50%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/accel/tcg/tcg-runtime.c.o [ 51%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/accel/tcg/tcg-runtime-gvec.c.o [ 51%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/accel/tcg/translate-all.c.o [ 51%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/accel/tcg/translator.c.o [ 51%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/softmmu/unicorn_vtlb.c.o [ 51%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/target/sparc/cc_helper.c.o [ 51%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/target/sparc/cpu.c.o [ 52%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/target/sparc/fop_helper.c.o [ 52%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/target/sparc/helper.c.o [ 52%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/target/sparc/int32_helper.c.o [ 52%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/target/sparc/ldst_helper.c.o [ 52%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/target/sparc/mmu_helper.c.o [ 52%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/target/sparc/translate.c.o [ 52%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/target/sparc/win_helper.c.o [ 53%] Building C object CMakeFiles/sparc-softmmu.dir/qemu/target/sparc/unicorn.c.o [ 53%] Linking C static library libsparc-softmmu.a [ 53%] Built target sparc-softmmu [ 53%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/exec.c.o [ 53%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/exec-vary.c.o [ 53%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/softmmu/cpus.c.o [ 53%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/softmmu/ioport.c.o [ 53%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/softmmu/memory.c.o [ 54%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/softmmu/memory_mapping.c.o [ 54%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/fpu/softfloat.c.o [ 54%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/tcg/optimize.c.o [ 54%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/tcg/tcg.c.o [ 54%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/tcg/tcg-op.c.o [ 54%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/tcg/tcg-op-gvec.c.o [ 55%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/tcg/tcg-op-vec.c.o [ 55%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/accel/tcg/cpu-exec.c.o [ 55%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/accel/tcg/cpu-exec-common.c.o [ 55%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/accel/tcg/cputlb.c.o [ 55%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/accel/tcg/tcg-all.c.o [ 55%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/accel/tcg/tcg-runtime.c.o [ 55%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/accel/tcg/tcg-runtime-gvec.c.o [ 56%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/accel/tcg/translate-all.c.o [ 56%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/accel/tcg/translator.c.o [ 56%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/softmmu/unicorn_vtlb.c.o [ 56%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/target/sparc/cc_helper.c.o [ 56%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/target/sparc/cpu.c.o [ 56%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/target/sparc/fop_helper.c.o [ 57%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/target/sparc/helper.c.o [ 57%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/target/sparc/int64_helper.c.o [ 57%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/target/sparc/ldst_helper.c.o [ 57%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/target/sparc/mmu_helper.c.o [ 57%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/target/sparc/translate.c.o [ 57%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/target/sparc/vis_helper.c.o [ 57%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/target/sparc/win_helper.c.o [ 58%] Building C object CMakeFiles/sparc64-softmmu.dir/qemu/target/sparc/unicorn64.c.o [ 58%] Linking C static library libsparc64-softmmu.a [ 58%] Built target sparc64-softmmu [ 58%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/exec.c.o [ 58%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/exec-vary.c.o [ 58%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/softmmu/cpus.c.o [ 59%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/softmmu/ioport.c.o [ 59%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/softmmu/memory.c.o [ 59%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/softmmu/memory_mapping.c.o [ 59%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/fpu/softfloat.c.o [ 59%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/tcg/optimize.c.o [ 59%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/tcg/tcg.c.o [ 59%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/tcg/tcg-op.c.o [ 60%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/tcg/tcg-op-gvec.c.o [ 60%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/tcg/tcg-op-vec.c.o [ 60%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/accel/tcg/cpu-exec.c.o [ 60%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/accel/tcg/cpu-exec-common.c.o [ 60%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/accel/tcg/cputlb.c.o [ 60%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/accel/tcg/tcg-all.c.o [ 60%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/accel/tcg/tcg-runtime.c.o [ 61%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/accel/tcg/tcg-runtime-gvec.c.o [ 61%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/accel/tcg/translate-all.c.o [ 61%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/accel/tcg/translator.c.o [ 61%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/softmmu/unicorn_vtlb.c.o [ 61%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/hw/ppc/ppc.c.o [ 61%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/hw/ppc/ppc_booke.c.o [ 62%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/libdecnumber/decContext.c.o [ 62%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/libdecnumber/decNumber.c.o [ 62%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/libdecnumber/dpd/decimal128.c.o [ 62%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/libdecnumber/dpd/decimal32.c.o [ 62%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/libdecnumber/dpd/decimal64.c.o [ 62%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/target/ppc/cpu.c.o [ 62%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/target/ppc/cpu-models.c.o [ 63%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/target/ppc/dfp_helper.c.o [ 63%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/target/ppc/excp_helper.c.o [ 63%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/target/ppc/fpu_helper.c.o [ 63%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/target/ppc/int_helper.c.o [ 63%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/target/ppc/machine.c.o [ 63%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/target/ppc/mem_helper.c.o [ 63%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/target/ppc/misc_helper.c.o [ 64%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/target/ppc/mmu-hash32.c.o [ 64%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/target/ppc/mmu_helper.c.o [ 64%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/target/ppc/timebase_helper.c.o [ 64%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/target/ppc/translate.c.o [ 64%] Building C object CMakeFiles/ppc-softmmu.dir/qemu/target/ppc/unicorn.c.o [ 64%] Linking C static library libppc-softmmu.a [ 64%] Built target ppc-softmmu [ 65%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/exec.c.o [ 65%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/exec-vary.c.o [ 65%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/softmmu/cpus.c.o [ 65%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/softmmu/ioport.c.o [ 65%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/softmmu/memory.c.o [ 65%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/softmmu/memory_mapping.c.o [ 65%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/fpu/softfloat.c.o [ 66%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/tcg/optimize.c.o [ 66%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/tcg/tcg.c.o [ 66%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/tcg/tcg-op.c.o [ 66%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/tcg/tcg-op-gvec.c.o [ 66%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/tcg/tcg-op-vec.c.o [ 66%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/accel/tcg/cpu-exec.c.o [ 67%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/accel/tcg/cpu-exec-common.c.o [ 67%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/accel/tcg/cputlb.c.o [ 67%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/accel/tcg/tcg-all.c.o [ 67%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/accel/tcg/tcg-runtime.c.o [ 67%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/accel/tcg/tcg-runtime-gvec.c.o [ 67%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/accel/tcg/translate-all.c.o [ 67%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/accel/tcg/translator.c.o [ 68%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/softmmu/unicorn_vtlb.c.o [ 68%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/hw/ppc/ppc.c.o [ 68%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/hw/ppc/ppc_booke.c.o [ 68%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/libdecnumber/decContext.c.o [ 68%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/libdecnumber/decNumber.c.o [ 68%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/libdecnumber/dpd/decimal128.c.o [ 68%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/libdecnumber/dpd/decimal32.c.o [ 69%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/libdecnumber/dpd/decimal64.c.o [ 69%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/target/ppc/compat.c.o [ 69%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/target/ppc/cpu.c.o [ 69%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/target/ppc/cpu-models.c.o [ 69%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/target/ppc/dfp_helper.c.o [ 69%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/target/ppc/excp_helper.c.o [ 70%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/target/ppc/fpu_helper.c.o [ 70%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/target/ppc/int_helper.c.o [ 70%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/target/ppc/machine.c.o [ 70%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/target/ppc/mem_helper.c.o [ 70%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/target/ppc/misc_helper.c.o [ 70%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/target/ppc/mmu-book3s-v3.c.o [ 70%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/target/ppc/mmu-hash32.c.o [ 71%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/target/ppc/mmu-hash64.c.o [ 71%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/target/ppc/mmu_helper.c.o [ 71%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/target/ppc/mmu-radix64.c.o [ 71%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/target/ppc/timebase_helper.c.o [ 71%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/target/ppc/translate.c.o [ 71%] Building C object CMakeFiles/ppc64-softmmu.dir/qemu/target/ppc/unicorn.c.o [ 72%] Linking C static library libppc64-softmmu.a [ 72%] Built target ppc64-softmmu [ 72%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/exec.c.o [ 72%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/exec-vary.c.o [ 72%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/softmmu/cpus.c.o [ 72%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/softmmu/ioport.c.o [ 72%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/softmmu/memory.c.o [ 72%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/softmmu/memory_mapping.c.o [ 73%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/fpu/softfloat.c.o [ 73%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/tcg/optimize.c.o [ 73%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/tcg/tcg.c.o [ 73%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/tcg/tcg-op.c.o [ 73%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/tcg/tcg-op-gvec.c.o [ 73%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/tcg/tcg-op-vec.c.o [ 73%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/accel/tcg/cpu-exec.c.o [ 74%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/accel/tcg/cpu-exec-common.c.o [ 74%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/accel/tcg/cputlb.c.o [ 74%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/accel/tcg/tcg-all.c.o [ 74%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/accel/tcg/tcg-runtime.c.o [ 74%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/accel/tcg/tcg-runtime-gvec.c.o [ 74%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/accel/tcg/translate-all.c.o [ 75%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/accel/tcg/translator.c.o [ 75%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/softmmu/unicorn_vtlb.c.o [ 75%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/target/riscv/cpu.c.o [ 75%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/target/riscv/cpu_helper.c.o [ 75%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/target/riscv/csr.c.o [ 75%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/target/riscv/fpu_helper.c.o [ 75%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/target/riscv/op_helper.c.o [ 76%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/target/riscv/pmp.c.o [ 76%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/target/riscv/translate.c.o [ 76%] Building C object CMakeFiles/riscv32-softmmu.dir/qemu/target/riscv/unicorn.c.o [ 76%] Linking C static library libriscv32-softmmu.a [ 76%] Built target riscv32-softmmu [ 76%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/exec.c.o [ 76%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/exec-vary.c.o [ 76%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/softmmu/cpus.c.o [ 77%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/softmmu/ioport.c.o [ 77%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/softmmu/memory.c.o [ 77%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/softmmu/memory_mapping.c.o [ 77%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/fpu/softfloat.c.o [ 77%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/tcg/optimize.c.o [ 77%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/tcg/tcg.c.o [ 78%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/tcg/tcg-op.c.o [ 78%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/tcg/tcg-op-gvec.c.o [ 78%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/tcg/tcg-op-vec.c.o [ 78%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/accel/tcg/cpu-exec.c.o [ 78%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/accel/tcg/cpu-exec-common.c.o [ 78%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/accel/tcg/cputlb.c.o [ 78%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/accel/tcg/tcg-all.c.o [ 79%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/accel/tcg/tcg-runtime.c.o [ 79%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/accel/tcg/tcg-runtime-gvec.c.o [ 79%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/accel/tcg/translate-all.c.o [ 79%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/accel/tcg/translator.c.o [ 79%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/softmmu/unicorn_vtlb.c.o [ 79%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/target/riscv/cpu.c.o [ 80%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/target/riscv/cpu_helper.c.o [ 80%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/target/riscv/csr.c.o [ 80%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/target/riscv/fpu_helper.c.o [ 80%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/target/riscv/op_helper.c.o [ 80%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/target/riscv/pmp.c.o [ 80%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/target/riscv/translate.c.o [ 80%] Building C object CMakeFiles/riscv64-softmmu.dir/qemu/target/riscv/unicorn.c.o [ 81%] Linking C static library libriscv64-softmmu.a [ 81%] Built target riscv64-softmmu [ 81%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/exec.c.o [ 81%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/exec-vary.c.o [ 81%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/softmmu/cpus.c.o [ 81%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/softmmu/ioport.c.o [ 81%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/softmmu/memory.c.o [ 81%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/softmmu/memory_mapping.c.o [ 82%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/fpu/softfloat.c.o [ 82%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/tcg/optimize.c.o [ 82%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/tcg/tcg.c.o [ 82%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/tcg/tcg-op.c.o [ 82%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/tcg/tcg-op-gvec.c.o [ 82%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/tcg/tcg-op-vec.c.o [ 83%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/accel/tcg/cpu-exec.c.o [ 83%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/accel/tcg/cpu-exec-common.c.o [ 83%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/accel/tcg/cputlb.c.o [ 83%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/accel/tcg/tcg-all.c.o [ 83%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/accel/tcg/tcg-runtime.c.o [ 83%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/accel/tcg/tcg-runtime-gvec.c.o [ 83%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/accel/tcg/translate-all.c.o [ 84%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/accel/tcg/translator.c.o [ 84%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/softmmu/unicorn_vtlb.c.o [ 84%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/hw/s390x/s390-skeys.c.o [ 84%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/cc_helper.c.o [ 84%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/cpu.c.o [ 84%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/cpu_features.c.o [ 84%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/cpu_models.c.o [ 85%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/crypto_helper.c.o [ 85%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/excp_helper.c.o [ 85%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/fpu_helper.c.o [ 85%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/helper.c.o [ 85%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/interrupt.c.o [ 85%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/int_helper.c.o [ 86%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/ioinst.c.o [ 86%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/mem_helper.c.o [ 86%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/misc_helper.c.o [ 86%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/mmu_helper.c.o [ 86%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/sigp.c.o [ 86%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/tcg-stub.c.o [ 86%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/translate.c.o [ 87%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/vec_fpu_helper.c.o [ 87%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/vec_helper.c.o [ 87%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/vec_int_helper.c.o [ 87%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/vec_string_helper.c.o [ 87%] Building C object CMakeFiles/s390x-softmmu.dir/qemu/target/s390x/unicorn.c.o [ 87%] Linking C static library libs390x-softmmu.a [ 87%] Built target s390x-softmmu [ 87%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/exec.c.o [ 88%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/exec-vary.c.o [ 88%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/softmmu/cpus.c.o [ 88%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/softmmu/ioport.c.o [ 88%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/softmmu/memory.c.o [ 88%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/softmmu/memory_mapping.c.o [ 88%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/fpu/softfloat.c.o [ 89%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/tcg/optimize.c.o [ 89%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/tcg/tcg.c.o [ 89%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/tcg/tcg-op.c.o [ 89%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/tcg/tcg-op-gvec.c.o [ 89%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/tcg/tcg-op-vec.c.o [ 89%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/accel/tcg/cpu-exec.c.o [ 89%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/accel/tcg/cpu-exec-common.c.o [ 90%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/accel/tcg/cputlb.c.o [ 90%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/accel/tcg/tcg-all.c.o [ 90%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/accel/tcg/tcg-runtime.c.o [ 90%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/accel/tcg/tcg-runtime-gvec.c.o [ 90%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/accel/tcg/translate-all.c.o [ 90%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/accel/tcg/translator.c.o [ 91%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/softmmu/unicorn_vtlb.c.o [ 91%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/target/tricore/cpu.c.o [ 91%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/target/tricore/fpu_helper.c.o [ 91%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/target/tricore/helper.c.o [ 91%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/target/tricore/op_helper.c.o [ 91%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/target/tricore/translate.c.o [ 91%] Building C object CMakeFiles/tricore-softmmu.dir/qemu/target/tricore/unicorn.c.o [ 92%] Linking C static library libtricore-softmmu.a [ 92%] Built target tricore-softmmu [ 92%] Building C object CMakeFiles/unicorn.dir/uc.c.o [ 92%] Building C object CMakeFiles/unicorn.dir/qemu/softmmu/vl.c.o [ 92%] Building C object CMakeFiles/unicorn.dir/qemu/hw/core/cpu.c.o [ 92%] Linking C shared library libunicorn.so [ 92%] Built target unicorn [ 92%] Building C object CMakeFiles/unicorn_static.dir/uc.c.o [ 92%] Building C object CMakeFiles/unicorn_static.dir/qemu/softmmu/vl.c.o [ 92%] Building C object CMakeFiles/unicorn_static.dir/qemu/hw/core/cpu.c.o [ 92%] Linking C static library libunicorn_static.a [ 92%] Built target unicorn_static [ 92%] Linking C static library libunicorn.a [ 92%] Built target unicorn_archive [ 92%] Building C object CMakeFiles/sample_x86.dir/samples/sample_x86.c.o [ 92%] Linking C executable sample_x86 [ 92%] Built target sample_x86 [ 92%] Building C object CMakeFiles/sample_x86_32_gdt_and_seg_regs.dir/samples/sample_x86_32_gdt_and_seg_regs.c.o [ 93%] Linking C executable sample_x86_32_gdt_and_seg_regs [ 93%] Built target sample_x86_32_gdt_and_seg_regs [ 93%] Building C object CMakeFiles/sample_batch_reg.dir/samples/sample_batch_reg.c.o [ 93%] Linking C executable sample_batch_reg [ 93%] Built target sample_batch_reg [ 93%] Building C object CMakeFiles/mem_apis.dir/samples/mem_apis.c.o [ 93%] Linking C executable mem_apis [ 93%] Built target mem_apis [ 93%] Building C object CMakeFiles/shellcode.dir/samples/shellcode.c.o [ 93%] Linking C executable shellcode [ 93%] Built target shellcode [ 93%] Building C object CMakeFiles/sample_mmu.dir/samples/sample_mmu.c.o [ 93%] Linking C executable sample_mmu [ 93%] Built target sample_mmu [ 94%] Building C object CMakeFiles/sample_arm.dir/samples/sample_arm.c.o [ 94%] Linking C executable sample_arm [ 94%] Built target sample_arm [ 94%] Building C object CMakeFiles/sample_arm64.dir/samples/sample_arm64.c.o [ 94%] Linking C executable sample_arm64 [ 94%] Built target sample_arm64 [ 94%] Building C object CMakeFiles/sample_m68k.dir/samples/sample_m68k.c.o [ 94%] Linking C executable sample_m68k [ 94%] Built target sample_m68k [ 94%] Building C object CMakeFiles/sample_mips.dir/samples/sample_mips.c.o [ 94%] Linking C executable sample_mips [ 94%] Built target sample_mips [ 95%] Building C object CMakeFiles/sample_sparc.dir/samples/sample_sparc.c.o [ 95%] Linking C executable sample_sparc [ 95%] Built target sample_sparc [ 96%] Building C object CMakeFiles/sample_ppc.dir/samples/sample_ppc.c.o [ 96%] Linking C executable sample_ppc [ 96%] Built target sample_ppc [ 96%] Building C object CMakeFiles/sample_riscv.dir/samples/sample_riscv.c.o [ 96%] Linking C executable sample_riscv [ 96%] Built target sample_riscv [ 96%] Building C object CMakeFiles/sample_s390x.dir/samples/sample_s390x.c.o [ 96%] Linking C executable sample_s390x [ 96%] Built target sample_s390x [ 96%] Building C object CMakeFiles/sample_tricore.dir/samples/sample_tricore.c.o [ 96%] Linking C executable sample_tricore [ 96%] Built target sample_tricore [ 96%] Building C object CMakeFiles/sample_ctl.dir/samples/sample_ctl.c.o [ 97%] Linking C executable sample_ctl [ 97%] Built target sample_ctl [ 97%] Building C object CMakeFiles/test_x86.dir/tests/unit/test_x86.c.o [ 97%] Linking C executable test_x86 [ 97%] Built target test_x86 [ 97%] Building C object CMakeFiles/test_arm.dir/tests/unit/test_arm.c.o [ 97%] Linking C executable test_arm [ 97%] Built target test_arm [ 97%] Building C object CMakeFiles/test_arm64.dir/tests/unit/test_arm64.c.o [ 97%] Linking C executable test_arm64 [ 97%] Built target test_arm64 [ 97%] Building C object CMakeFiles/test_m68k.dir/tests/unit/test_m68k.c.o [ 97%] Linking C executable test_m68k [ 97%] Built target test_m68k [ 97%] Building C object CMakeFiles/test_mips.dir/tests/unit/test_mips.c.o [ 98%] Linking C executable test_mips [ 98%] Built target test_mips [ 99%] Building C object CMakeFiles/test_sparc.dir/tests/unit/test_sparc.c.o [ 99%] Linking C executable test_sparc [ 99%] Built target test_sparc [ 99%] Building C object CMakeFiles/test_ppc.dir/tests/unit/test_ppc.c.o [ 99%] Linking C executable test_ppc [ 99%] Built target test_ppc [ 99%] Building C object CMakeFiles/test_riscv.dir/tests/unit/test_riscv.c.o [ 99%] Linking C executable test_riscv [ 99%] Built target test_riscv [ 99%] Building C object CMakeFiles/test_s390x.dir/tests/unit/test_s390x.c.o [ 99%] Linking C executable test_s390x [ 99%] Built target test_s390x [ 99%] Building C object CMakeFiles/test_tricore.dir/tests/unit/test_tricore.c.o [ 99%] Linking C executable test_tricore [ 99%] Built target test_tricore [ 99%] Building C object CMakeFiles/test_mem.dir/tests/unit/test_mem.c.o [ 99%] Linking C executable test_mem [ 99%] Built target test_mem [ 99%] Building C object CMakeFiles/test_ctl.dir/tests/unit/test_ctl.c.o [100%] Linking C executable test_ctl [100%] Built target test_ctl

vue中折线图转Excel时导出来是ata:image/png;base64,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

data:image/png;base64,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 这是验证码的地址,如何通过with open保存

Disconnecting connection: Mirror.NetworkConnectionToServer because handling a message of type Mirror.SpawnMessage caused an Exception. This can happen if the other side accidentally (or an attacker intentionally) sent invalid data. Reason: System.IO.EndOfStreamException: ReadBlittable<System.Byte> not enough data in buffer to read 1 bytes: [FF-FF-FF-FF-FF-FF-FF-FF-03-01-02-00-00-00-35-01-14-00-00-00-8C-2E-E7-3C-66-38-FB-3D-CF-ED-17-3B-A9-76-15-35-ED-54-53-31-8D-6F-A3-B6-00-00-80-3F-6D-23-88-23-3D-6A-1F-3D-47-E3-94-A2-00-00-00-00-00-00-00-00-9B-84-D0-36-00-00-80-3F-F2-31-E5-AA-8F-E2-0B-3D-94-B3-7D-A6-00-00-00-00-00-00-00-80-00-00-00-80-00-00-80-3F-AF-2A-C9-B1-14-26-FC-3C-A4-94-3B-25-1C-80-8B-35-E1-1F-83-BB-C7-16-BF-B7-7A-FF-7F-3F-07-F8-44-34-47-D2-02-3E-CB-4F-31-B2-A9-76-15-35-E9-05-37-31-41-57-5F-B4-00-00-80-3F-14-6D-23-24-33-07-14-3D-9E-CD-52-A4-00-00-00-00-00-00-00-80-00-00-00-80-00-00-80-3F-C8-0D-99-B4-3D-B6-0D-3D-82-0A-4F-A6-00-00-00-00-00-00-00-80-00-00-00-80-00-00-80-3F-FE-9A-A3-34-99-BD-16-3D-80-F5-20-A6-29-E0-B2-B5-FF-0E-96-BB-DF-7A-2B-3A-4D-FF-7F-3F-EF-91-41-BD-5B-66-DF-3D-AF-32-14-3B-EA-66-3F-36-EA-20-52-31-31-E7-13-B9-00-00-80-3F-E9-F5-97-24-FE-6F-29-3D-6E-5D-DB-23-A8-CC-C7-B6-BF-88-16-B1-8C-E0-C0-39-FF-FF-7F-3F-4C-02-9E-A7-A0-91-D4-3C-AE-C0-27-25-0D-90-75-36-DF-25-67-B0-F8-F8-70-B9-00-00-80-3F-DC-FF-55-27-EB-85-EF-3C-99-D8-DD-A3-46-E6-8C-B5-69-58-86-BB-EC-BF-16-3A-70-FF-7F-3F-1C-96-B5-BC-50-C5-F8-3D-D4-A2-D1-B8-A8-76-15-35-BE-C3-52-31-28-4D-A0-B6-00-00-80-3F-A5-39-D7-A2-33-81-13-3D-DB-B9-1A-25-FA-CE-1A-B6-65-C5-A3-AD-17-69-07-37-00-00-80-3F-FB-D4-00-28-AE-77-07-3D-1D-78-11-27-00-00-00-00-00-00-00-80-00-00-00-80-00-00-80-3F-9D-C6-81-34-1F-EB-15-3D-4B-51-35-34-3F-5F-0E-37-20-5E-F2-BB-2A-0D-4A-BA-30-FE-7F-3F-F3-00-F6-3C-8B-30-1B-3D-69-88-B1-3C-9B-F4-8E-BE-9A-27-E1-BE-B7-CD-A6-3C-8C-76-5A-BF-12-E8-45-24-9E-5A-42-3D-59-49-EF-25-4B-12-E9-36-72-51-C4-AC-8D-A1-57-B5-00-00-80-3F-7E-00-D4-27-F3-7D-33-3D-F5-DE-67-29-00-00-00-00-00-00-00-80-00-00-00-80-00-00-80-3F-13-44-5C-33-0F-AF-0D-3D-05-A1-8A-31-87-DC-15-3C-19-A7-00-BE-BC-9A-93-BD-24-4A-7D-3F-10-8C-2E-E7-3C-66-38-FB-3D-CF-ED-17-3B-FF-FD-F7-DF-10-6D-23-88-23-3D-6A-1F-3D-47-E3-94-A2-FF-FD-F7-DF-10-F2-31-E5-AA-8F-E2-0B-3D-94-B3-7D-A6-FF-FD-F7-DF-10-AF-2A-C9-B1-14-26-FC-3C-A4-94-3B-25-FF-F1-F7-DF-10-07-F8-44-34-47-D2-02-3E-CB-4F-31-B2-FF-FD-F7-DF-10-14-6D-23-24-33-07-14-3D-9E-CD-52-A4-FF-FD-F7-DF-10-C8-0D-99-B4-3D-B6-0D-3D-82-0A-4F-A6-FF-FD-F7-DF-10-FE-9A-A3-34-99-BD-16-3D-80-F5-20-A6-FF-F1-F7-DF-10-EF-91-41-BD-5B-66-DF-3D-AF-32-14-3B-FF-FD-F7-DF-10-E9-F5-97-24-FE-6F-29-3D-6E-5D-DB-23-FF-FD-F7-DF-10-4C-02-9E-A7-A0-91-D4-3C-AE-C0-27-25-FF-FD-F7-DF-10-DC-FF-55-27-EB-85-EF-3C-99-D8-DD-A3-FF-F1-F7-DF-10-1C-96-B5-BC-50-C5-F8-3D-D4-A2-D1-B8-FF-FD-F7-DF-10-A5-39-D7-A2-33-81-13-3D-DB-B9-1A-25-FF-FD-F7-DF-10-FB-D4-00-28-AE-77-07-3D-1D-78-11-27-FF-FD-F7-DF-10-9D-C6-81-34-1F-EB-15-3D-4B-51-35-34-FE-E9-F7-DF-10-F3-00-F6-3C-8B-30-1B-3D-69-88-B1-3C-F0-F5-9C-EC-10-12-E8-45-24-9E-5A-42-3D-59-49-EF-25-FF-FD-F7-DF-10-7E-00-D4-27-F3-7D-33-3D-F5-DE-67-29-FF-FD-F7-DF-10-13-44-5C-33-0F-AF-0D-3D-05-A1-8A-31-CB-91-66-E0-00-00-38-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-80-3F-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-80-3F-10-85-2E-E7-BC-66-38-FB-3D-D1-ED-17-3B-FF-FD-F7-DF-10-B8-C2-43-A2-3D-6A-1F-3D-85-0B-2D-A4-FF-FD-F7-DF-10-06-B9-68-29-8F-E2-0B-3D-4D-93-8D-26-FF-FD-F7-DF-10-F8-69-5B-32-14-26-FC-3C-52-B8-11-23-FE-11-F8-DF-10-1E-96-32-B4-47-D2-02-3E-C5-4F-31-B2-FF-FD-F7-DF-10-52-54-11-A2-33-07-14-3D-F5-98-43-A5-FF-FD-F7-DF-10-93-F4-9D-34-3D-B6-0D-3D-EB-75-C3-26-FF-FD-F7-DF-10-89-45-99-B4-99-BD-16-3D-47-95-D5-A5-00-12-F8-DF-10-F3-91-41-3D-5B-66-DF-3D-AB-32-14-3B-FF-FD-F7-DF-10-F5-F0-B8-22-EB-6F-29-3D-70-0D-E9-A5-FF-FD-F7-DF-10-DE-DE-31-29-C2-91-D4-3C-52-6C-F7-A5-FF-FD-F7-DF-10-BB-72-44-A9-EB-85-EF-3C-66-56-8D-26-FD-15-F8-DF-10-26-96-B5-3C-47-C5-F8-3D-10-A3-D1-B8-FF-FD-F7-DF-10-14-75-45-23-47-81-13-3D-CD-4A-B3-A5-FF-FD-F7-DF-10-F2-4E-88-29-AE-77-07-3D-47-4E-80-A6-FF-FD-F7-DF-10-9A-C6-81-B4-1F-EB-15-3D-47-C3-F5-A5-FF-15-F8-DF-10-F0-00-F6-BC-8A-30-1B-3D-69-88-B1-3C-A0-52-57-EB-10-47-89-80-24-9E-5A-42-3D-3D-8A-0A-A5-FF-FD-F7-DF-10-D8-C8-06-27-05-7E-33-3D-9C-75-38-A9-FF-FD-F7-DF-10-23-09-F0-B3-FD-AE-0D-3D-BC-8E-79-B4-33-6E-69-E0-38-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-80-3F-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-80-3F-38-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-80-3F-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-80-3F-DD-01-1A-00-00-00-BE-53-9C-BC-D8-0C-53-BB-C1-3E-B0-3C-6D-33-BC-BA-10-82-BD-BD-D8-1C-7D-BC-E7-DE-7E-3F-4E-3D-34-B3-A5-F5-AD-3B-62-10-7B-3D-00-00-00-00-00-00-00-80-00-00-00-80-00-00-80-3F-AF-01-3A-B3-DD-83-85-B1-87-DA-1D-3D-00-00-00-00-00-00-00-80-00-00-00-80-00-00-80-3F-FC-6A-12-34-BD-5C-7C-32-87-C9-AC-3C-00-00-00-00-00-00-00-80-00-00-00-80-00-00-80-3F-6F-4C-25-33-CA-D9-B8-34-12-ED-AD-3C-00-00-00-00-00-00-00-80-00-00-00-80-00-00-80-3F-77-58-B2-3C-76-5D-2E-BB-96-00-A1-3C-A0-7A-BD-B5-9B-A7-A5-3D-D9-ED-91-37-43-29-7F-3F-20-EB-A0-B3-17-82-8D-39-44-EF-64-3D-00-00-00-00-00-00-00-80-00-00-00-80-00-00-80-3F-7B-5A-11-34-09-D3-0B-B1-26-35-DD-3C-00-00-00-00-00-00-00-80-00-00-00-80-00-00-80-3F-75-4E-40-B3-3D-E5-9C-32-E0-54-8A-3C-00-00-00-00-00-00-00-80-00-00-00-80-00-00-80-3F-36-C8-25-32-56-DA-A6-B3-A2-AE-9F-3C-D9-92-09-36-00-00-00-00-00-00-00-80-00-00-80-3F-F4-E1-76-BB-77-2F-3C-B8-A0-4E-B9-3C-52-03-21-BD-00-3F-11-BD-D8-40-A9-BA-0B-A4-7F-3F-2B-0A-F3-2F-7C-DA-C7-B1-57-16-77-3D-00-00-00-00-00-00-00-80-00-00-00-80-00-00-80-3F-4E-30-AA-B0-AF-AF-2E-34-07-58-3B-3D-00-00-00-00-00-00-00-80-00-00-00-80-00-00-80-3F-01-C9-40-32-A8-D7-86-B4-92-E0-CA-3C-A0-B3-33-22-00-00-80-A1-FF-FF-4F-A1-00-00-80-3F-2E-54-24-33-BE-EE-E5-B4-AF-20-CE-3C-00-00-00-00-00-00-00-80-00-00-00-80-00-00-80-3F-00-00-00-80-00-00-00-00-5C-8F-42-3D-32-31-8D-A4-74-BE-9B-09-32-31-8D-A4-00-00-80-3F-76-F2-14-3C-64-38-26-39-B0-38-B7-3C-02-77-F6-BC-D3-C0-CE-3C-D3-C8-5B-3A-6D-CD-7F-3F-09-C6-74-B3-07-0A-0C-AF-64-97-65-3D-00-00-00-00-00-00-00-80-00-00-00-80-00-00-80-3F-B6-4D-30-34-C2-77-A7-B3-89-B0-30-3D-00-00-00-00-00-00-00-80-00-00-00-80-00-00-80-3F-62-29-20-B4-EE-C8-4B-34-50-3A-A9-3C-00-00-80-A2-00-00-00-24-00-00-40-A1-00-00-80-3F-89-37-F2-B2-6F-8A-BF-34-25-92-AE-3C-A9-17-6E-35-00-00-00-00-00-00-00-80-00-00-80-3F-18-81-E7-BC-9D-21-66-BC-6B-C6-B3-3C-60-33-FD-BD-BA-D7-BC-BE-57-78-D8-3E-70-88-51-3F-D4-A5-03-33-F7-29-2C-34-A5-61-E9-3C-00-00-00-00-00-00-00-80-00-00-00-80-00-00-80-3F-75-44-8C-33-84-93-8C-B2-17-FF-E6-3C-00-00-00-00-00-00-00-80-00-00-00-80-00-00-80-3F-ED-3C-45-B4-AA-D8-3F-33-37-B1-EB-3C-00-00-00-00-00-00-00-80-00-00-00-80-00-00-80-3F-00-00-00-00-00-00-00-00-00-00-00-00-F4-04-35-3F-00-00-00-00-00-00-00-00-F4-04-35-3F-10-00-00-00-00-A0-45-36-3E-36-5E-9A-BF-FF-FD-F7-DF-10-80-33-BA-3A-CA-A0-7C-BF-91-36-4C-3F-ED-0D-BD-A7-00-00-10-30-EB-3F-3E-CA-A0-7C-BF-91-36-4C-3F-ED-0D-BD-A7-00-00 @ 2229/2222] at Mirror.NetworkReader.ReadBlittable[T] () [0x00047] in D:\unity\project\1\MR\MR\Assets\Mirror\Core\NetworkReader.cs:142 at Mirror.NetworkReader.ReadByte () [0x00000] in D:\unity\project\1\MR\MR\Assets\Mirror\Core\NetworkReader.cs:182 at Mirror.NetworkBehaviour.Deserialize (Mirror.NetworkReader reader, System.Boolean initialState) [0x00003] in D:\unity\project\1\MR\MR\Assets\Mirror\Core\NetworkBehaviour.cs:1319 at Mirror.NetworkIdentity.DeserializeClient (Mirror.NetworkReader reader, System.Boolean initialState) [0x0002c] in D:\unity\project\1\MR\MR\Assets\Mirror\Core\NetworkIdentity.cs:1422 at Mirror.NetworkClient.ApplySpawnPayload (Mirror.NetworkIdentity identity, Mirror.SpawnMessage message) [0x000fb] in D:\unity\project\1\MR\MR\Assets\Mirror\Core\NetworkClient.cs:1166 at Mirror.NetworkClient.OnSpawn (Mirror.SpawnMessage message) [0x0001b] in D:\unity\project\1\MR\MR\Assets\Mirror\Core\NetworkClient.cs:1550 at (wrapper delegate-invoke) System.Action1[Mirror.SpawnMessage].invoke_void_T(Mirror.SpawnMessage) at Mirror.NetworkClient+<>c__DisplayClass68_01[T].<RegisterHandler>g__HandlerWrapped|0 (Mirror.NetworkConnection _, T value) [0x00000] in D:\unity\project\1\MR\MR\Assets\Mirror\Core\NetworkClient.cs:559 at Mirror.NetworkMessages+<>c__DisplayClass9_02[T,C].<WrapHandler>g__Wrapped|0 (C conn, T msg, System.Int32 _) [0x00000] in D:\unity\project\1\MR\MR\Assets\Mirror\Core\NetworkMessages.cs:206 at Mirror.NetworkMessages+<>c__DisplayClass8_02[T,C].<WrapHandler>b__0 (Mirror.NetworkConnection conn, Mirror.NetworkReader reader, System.Int32 channelId) [0x000cf] in D:\unity\project\1\MR\MR\Assets\Mirror\Core\NetworkMessages.cs:179 UnityEngine.Debug:LogError (object) Mirror.NetworkMessages/<>c__DisplayClass8_02<Mirror.SpawnMessage, Mirror.NetworkConnection>:<WrapHandler>b__0 (Mirror.NetworkConnection,Mirror.NetworkReader,int) (at Assets/Mirror/Core/NetworkMessages.cs:186) Mirror.NetworkClient:UnpackAndInvoke (Mirror.NetworkReader,int) (at Assets/Mirror/Core/NetworkClient.cs:293) Mirror.NetworkClient:OnTransportData (System.ArraySegment1<byte>,int) (at Assets/Mirror/Core/NetworkClient.cs:369) kcp2k.KcpTransport:<Awake>b__29_2 (System.ArraySegment1<byte>,kcp2k.KcpChannel) (at Assets/Mirror/Transports/KCP/KcpTransport.cs:117) kcp2k.KcpClient:OnData (System.ArraySegment1<byte>,kcp2k.KcpChannel) (at Assets/Mirror/Transports/KCP/kcp2k/highlevel/KcpClient.cs:74) kcp2k.KcpPeer:TickIncoming_Authenticated (uint) (at Assets/Mirror/Transports/KCP/kcp2k/highlevel/KcpPeer.cs:402) kcp2k.KcpPeer:TickIncoming () (at Assets/Mirror/Transports/KCP/kcp2k/highlevel/KcpPeer.cs:438) kcp2k.KcpClient:TickIncoming () (at Assets/Mirror/Transports/KCP/kcp2k/highlevel/KcpClient.cs:272) kcp2k.KcpTransport:ClientEarlyUpdate () (at Assets/Mirror/Transports/KCP/KcpTransport.cs:184) Mirror.NetworkClient:NetworkEarlyUpdate () (at Assets/Mirror/Core/NetworkClient.cs:1649) Mirror.NetworkLoop:NetworkEarlyUpdate () (at Assets/Mirror/Core/NetworkLoop.cs:193)

以下是基于Proteus的**倒计时器电路图绘制步骤**(配合AT89C52单片机): --- ### **步骤1:创建新工程** 1. 打开Proteus,点击菜单栏 **File → New Project**。 2. 设置工程名称(如CountDown_AT89C52),选择保存路径,点击 **Next**。 3. 选择默认模板(DEFAULT),点击 **Next → Finish** 完成创建。 --- ### **步骤2:添加核心元件** 在元件库中搜索并放置以下元件: - **单片机**:AT89C52(Microprocessor ICs → 8051 Family)。 - **数码管**:两位共阳数码管 7SEG-MPX2-CA(Optoelectronics → 7-Segment Displays)。 - **LED**:8个LED-RED(Optoelectronics → LEDs)。 - **蜂鸣器**:SOUNDER(Actuators → Sounders)。 - **按键**:2个BUTTON(Switches & Relays → Switches)。 - **电阻**: - 8个220Ω电阻(LED限流)。 - 2个10kΩ电阻(数码管段选上拉)。 - 1个10kΩ排阻(RESPACK-8,接P0口上拉)。 - **三极管**:PNP三极管(如2N2907,驱动蜂鸣器)。 - **晶振**:CRYSTAL(频率11.0592MHz)。 - **电容**:2个30pF电容(晶振匹配) + 1个10μF电解电容(复位电路)。 --- ### **步骤3:连接电路** #### **1. 单片机最小系统** - **电源**:AT89C52的VCC(40脚)接电源(+5V),GND(20脚)接地。 - **晶振**:11.0592MHz晶振连接18、19脚,并联两个30pF电容到地。 - **复位电路**:10μF电解电容正极接+5V,负极接10kΩ电阻到地,电阻另一端连接单片机的RST(9脚)。 #### **2. LED模块** - 8个LED的阳极分别通过220Ω电阻接至P1.0~P1.7,阴极接地。 #### **3. 数码管模块** - **段选**:数码管的段码引脚(a~g, dp)接P0.0~P0.7,并通过10kΩ排阻上拉至+5V。 - **位选**: - 十位数码管的公共端(COM1)接P2.1。 - 个位数码管的公共端(COM2)接P2.2。 #### **4. 蜂鸣器模块** - 蜂鸣器正极接PNP三极管的发射极(E),三极管基极(B)通过1kΩ电阻接P2.0,集电极(C)接地。 - 蜂鸣器负极接地。 #### **5. 按键模块** - **启动/暂停按键**:一端接P3.2,另一端接地(下降沿触发)。 - **时间+按键**:一端接P3.3,另一端接地。 --- ### **步骤4:设置元件属性** 1. **数码管**:双击数码管,选择Common Anode(共阳)。 2. **排阻**:双击排阻,设置阻值为10kΩ。 3. **晶振**:设置频率为11.0592MHz。 --- ### **步骤5:电路图示例** 以下是简化后的电路图连接示意图: +5V ──┬── VCC (AT89C52) ├── 排阻(10kΩ) ── P0.0~P0.7 (数码管段选) └── 复位电路 P1.0~P1.7 ── 220Ω ── LED阳极 LED阴极 ── GND P2.0 ── 1kΩ ── PNP基极 PNP发射极 ── +5V PNP集电极 ── 蜂鸣器正极 蜂鸣器负极 ── GND P3.2 ── BUTTON ── GND (启动/暂停) P3.3 ── BUTTON ── GND (时间+) --- ### **步骤6:仿真验证** 1. **加载HEX文件**: - 右键点击AT89C52,选择Edit Properties,在Program File中导入Keil生成的HEX文件。 - 设置晶振频率为11.0592MHz。 2. **运行仿真**: - 点击Proteus左下角的运行按钮,观察数码管是否显示99。 - 按下启动键,验证倒计时、LED流水灯、蜂鸣器报警功能是否正常。 --- ### **常见问题解决** 1. **数码管不亮**:检查P0口是否接上拉电阻,位选信号(P2.1/P2.2)是否正常。 2. **LED不闪烁**:确认P1口连接正确,代码中LED控制逻辑是否启用。 3. **蜂鸣器无声**:检查三极管驱动电路是否导通,P2.0输出频率是否符合1kHz。 --- 将绘制完成的Proteus电路文件(.DSN)与代码工程一同压缩提交即可。

大家在看

recommend-type

华为OLT MA5680T工具.zip

华为OLT管理器 MA5680T MA5608T全自动注册光猫,其他我的也不知道,我自己不用这玩意; 某宝上卖500大洋的货。需要的下载。 附后某宝链接: https://item.taobao.com/item.htm?spm=a230r.1.14.149.2d8548e4oynrAP&id=592880631233&ns=1&abbucket=12#detail 证明寡人没有吹牛B
recommend-type

STP-RSTP-MSTP配置实验指导书 ISSUE 1.3

STP-RSTP-MSTP配置实验指导书 ISSUE 1.3
recommend-type

基于FPGA的AD9910控制设计

为了满足目前对数据处理速度的需求,设计了一种基于FPGA+DDS的控制系统。根据AD9910的特点设计了控制系统的硬件部分,详细阐述了电源、地和滤波器的设计。设计了FPGA的软件控制流程,给出了流程图和关键部分的例程,并对DDSAD9910各个控制寄存器的设置与时序进行详细说明,最后给出了实验结果。实验结果证明输出波形质量高、效果好。对于频率源的设计与实现具有工程实践意义。
recommend-type

Android全景视频播放器 源代码

Android全景视频播放器 源代码
recommend-type

pytorch-book:《神经网络和PyTorch的应用》一书的源代码

神经网络与PyTorch实战 世界上第一本 PyTorch 1 纸质教程书籍 本书讲解神经网络设计与 PyTorch 应用。 全书分为三个部分。 第 1 章和第 2 章:厘清神经网络的概念关联,利用 PyTorch 搭建迷你 AlphaGo,使你初步了解神经网络和 PyTorch。 第 3~9 章:讲解基于 PyTorch 的科学计算和神经网络搭建,涵盖几乎所有 PyTorch 基础知识,涉及所有神经网络的常用结构,并通过 8 个例子使你完全掌握神经网络的原理和应用。 第 10 章和第 11 章:介绍生成对抗网络和增强学习,使你了解更多神经网络的实际用法。 在线阅读: 勘误列表: 本书中介绍的PyTorch的安装方法已过时。PyTorch安装方法(2020年12月更新): Application of Neural Network and PyTorch The First Hard-co

最新推荐

recommend-type

Visual C++.NET编程技术实战指南

根据提供的文件信息,可以生成以下知识点: ### Visual C++.NET编程技术体验 #### 第2章 定制窗口 - **设置窗口风格**:介绍了如何通过编程自定义窗口的外观和行为。包括改变窗口的标题栏、边框样式、大小和位置等。这通常涉及到Windows API中的`SetWindowLong`和`SetClassLong`函数。 - **创建六边形窗口**:展示了如何创建一个具有特殊形状边界的窗口,这类窗口不遵循标准的矩形形状。它需要使用`SetWindowRgn`函数设置窗口的区域。 - **创建异形窗口**:扩展了定制窗口的内容,提供了创建非标准形状窗口的方法。这可能需要创建一个不规则的窗口区域,并将其应用到窗口上。 #### 第3章 菜单和控制条高级应用 - **菜单编程**:讲解了如何创建和修改菜单项,处理用户与菜单的交互事件,以及动态地添加或删除菜单项。 - **工具栏编程**:阐述了如何使用工具栏,包括如何创建工具栏按钮、分配事件处理函数,并实现工具栏按钮的响应逻辑。 - **状态栏编程**:介绍了状态栏的创建、添加不同类型的指示器(如文本、进度条等)以及状态信息的显示更新。 - **为工具栏添加皮肤**:展示了如何为工具栏提供更加丰富的视觉效果,通常涉及到第三方的控件库或是自定义的绘图代码。 #### 第5章 系统编程 - **操作注册表**:解释了Windows注册表的结构和如何通过程序对其进行读写操作,这对于配置软件和管理软件设置非常关键。 - **系统托盘编程**:讲解了如何在系统托盘区域创建图标,并实现最小化到托盘、从托盘恢复窗口的功能。 - **鼠标钩子程序**:介绍了钩子(Hook)技术,特别是鼠标钩子,如何拦截和处理系统中的鼠标事件。 - **文件分割器**:提供了如何将文件分割成多个部分,并且能够重新组合文件的技术示例。 #### 第6章 多文档/多视图编程 - **单文档多视**:展示了如何在同一个文档中创建多个视图,这在文档编辑软件中非常常见。 #### 第7章 对话框高级应用 - **实现无模式对话框**:介绍了无模式对话框的概念及其应用场景,以及如何实现和管理无模式对话框。 - **使用模式属性表及向导属性表**:讲解了属性表的创建和使用方法,以及如何通过向导性质的对话框引导用户完成多步骤的任务。 - **鼠标敏感文字**:提供了如何实现点击文字触发特定事件的功能,这在阅读器和编辑器应用中很有用。 #### 第8章 GDI+图形编程 - **图像浏览器**:通过图像浏览器示例,展示了GDI+在图像处理和展示中的应用,包括图像的加载、显示以及基本的图像操作。 #### 第9章 多线程编程 - **使用全局变量通信**:介绍了在多线程环境下使用全局变量进行线程间通信的方法和注意事项。 - **使用Windows消息通信**:讲解了通过消息队列在不同线程间传递信息的技术,包括发送消息和处理消息。 - **使用CriticalSection对象**:阐述了如何使用临界区(CriticalSection)对象防止多个线程同时访问同一资源。 - **使用Mutex对象**:介绍了互斥锁(Mutex)的使用,用以同步线程对共享资源的访问,保证资源的安全。 - **使用Semaphore对象**:解释了信号量(Semaphore)对象的使用,它允许一个资源由指定数量的线程同时访问。 #### 第10章 DLL编程 - **创建和使用Win32 DLL**:介绍了如何创建和链接Win32动态链接库(DLL),以及如何在其他程序中使用这些DLL。 - **创建和使用MFC DLL**:详细说明了如何创建和使用基于MFC的动态链接库,适用于需要使用MFC类库的场景。 #### 第11章 ATL编程 - **简单的非属性化ATL项目**:讲解了ATL(Active Template Library)的基础使用方法,创建一个不使用属性化组件的简单项目。 - **使用ATL开发COM组件**:详细阐述了使用ATL开发COM组件的步骤,包括创建接口、实现类以及注册组件。 #### 第12章 STL编程 - **list编程**:介绍了STL(标准模板库)中的list容器的使用,讲解了如何使用list实现复杂数据结构的管理。 #### 第13章 网络编程 - **网上聊天应用程序**:提供了实现基本聊天功能的示例代码,包括客户端和服务器的通信逻辑。 - **简单的网页浏览器**:演示了如何创建一个简单的Web浏览器程序,涉及到网络通信和HTML解析。 - **ISAPI服务器扩展编程**:介绍了如何开发ISAPI(Internet Server API)服务器扩展来扩展IIS(Internet Information Services)的功能。 #### 第14章 数据库编程 - **ODBC数据库编程**:解释了ODBC(开放数据库互联)的概念,并提供了使用ODBC API进行数据库访问的示例。 - **ADO编程**:介绍了ADO(ActiveX Data Objects)技术,讲解了如何使用ADO进行数据库的增删改查等操作。 #### 第15章 HTML帮助系统编程 - **创建HTML帮助文件**:讲解了如何创建HTML帮助文件(.chm),这是微软帮助系统的一种形式。 - **区分上下文帮助**:提供了在应用程序中实现上下文敏感帮助的技术示例。 #### 第16章 安装和部署项目 - **用安装程序向导创建安装项目**:介绍了如何使用Visual Studio中的安装和部署项目向导,快速创建安装程序。 - **部署应用程序**:阐述了部署应用程序到目标系统的过程,以及如何确保应用程序的正确安装和运行。 以上内容涵盖了Visual C++.NET编程技术体验一书中涉及的各个技术点,并对每个章节中的示例做了详细的说明。这些知识点对于理解和掌握Visual C++.NET编程非常重要,并能够帮助读者在实际项目开发中应用这些技术。
recommend-type

HarmonyOS内核深度探秘:优化自由行旅游系统的策略

# 1. HarmonyOS内核概述与旅游系统需求分析 ## 1.1 HarmonyOS内核概述 HarmonyOS(鸿蒙操作系统)是由华为开发的一个分布式操作系统,旨在提供跨多种设备的无缝体验。其内核设计理念强调高效、安全和模块化,以微内核架构和分布式能力
recommend-type

tkinter模块所有控件

<think>好的,我现在需要回答用户关于Tkinter模块中所有控件列表的问题。首先,我需要回忆Tkinter的基础知识,确保自己了解各个控件的名称和用途。用户希望得到所有支持的控件列表,所以必须全面覆盖,不能遗漏。 首先,我应该从Tkinter的标准控件开始。常见的控件包括Label、Button、Entry这些基础部件。然后是Frame,用于布局,还有Canvas用于绘图。接下来是Checkbutton、Radiobutton,这些属于选择类控件。Listbox和Scrollbar通常一起使用,处理滚动内容。还有Scale(滑块)、Spinbox、Menu、Menubutton这些可能
recommend-type

局域网五子棋游戏:娱乐与聊天的完美结合

标题“网络五子棋”和描述“适合于局域网之间娱乐和聊天!”以及标签“五子棋 网络”所涉及的知识点主要围绕着五子棋游戏的网络版本及其在局域网中的应用。以下是详细的知识点: 1. 五子棋游戏概述: 五子棋是一种两人对弈的纯策略型棋类游戏,又称为连珠、五子连线等。游戏的目标是在一个15x15的棋盘上,通过先后放置黑白棋子,使得任意一方先形成连续五个同色棋子的一方获胜。五子棋的规则简单,但策略丰富,适合各年龄段的玩家。 2. 网络五子棋的意义: 网络五子棋是指可以在互联网或局域网中连接进行对弈的五子棋游戏版本。通过网络版本,玩家不必在同一地点即可进行游戏,突破了空间限制,满足了现代人们快节奏生活的需求,同时也为玩家们提供了与不同对手切磋交流的机会。 3. 局域网通信原理: 局域网(Local Area Network,LAN)是一种覆盖较小范围如家庭、学校、实验室或单一建筑内的计算机网络。它通过有线或无线的方式连接网络内的设备,允许用户共享资源如打印机和文件,以及进行游戏和通信。局域网内的计算机之间可以通过网络协议进行通信。 4. 网络五子棋的工作方式: 在局域网中玩五子棋,通常需要一个客户端程序(如五子棋.exe)和一个服务器程序。客户端负责显示游戏界面、接受用户输入、发送落子请求给服务器,而服务器负责维护游戏状态、处理玩家的游戏逻辑和落子请求。当一方玩家落子时,客户端将该信息发送到服务器,服务器确认无误后将更新后的棋盘状态传回给所有客户端,更新显示。 5. 五子棋.exe程序: 五子棋.exe是一个可执行程序,它使得用户可以在个人计算机上安装并运行五子棋游戏。该程序可能包含了游戏的图形界面、人工智能算法(如果支持单机对战AI的话)、网络通信模块以及游戏规则的实现。 6. put.wav文件: put.wav是一个声音文件,很可能用于在游戏进行时提供声音反馈,比如落子声。在网络环境中,声音文件可能被用于提升玩家的游戏体验,尤其是在局域网多人游戏场景中。当玩家落子时,系统会播放.wav文件中的声音,为游戏增添互动性和趣味性。 7. 网络五子棋的技术要求: 为了确保多人在线游戏的顺利进行,网络五子棋需要具备一些基本的技术要求,包括但不限于稳定的网络连接、高效的数据传输协议(如TCP/IP)、以及安全的数据加密措施(如果需要的话)。此外,还需要有一个良好的用户界面设计来提供直观和舒适的用户体验。 8. 社交与娱乐: 网络五子棋除了是一个娱乐游戏外,它还具有社交功能。玩家可以通过游戏内的聊天系统进行交流,分享经验和策略,甚至通过网络寻找新的朋友。这使得网络五子棋不仅是一个个人娱乐工具,同时也是一种社交活动。 总结来说,网络五子棋结合了五子棋游戏的传统魅力和现代网络技术,使得不同地区的玩家能够在局域网内进行娱乐和聊天,既丰富了人们的娱乐生活,又加强了人际交流。而实现这一切的基础在于客户端程序的设计、服务器端的稳定运行、局域网的高效通信,以及音效文件增强的游戏体验。
recommend-type

自由行旅游新篇章:HarmonyOS技术融合与系统架构深度解析

# 1. HarmonyOS技术概述 ## 1.1 HarmonyOS的起源与发展 HarmonyOS(鸿蒙操作系统)由华为公司开发,旨在构建全场景分布式OS,以应对不同设备间的互联问题。自从2019年首次发布以来,HarmonyOS迅速成长,并迅速应用于智能手机、平板、智能穿戴、车载设备等多种平台。该系
recommend-type

足底支撑相到达73%是什么问题

<think>好的,我现在要处理用户的问题:“足底支撑相达到73%可能的原因及影响”。首先,需要理解用户提到的“足底支撑相73%”具体指什么。足底支撑相通常指步态周期中脚与地面接触的时间占比,正常范围大约在60%-62%左右。如果达到73%,明显超出正常范围,可能意味着步态异常。 接下来,需要确定可能的原因。可能的原因包括生物力学异常,比如足弓异常(扁平足或高弓足)、踝关节活动度受限,或者肌肉力量不足,特别是小腿和足部肌肉。另外,神经系统疾病如脑卒中或帕金森病可能影响步态控制。骨骼关节问题如关节炎、髋膝关节病变也可能导致支撑时间延长。还有代偿性步态,比如因疼痛或受伤而改变步态模式。 然后是
recommend-type

宾馆预约系统开发与优化建议

宾馆预约系统是一个典型的在线服务应用,它允许用户通过互联网平台预定宾馆房间。这种系统通常包含多个模块,比如用户界面、房态管理、预订处理、支付处理和客户评价等。从技术层面来看,构建一个宾馆预约系统涉及到众多的IT知识和技术细节,下面将详细说明。 ### 标题知识点 - 宾馆预约系统 #### 1. 系统架构设计 宾馆预约系统作为一个完整的应用,首先需要进行系统架构设计,决定其采用的软件架构模式,如B/S架构或C/S架构。此外,系统设计还需要考虑扩展性、可用性、安全性和维护性。一般会采用三层架构,包括表示层、业务逻辑层和数据访问层。 #### 2. 前端开发 前端开发主要负责用户界面的设计与实现,包括用户注册、登录、房间搜索、预订流程、支付确认、用户反馈等功能的页面展示和交互设计。常用的前端技术栈有HTML, CSS, JavaScript, 以及各种前端框架如React, Vue.js或Angular。 #### 3. 后端开发 后端开发主要负责处理业务逻辑,包括用户管理、房间状态管理、订单处理等。后端技术包括但不限于Java (使用Spring Boot框架), Python (使用Django或Flask框架), PHP (使用Laravel框架)等。 #### 4. 数据库设计 数据库设计对系统的性能和可扩展性至关重要。宾馆预约系统可能需要设计的数据库表包括用户信息表、房间信息表、预订记录表、支付信息表等。常用的数据库系统有MySQL, PostgreSQL, MongoDB等。 #### 5. 网络安全 网络安全是宾馆预约系统的重要考虑因素,包括数据加密、用户认证授权、防止SQL注入、XSS攻击、CSRF攻击等。系统需要实现安全的认证机制,比如OAuth或JWT。 #### 6. 云服务和服务器部署 现代的宾馆预约系统可能部署在云平台上,如AWS, Azure, 腾讯云或阿里云。在云平台上,系统可以按需分配资源,提高系统的稳定性和弹性。 #### 7. 付款接口集成 支付模块需要集成第三方支付接口,如支付宝、微信支付、PayPal等,需要处理支付请求、支付状态确认、退款等业务。 #### 8. 接口设计与微服务 系统可能采用RESTful API或GraphQL等接口设计方式,提供服务的微服务化,以支持不同设备和服务的接入。 ### 描述知识点 - 这是我个人自己做的 请大家帮忙修改哦 #### 个人项目经验与团队合作 描述中的这句话暗示了该宾馆预约系统可能是由一个个人开发者创建的。个人开发和团队合作在软件开发流程中有着显著的不同。个人开发者需要关注的方面包括项目管理、需求分析、代码质量保证、测试和部署等。而在团队合作中,每个成员会承担不同的职责,需要有效的沟通和协作。 #### 用户反馈与迭代 描述还暗示了该系统目前处于需要外部反馈和修改的阶段。这表明系统可能还处于开发或测试阶段,需要通过用户的实际使用反馈来不断迭代改进。 ### 标签知识点 - 200 #### 未提供信息 “200”这个标签可能指的是HTTP状态码中表示请求成功(OK)的200状态码。但是,由于没有提供更多的上下文信息,无法进一步分析其在本例中的具体含义。 ### 压缩包子文件的文件名称列表知识点 - 1111 #### 文件命名与管理 “1111”这个文件名称可能是一个版本号、日期标记或者是一个简单的标识符。文件命名应当遵循一定的规则,以确保文件的可追溯性和管理的便利性。在软件开发过程中,合理组织文件和版本控制(如使用Git)是必不可少的。 综上所述,宾馆预约系统的开发是一项复杂的工程,它涉及前后端的开发、数据库设计、系统安全、接口设计等多个方面。开发者在开发过程中需要不断学习和应用各类IT知识,以确保系统能够安全、高效、稳定地运行。而对于个人开发项目,如何合理利用有限资源、高效地管理和优化项目过程也是至关重要的。
recommend-type

HarmonyOS在旅游领域的创新:揭秘最前沿应用实践

# 1. HarmonyOS旅游应用的市场前景分析 随着数字化转型的不断深入,旅游行业正面临着前所未有的变革。在这样的背景下,HarmonyOS作为一种新兴的操作系统,带来了全新的市场前景和机遇。本章将深入分析HarmonyOS在旅游应用领域的市场潜力、用户需求、以及技术创新对旅游体验的改善。 ## 1.1 市场需求与用户画像分析 旅游市场的需求持续增
recommend-type

数据架构师需要具备什么能力

<think>嗯,用户现在转向询问数据架构师的能力要求了,而且特别提到要参考站内引用内容。看来ta正在规划职业方向,可能是个技术岗位的进阶者或转行者。之前对话历史显示用户对技术细节有深度需求(比如C语言底层特性),这次提问虽然跨度大,但延续了“技术职业发展”这条主线。用户引用的三段材料其实很有意思:第一篇强调综合能力,第二篇突出编程基础,第三篇提到商业洞察力——这正好构成数据架构师的三个能力象限。用户给出的引用里埋了个关键矛盾:第二篇说“速成只能做码农”,第三篇说“需要持续学习”,暗示ta可能担心速成班的局限性。回应时得强调“扎实基础+持续成长”的平衡。技术层面需要覆盖三个维度:硬技能(数据库
recommend-type

Java Web应用开发教程:Struts与Hibernate实例解析

在深入探讨所给文件的标题、描述以及标签后,我们可以从中学到关于Struts和Hibernate的知识,以及它们如何在构建基于MVC模式的高效Java Web应用中发挥作用。 **标题解读** 标题中提到了“Struts与Hibernate实用教程”以及“构建基于MVC模式的高效Java Web应用例子代码(8)”,这意味着本教程提供了在开发过程中具体实施MVC架构模式的示例和指导。在这里,MVC(Model-View-Controller)模式作为一种架构模式,被广泛应用于Web应用程序的设计中,其核心思想是将应用分为三个核心组件:模型(Model)、视图(View)和控制器(Controller)。模型负责数据的处理和业务逻辑,视图负责展示数据,而控制器负责处理用户输入以及调用模型和视图去完成业务流程。 **描述解读** 描述部分进一步强调了该教程包含的是具体的例子代码,这些例子是实现高效Java Web应用的一部分,并且教程分成了10个部分。这表明学习者可以通过实际的例子来学习如何使用Struts和Hibernate实现一个基于MVC模式的Web应用。Struts是Apache Software Foundation的一个开源Web应用框架,它采用MVC模式来分离业务逻辑、数据模型和用户界面。Hibernate是一个开源的对象关系映射(ORM)工具,它简化了Java应用与关系数据库之间的交互。 **标签解读** 标签“j2ee,源码”揭示了本教程的适用范围和技术栈。J2EE(Java Platform, Enterprise Edition)是一个用于开发企业级应用的平台,它提供了构建多层企业应用的能力。源码(Source Code)表示本教程将提供代码级别的学习材料,允许学习者查看和修改实际代码来加深理解。 **压缩包子文件的文件名称列表解读** 文件名称列表中的“ch8”表示这一部分教程包含的是第八章节的内容。虽然我们没有更多的章节信息,但可以推断出这是一个系列教程,而每一个章节都可能涵盖了一个具体的例子或者是MVC模式实现中的一个特定部分。 **详细知识点** 在深入探讨了上述概念后,我们可以总结出以下知识点: 1. **MVC模式**: 详细解释MVC模式的设计原理以及在Web应用中的作用,包括如何将应用程序分为模型、视图和控制器三个部分,以及它们之间的交互。 2. **Struts框架**: 介绍Struts框架的基本组件,如Action、ActionForm、ActionServlet等,以及如何在Web应用中使用Struts框架来实现控制器部分的功能。 3. **Hibernate ORM**: 讲解Hibernate如何通过注解或XML配置文件将Java对象映射到数据库表,以及如何使用Hibernate的会话(Session)来管理数据库交互。 4. **Java Web应用开发**: 讲述开发Java Web应用所需要了解的技术,例如Java Servlet、JSP(Java Server Pages)、JavaBeans等。 5. **实际例子**: 分析提供的例子代码,理解如何将Struts和Hibernate集成在真实的Web应用项目中,完成从数据模型到用户界面的全部流程。 6. **代码实践**: 详细解释例子中提供的源代码,理解其背后的逻辑,并能够通过实践加深对代码结构和功能的理解。 7. **企业级应用开发**: 阐述J2EE平台的重要性和它在构建大型、可扩展企业级应用中的优势,以及如何利用J2EE平台上的各种技术。 综上所述,这份教程通过结合Struts和Hibernate框架,并运用MVC设计模式,为Java Web应用开发者提供了一个高效的学习路径。通过例子代码的实践,开发者能够更好地理解如何构建和维护复杂的Web应用。