diff --git a/project/property-schema.json b/project/property-schema.json index 9a8091d..34c1ebf 100644 --- a/project/property-schema.json +++ b/project/property-schema.json @@ -200,22 +200,7 @@ "xc7z035ffg676-2", "xc7z020clg484-1" ] - }, - "iverilogCompileOptions": { - "type": "object", - "description": "options to define iverilog arguments", - "properties": { - "standard": { - "type": "string", - "description": "value of argument -g, default is -g2012", - "default": "2012" - }, - "includes": { - "type": "array", - "description": "value of argument -I" - } - } - } + } }, "required": [ "toolChain", diff --git a/src/hdlParser/core.ts b/src/hdlParser/core.ts index 52fc71a..93d0ac9 100644 --- a/src/hdlParser/core.ts +++ b/src/hdlParser/core.ts @@ -480,8 +480,6 @@ class HdlParam { return; } - console.log('fast:', fast); - // 1. 更新 macro moduleFile.updateMacro(fast.macro); diff --git a/src/monitor/hdl.ts b/src/monitor/hdl.ts index 48c5aad..2bcf7ff 100644 --- a/src/monitor/hdl.ts +++ b/src/monitor/hdl.ts @@ -105,6 +105,7 @@ export class HdlAction extends BaseAction { // 更新 hdl 文件 const fast = await LspClient.DigitalIDE?.sendRequest(SyncFastRequestType, { path, fileType, toolChain }) if (fast) { + console.log('update includes:', fast.macro.includes); hdlParam.updateFast(path, fast); }