This website requires JavaScript.
Explore
Help
Register
Sign In
luke
/
yosys
mirror of
https://github.com/YosysHQ/yosys.git
Watch
1
Star
0
Fork
You've already forked yosys
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
8893dadc4b
yosys
/
misc
/
__init__.py
6 lines
94 B
Python
Raw
Normal View
History
Unescape
Escape
changed dlopen flags to support plugins
2018-10-25 16:19:22 +02:00
import
os
import
sys
sys
.
setdlopenflags
(
os
.
RTLD_NOW
|
os
.
RTLD_GLOBAL
)
added all variable in __init__.py to allow importing of the whole module
2018-10-25 16:32:28 +02:00
__all__
=
[
"
libyosys
"
]