You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We released a package recently for a technology that contains an xsection script. I couldn't find any documentation on where these files should be placed, but looked at the code and see it's looking for an 'xsect' folder in the base path. I have structured our package this way, but xsection still can't activate the technology.
Hi @calebjordan,
I faced the same issue on Windows. Seems a slash/backslash issue with the paths. I thought ruby would handle it but seems not to be the case.
I changed line 99 of https://github.com/klayoutmatthias/xsection/blob/master/src/ruby/xsection_script.rb from: xsect_fileglob = File.join(xsect_dir, '*.xs')
to xsect_fileglob = File.join(xsect_dir, '*.xs').gsub('\\','/')
Then the glob method works well. Maybe it could be added in a new release.
We released a package recently for a technology that contains an xsection script. I couldn't find any documentation on where these files should be placed, but looked at the code and see it's looking for an 'xsect' folder in the base path. I have structured our package this way, but xsection still can't activate the technology.
Any ideas what I'm doing wrong?
https://github.com/seeqc/qc_1ka_pdk
Thanks!
The text was updated successfully, but these errors were encountered: