Skip to content

Instantly share code, notes, and snippets.

@prateek-khandelwal
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save prateek-khandelwal/e0acef5676daa17655ff to your computer and use it in GitHub Desktop.
Save prateek-khandelwal/e0acef5676daa17655ff to your computer and use it in GitHub Desktop.
Make output for ProjectManager
[prateek@prime ProjectManager-0.2]$ make
This is gnustep-make 2.6.6. Type 'make print-gnustep-make-help' for help.
Making all for app ProjectManager...
Creating ProjectManager.app/....
Compiling file NSArrayAdditions.m ...
Compiling file SourceEditorDocument.m ...
SourceEditorDocument.m: In function ‘FindDelimiterInString’:
SourceEditorDocument.m:167:9: warning: large integer implicitly truncated to unsigned type [-Woverflow]
return NSNotFound;
^
SourceEditorDocument.m:193:9: warning: large integer implicitly truncated to unsigned type [-Woverflow]
return NSNotFound;
^
SourceEditorDocument.m: In function ‘-[SourceEditorDocument(Private) computeNewParenthesisNesting]’:
SourceEditorDocument.m:356:22: warning: comparison is always true due to limited range of data type [-Wtype-limits]
if (result != NSNotFound)
^
SourceEditorDocument.m: In function ‘-[SourceEditorDocument readFromFile:ofType:]’:
SourceEditorDocument.m:435:1: warning: unused parameter ‘fileType’ [-Wunused-parameter]
{
^
SourceEditorDocument.m: In function ‘-[SourceEditorDocument writeToFile:ofType:]’:
SourceEditorDocument.m:451:1: warning: unused parameter ‘fileType’ [-Wunused-parameter]
{
^
SourceEditorDocument.m: In function ‘-[SourceEditorDocument awakeFromNib]’:
SourceEditorDocument.m:496:27: error: ‘NSLigatureAttributeName’ undeclared (first use in this function)
forKey: NSLigatureAttributeName];
^
SourceEditorDocument.m:496:27: note: each undeclared identifier is reported only once for each function it appears in
SourceEditorDocument.m:527:51: error: ‘NSParagraphStyleAttributeName’ undeclared (first use in this function)
paraStyle = [[[typingAttributes objectForKey: NSParagraphStyleAttributeName]
^
SourceEditorDocument.m: In function ‘-[SourceEditorDocument customPipeOutput:]’:
SourceEditorDocument.m:600:1: warning: unused parameter ‘sender’ [-Wunused-parameter]
{
^
SourceEditorDocument.m: In function ‘-[SourceEditorDocument goToLine:]’:
SourceEditorDocument.m:633:1: warning: unused parameter ‘sender’ [-Wunused-parameter]
{
^
SourceEditorDocument.m: In function ‘-[SourceEditorDocument textViewDidChangeSelection:]’:
SourceEditorDocument.m:669:1: warning: unused parameter ‘notification’ [-Wunused-parameter]
{
^
SourceEditorDocument.m: In function ‘-[SourceEditorDocument textDidChange:]’:
SourceEditorDocument.m:686:1: warning: unused parameter ‘notif’ [-Wunused-parameter]
{
^
SourceEditorDocument.m: In function ‘-[SourceEditorDocument editorTextViewWillPressKey:]’:
SourceEditorDocument.m:697:1: warning: unused parameter ‘sender’ [-Wunused-parameter]
{
^
SourceEditorDocument.m: In function ‘-[SourceEditorDocument editorTextViewDidPressKey:]’:
SourceEditorDocument.m:702:1: warning: unused parameter ‘sender’ [-Wunused-parameter]
{
^
SourceEditorDocument.m: In function ‘-[SourceEditorDocument findNext:]’:
SourceEditorDocument.m:709:1: warning: unused parameter ‘sender’ [-Wunused-parameter]
{
^
SourceEditorDocument.m: In function ‘-[SourceEditorDocument findPrevious:]’:
SourceEditorDocument.m:714:1: warning: unused parameter ‘sender’ [-Wunused-parameter]
{
^
SourceEditorDocument.m: In function ‘-[SourceEditorDocument jumpToSelection:]’:
SourceEditorDocument.m:719:1: warning: unused parameter ‘sender’ [-Wunused-parameter]
{
^
/usr/share/GNUstep/Makefiles/rules.make:468: recipe for target 'obj/ProjectManager.obj/SourceEditorDocument.m.o' failed
make[3]: *** [obj/ProjectManager.obj/SourceEditorDocument.m.o] Error 1
/usr/share/GNUstep/Makefiles/Instance/application.make:145: recipe for target 'internal-app-run-compile-submake' failed
make[2]: *** [internal-app-run-compile-submake] Error 2
/usr/share/GNUstep/Makefiles/Master/rules.make:298: recipe for target 'ProjectManager.all.app.variables' failed
make[1]: *** [ProjectManager.all.app.variables] Error 2
/usr/share/GNUstep/Makefiles/Master/application.make:38: recipe for target 'internal-all' failed
make: *** [internal-all] Error 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment