File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -124,6 +124,9 @@ object StdBits {
124
124
)
125
125
.value
126
126
val extractPrefix = " nu/pattern/opencv"
127
+
128
+ // Make sure that the native libs in the `lib` directory complies with
129
+ // `org.enso.interpreter.runtime.NativeLibraryFinder`
127
130
def renameFunc (entryName : String ): Option [String ] = {
128
131
val strippedEntryName = entryName.substring(extractPrefix.length + 1 )
129
132
if (
@@ -135,11 +138,15 @@ object StdBits {
135
138
} else {
136
139
Some (
137
140
strippedEntryName
138
- .replace(" osx" , " macos" )
139
- .replace(" x86_64" , " amd64" )
141
+ .replace(" linux/x86_64" , " amd64/linux" )
142
+ .replace(" windows/x86_64" , " amd64/windows" )
143
+ .replace(" windows/x86_32" , " x86_32/windows" )
144
+ .replace(" osx/ARMv8" , " ARMv8/macos" )
145
+ .replace(" osx/x86_64" , " amd64/macos" )
140
146
)
141
147
}
142
148
}
149
+
143
150
val logger = streams.value.log
144
151
val openCvJar = JPMSUtils
145
152
.filterModulesFromUpdate(
You can’t perform that action at this time.
0 commit comments