Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.26 KB

tools.md

File metadata and controls

28 lines (20 loc) · 1.26 KB

Building ACE tools

ACE comes bundled with its own tools for converting file formats. Since those apps run on your development machine and not the Amiga itself, to build them, you'll need a compiler for your operating system.

To build your tools, open the terminal, navigate to ACE's tools directory, and issue following commands:

mkdir build && cd build

# When using MacOS (to avoid Clang) - assuming you have: brew install gcc@13
export CC=/usr/local/bin/gcc-13
export CXX=/usr/local/bin/g++-13

# When using GCC on Linux, MacOS or MSVC on Windows:
cmake ..
# When using MinGW GCC on Windows:
cmake .. -G "MinGW Makefiles"

cmake --build .

When done successfully, you should now have tools/bin directory with ACE tool executables. If you're stuck by issuing wrong commands, navigate out of build folder, delete it and try again.