Skip to content

Commit

Permalink
Update development.md to UTF-8
Browse files Browse the repository at this point in the history
not sure why but previous commit was windows-1252 file encoding for development.md.
  • Loading branch information
sayanshaw24 authored Aug 4, 2023
1 parent a2de5c6 commit 821a347
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/extensions/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ description: Instructions for building and developing ORT Extensions.
parent: Extensions
nav_order: 2
---

# Build and Development

This project supports Python and can be built from source easily, or a simple cmake build without Python dependency.
Expand Down Expand Up @@ -35,7 +34,7 @@ Use `./tools/android/build_aar.py` to build an Android AAR package.
Use `./tools/ios/build_xcframework.py` to build an iOS xcframework package.

## Web-Assembly
ONNXRuntime-Extensions will be built as a static library and linked with ONNXRuntime due to the lack of a good dynamic linking mechanism in WASM. Here are two additional arguments [–-use_extensions and --extensions_overridden_path](https://github.com/microsoft/onnxruntime/blob/860ba8820b72d13a61f0d08b915cd433b738ffdc/tools/ci_build/build.py#L416) on building onnxruntime to include ONNXRuntime-Extensions footprint in the ONNXRuntime package.
ONNXRuntime-Extensions will be built as a static library and linked with ONNXRuntime due to the lack of a good dynamic linking mechanism in WASM. Here are two additional arguments [–-use_extensions and --extensions_overridden_path](https://github.com/microsoft/onnxruntime/blob/860ba8820b72d13a61f0d08b915cd433b738ffdc/tools/ci_build/build.py#L416) on building onnxruntime to include ONNXRuntime-Extensions footprint in the ONNXRuntime package.

## The C++ shared library
for any other cases, please run `build.bat` or `bash ./build.sh` to build the library. By default, the DLL or the library will be generated in the directory `out/<OS>/<FLAVOR>`. There is a unit test to help verify the build.
Expand All @@ -48,7 +47,8 @@ If you want to build the binary with VC Runtime static linkage, please add a par
check this link https://docs.opensource.microsoft.com/releasing/general-guidance/copyright-headers/ for source file copyright header.

## Dependencies
The matrix below lists the versions of individual dependencies of onxxruntime-extensions. These are the configurations that are routinely and extensively verified by our CI.

The matrix below lists the versions of individual dependencies of onnxruntime-extensions. These are the configurations that are routinely and extensively verified by our CI.

Python | 3.8 | 3.9 | 3.10 | 3.11 |
---|---|---|---|---
Expand Down

0 comments on commit 821a347

Please sign in to comment.