Install wasm libraries in `INSTALL/lib` directory.
The default detected libdir is based on the build architecture. On ubuntu, it is `lib/x86_64-linux-gnu` which is obviously not the right directory. Let's simply use `lib`. Fix #556
This commit is contained in:
parent
45767044f0
commit
6181d7bb08
|
@ -9,6 +9,7 @@ class WasmPlatformInfo(PlatformInfo):
|
||||||
static = True
|
static = True
|
||||||
build = 'wasm'
|
build = 'wasm'
|
||||||
arch_full = 'wasm64-emscripten'
|
arch_full = 'wasm64-emscripten'
|
||||||
|
libdir = "lib"
|
||||||
#arch_full = 'wasm64-linux'
|
#arch_full = 'wasm64-linux'
|
||||||
toolchain_names = ['emsdk']
|
toolchain_names = ['emsdk']
|
||||||
compatible_hosts = ['fedora', 'debian']
|
compatible_hosts = ['fedora', 'debian']
|
||||||
|
|
Loading…
Reference in New Issue