You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
James 188309fc41
fedw
3 years ago
..
README.txt fedw 3 years ago
avltree.c fedw 3 years ago
avltree.h fedw 3 years ago
mfile.py fedw 3 years ago
udhelp.H fedw 3 years ago
udhelp.cpp fedw 3 years ago
xed-asmparse-main.c fedw 3 years ago
xed-asmparse.c fedw 3 years ago
xed-asmparse.h fedw 3 years ago
xed-dec-print.c fedw 3 years ago
xed-disas-elf.c fedw 3 years ago
xed-disas-elf.h fedw 3 years ago
xed-disas-filter.c fedw 3 years ago
xed-disas-filter.h fedw 3 years ago
xed-disas-hex.c fedw 3 years ago
xed-disas-hex.h fedw 3 years ago
xed-disas-macho.c fedw 3 years ago
xed-disas-macho.h fedw 3 years ago
xed-disas-pecoff.cpp fedw 3 years ago
xed-disas-pecoff.h fedw 3 years ago
xed-disas-raw.c fedw 3 years ago
xed-disas-raw.h fedw 3 years ago
xed-dll-discovery.c fedw 3 years ago
xed-dot-prep.c fedw 3 years ago
xed-dot-prep.h fedw 3 years ago
xed-dot.c fedw 3 years ago
xed-dot.h fedw 3 years ago
xed-enc-lang.c fedw 3 years ago
xed-enc-lang.h fedw 3 years ago
xed-enc2-1.c fedw 3 years ago
xed-enc2-2.c fedw 3 years ago
xed-enc2-3.c fedw 3 years ago
xed-ex-agen.c fedw 3 years ago
xed-ex-cpuid.c fedw 3 years ago
xed-ex-ild.c fedw 3 years ago
xed-ex-ild2.c fedw 3 years ago
xed-ex1.c fedw 3 years ago
xed-ex3.c fedw 3 years ago
xed-ex4.c fedw 3 years ago
xed-ex5-enc.c fedw 3 years ago
xed-ex6.c fedw 3 years ago
xed-ex7.c fedw 3 years ago
xed-ex8.c fedw 3 years ago
xed-ex9-patch.c fedw 3 years ago
xed-examples-util.c fedw 3 years ago
xed-examples-util.h fedw 3 years ago
xed-find-special.c fedw 3 years ago
xed-min.c fedw 3 years ago
xed-nm-symtab.c fedw 3 years ago
xed-nm-symtab.h fedw 3 years ago
xed-rc-template.txt fedw 3 years ago
xed-reps.c fedw 3 years ago
xed-size.c fedw 3 years ago
xed-symbol-table.c fedw 3 years ago
xed-symbol-table.h fedw 3 years ago
xed-tables.c fedw 3 years ago
xed-tester.c fedw 3 years ago
xed.c fedw 3 years ago
xed_build_common.py fedw 3 years ago
xed_examples_mbuild.py fedw 3 years ago

README.txt

# BEGIN_LEGAL
#
# Copyright (c) 2021 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# END_LEGAL


To build the examples, a relatively recent version of python 2.7 is required.

================================
STATIC LIBRARY XED BUILD:
================================

Linux or Mac:

% ./mfile.py

Windows:

% C:/python27/python mfile.py

================================
DYNAMIC LIBRARY XED BUILD:
================================

If you have a a shared-object (or DLL build on windows) you must also include
"--shared" on the command line:

Linux or Mac:

% ./mfile.py --shared

Windows:

% C:/python27/python mfile.py --shared

Add "--help" (no quotes) for more build options.