Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions backend/coreapp/compilers.py
Original file line number Diff line number Diff line change
Expand Up @@ -927,6 +927,15 @@ def available_platforms() -> list[Platform]:
cc='USR_LIB="${COMPILER_DIR}" "${COMPILER_DIR}/cc" -c -Xcpluscomm -G0 -non_shared -Wab,-r4300_mul -woff 649,838,712 -32 ${COMPILER_FLAGS} -o "${OUTPUT}" "${INPUT}"',
)

IDO71_IRIX4 = IDOCompiler(
id="ido7.1_irix4",
platform=N64,
base_compiler=IDO71,
cc='"${COMPILER_DIR}/cc-irix4"'
' --frontend "${COMPILER_DIR}/../ido4.1" --backend "${COMPILER_DIR}"'

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Have you tested this? I was (am?) expecting the ido 7.1 bundle to include irix4 along with qemu-irix and whatever else is required, maybe ../ works but it would need testing to confirm..

' -c ${COMPILER_FLAGS} -o "${OUTPUT}" "${INPUT}"',
)

IDO71_CXX = IDOCompiler(
id="ido7.1_c++",
platform=N64,
Expand Down Expand Up @@ -1845,6 +1854,7 @@ def available_platforms() -> list[Platform]:
IDO53_CXX,
IDO60,
IDO71,
IDO71_IRIX4,
IDO71_CXX,
MIPS_PRO_744,
GCC272KMC,
Expand Down
1 change: 1 addition & 0 deletions frontend/src/lib/i18n/locales/en/compilers.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
"ido5.3_c++": "IDO 5.3 C++",
"ido5.3Pascal": "IDO 5.3 Pascal",
"ido7.1": "IDO 7.1",
"ido7.1_irix4": "IDO 7.1 (IRIX 4 frontend)",
"ido7.1_c++": "IDO 7.1 C++",
"ido7.1Pascal": "IDO 7.1 Pascal",

Expand Down