Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » C / C++ IDE (CDT) » CDT builder fails 2023-09 (4.29.0)(CDT builder fails)
CDT builder fails 2023-09 (4.29.0) [message #1861711] Mon, 30 October 2023 12:59 Go to next message
trampas Mising name is currently offline trampas Mising nameFriend
Messages: 44
Registered: July 2009
Member
I just reinstalled PC and updated to latest eclipse. Install xpacks for the cross gcc and windows build tool, still not sure why I have to install xpacks independent of eclipse when embedded CDT is dependent on it.

Anyway open project and hit "project build" was shocked to see the following errors:
08:52:48 **** Incremental Build of configuration Debug for project ultrasound ****
make -j24 all
make: unknown option -- jobserver-auth=gmake_semaphore_14412
BusyBox v1.36.0.git (2023-01-29 16:36:13 UTC)

Usage: make [--posix] [-C DIR] [-f FILE] [j NUM] [-eiknpqrsSt] [MACRO[::]=VAL]... [TARGET]...

Maintain files based on their dependencies

--posix Enforce POSIX mode
-C DIR Change to DIR
-f FILE Makefile
-j NUM Jobs to run in parallel (not implemented)
-e Environment variables override macros in makefiles
-i Ignore exit status
-k Continue on error
-n Dry run
-p Print macros and targets
-q Query target; exit status 1 if not up to date
-r Don't use built-in rules
-s Make silently
-S Stop on error
-t Touch files instead of making them
make: *** [makefile:105: all] Error 1
"make -j24 all" terminated with exit code 2. Build might be incomplete.

Seems that that the CDT builder is now broken...
Re: CDT builder fails 2023-09 (4.29.0) [message #1861712 is a reply to message #1861711] Mon, 30 October 2023 13:12 Go to previous messageGo to next message
trampas Mising name is currently offline trampas Mising nameFriend
Messages: 44
Registered: July 2009
Member
I found out that the problem appears to be with xPacks build tools. Specifically version 4.3.0-1.1 of the build tools 'make' work where 4.4.0-1.1 does not
Re: CDT builder fails 2023-09 (4.29.0) [message #1861855 is a reply to message #1861712] Wed, 08 November 2023 08:52 Go to previous message
Charlotte Filemdar is currently offline Charlotte FilemdarFriend
Messages: 4
Registered: October 2023
Junior Member
The error message "make: unknown option -- jobserver-auth=gmake_semaphore_14412" suggests that there's an issue with the make command used by Eclipse CDT Builder. This could be due to a compatibility issue between the version of make installed on your system and the version expected by Eclipse CDT Builder.

To resolve this issue, you can try the following steps:

Verify make version: Check the version of make installed on your system. Open a terminal window and type make -v. If the installed version is not compatible with Eclipse CDT Builder, you may need to install a version that is compatible.

Update Eclipse CDT Builder: Check for updates to Eclipse CDT Builder. Open Eclipse, go to Help > Check for Updates, and install any available updates. This might include updates to the make command used by CDT Builder.

Clean and rebuild the project: Try cleaning and rebuilding the project in Eclipse. This can sometimes resolve inconsistencies with the project's build files. Right-click on the project in the Package Explorer and select Clean. Then, right-click on the project again and select Build Project.

Check environment variables: Ensure that any required environment variables are set correctly. Some projects may require specific environment variables to be set for the build process to succeed. Check the project's documentation or consult with the project's developers for any specific environment variable requirements.

Inspect makefile: Check the project's Makefile for any errors or inconsistencies. The error message "make: *** [makefile:105: all] Error 1" indicates that there's an error in the Makefile at line 105. Review the Makefile and try to identify and https://omglz.com correct any errors.

Seek community support: If the issue persists, consider seeking help from the Eclipse CDT Builder community or the project's developers. There may be known issues or specific workarounds related to this error.

Remember to save your work before making any changes to the Makefile or other project files.

[Updated on: Tue, 20 February 2024 11:46]

Report message to a moderator

Previous Topic:Adding an alias to CDT Build Console (MacOS)
Next Topic:How to Efficiently Sort a Large Array of Structs in C?
Goto Forum:
  


Current Time: Mon Jan 20 03:42:03 GMT 2025

Powered by FUDForum. Page generated in 0.04734 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top