ultimatepp/bazaar/Xed/xed
micio 976adf1b80 Bazaar/Xed : added Intel X86 Encoder Decoder Software Library
git-svn-id: svn://ultimatepp.org/upp/trunk@11980 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2018-06-06 10:47:28 +00:00
..
generated Bazaar/Xed : added Intel X86 Encoder Decoder Software Library 2018-06-06 10:47:28 +00:00
include Bazaar/Xed : added Intel X86 Encoder Decoder Software Library 2018-06-06 10:47:28 +00:00
src Bazaar/Xed : added Intel X86 Encoder Decoder Software Library 2018-06-06 10:47:28 +00:00
.gitignore Bazaar/Xed : added Intel X86 Encoder Decoder Software Library 2018-06-06 10:47:28 +00:00
.travis.yml Bazaar/Xed : added Intel X86 Encoder Decoder Software Library 2018-06-06 10:47:28 +00:00
LICENSE Bazaar/Xed : added Intel X86 Encoder Decoder Software Library 2018-06-06 10:47:28 +00:00
README.md Bazaar/Xed : added Intel X86 Encoder Decoder Software Library 2018-06-06 10:47:28 +00:00
VERSION Bazaar/Xed : added Intel X86 Encoder Decoder Software Library 2018-06-06 10:47:28 +00:00

Intel X86 Encoder Decoder (Intel XED)

Doxygen API manual and source build manual:

https://intelxed.github.io

Bugs:

Intel internal employee users/developers:

http://mjc.intel.com

Everyone else:

https://github.com/intelxed/xed/issues/new

Abbreviated building instructions:

git clone https://github.com/intelxed/xed.git xed
git clone https://github.com/intelxed/mbuild.git mbuild
cd xed
./mfile.py

then get your libxed.a from the obj directory. Add " --shared" if you want a shared object build. Add " install" if you want the headers & libraries put in to a kit in the "kits" directory. Add "C:/python27/python " before "./mfile.py" if on windows.

How to build the examples:

There are two options:

  1. When building libxed you can also build the examples, from the main directory (above examples):

    ./mfile.py examples

and the compiled examples will be in obj/examples.

  1. Build a compiled "kit" and the build the examples from within the kit:

    ./mfile.py install cd kits cd cd examples ./mfile.py

See source build documentation for more information.

Binary size?

Concerned about large libraries or binaries? There are several options:

  1. Consider building with "--limit-strings"
  2. Strip the binaries
  3. Consider doing an encoder-only or decoder-only build if you only need one or the other.