Skip to content

Commit 333704a

Browse files
committed
ADDITIONAL_GDS_FILES is a mis-spelling og ADDITIONAL_GDS
ADDITIONAL_LEFS/LIBS sets the precedence Signed-off-by: Øyvind Harboe <[email protected]>
1 parent 547194a commit 333704a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

flow/designs/sky130hd/chameleon/config.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export CORE_AREA = 20 20 2900 3500
3434

3535
export chameleon_DIR = ./designs/$(PLATFORM)/$(DESIGN_NICKNAME)
3636

37-
export ADDITIONAL_GDS_FILES = $(chameleon_DIR)/gds/apb_sys_0.gds.gz \
37+
export ADDITIONAL_GDS = $(chameleon_DIR)/gds/apb_sys_0.gds.gz \
3838
$(chameleon_DIR)/gds/DMC_32x16HC.gds.gz \
3939
$(chameleon_DIR)/gds/DFFRAM_4K.gds.gz \
4040
$(chameleon_DIR)/gds/ibex_wrapper.gds.gz

flow/designs/sky130hd/microwatt/config.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export ABC_CLOCK_PERIOD_IN_PS = 25000
1717

1818
export microwatt_DIR = ./designs/$(PLATFORM)/$(DESIGN_NICKNAME)
1919

20-
export ADDITIONAL_GDS_FILES = $(wildcard $(microwatt_DIR)/gds/*.gds.gz)
20+
export ADDITIONAL_GDS = $(wildcard $(microwatt_DIR)/gds/*.gds.gz)
2121

2222
export ADDITIONAL_LEFS = $(wildcard $(microwatt_DIR)/lef/*.lef)
2323

flow/platforms/sky130hd/config.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export SC_LEF = $(PLATFORM_DIR)/lef/sky130_fd_sc_hd_merged.lef
1010
export LIB_FILES = $(PLATFORM_DIR)/lib/sky130_fd_sc_hd__tt_025C_1v80.lib \
1111
$(ADDITIONAL_LIBS)
1212
export GDS_FILES = $(wildcard $(PLATFORM_DIR)/gds/*.gds) \
13-
$(ADDITIONAL_GDS_FILES)
13+
$(ADDITIONAL_GDS)
1414

1515
# Dont use cells to ease congestion
1616
# Specify at least one filler cell if none

flow/platforms/sky130hs/config.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export SC_LEF = $(PLATFORM_DIR)/lef/sky130_fd_sc_hs_merged.lef
1010
export LIB_FILES = $(PLATFORM_DIR)/lib/sky130_fd_sc_hs__tt_025C_1v80.lib \
1111
$(ADDITIONAL_LIBS)
1212
export GDS_FILES = $(wildcard $(PLATFORM_DIR)/gds/*.gds) \
13-
$(ADDITIONAL_GDS_FILES)
13+
$(ADDITIONAL_GDS)
1414

1515
# Dont use cells to ease congestion
1616
# Specify at least one filler cell if none

flow/scripts/sc/util/parse_target_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def parse(chip, platform):
7272

7373
# Convert source files to absolute paths b/c sc commands run in a different build dir.
7474
abs_sources = ['VERILOG_INCLUDE_DIRS', 'ADDITIONAL_LEFS', 'ADDITIONAL_LIBS',
75-
'LIB_FILES', 'ADDITIONAL_GDS_FILES', 'MACRO_PLACEMENT']
75+
'LIB_FILES', 'ADDITIONAL_GDS', 'MACRO_PLACEMENT']
7676
for skey in abs_sources:
7777
if skey in config.keys():
7878
src_list = [os.path.abspath(vf) for vf in config[skey].split()]

0 commit comments

Comments
 (0)