vpiTriumph
vpiTriumph

Reputation: 3166

SLIME compilation failing with only warnings

I have a program I'm trying to compile using SLIME and I am getting a Compilation failed. message even though my only compiler notes are all warnings.

The code compiles (with the same set of warnings) if I highlight it in its entirety and go to the menu option SLIME > Compilation > Compile Region but Compile File (C-c M-k) fails.

I suspect there is some sort of trigger or command I need to toggle to instruct SLIME to ignore warnings. Any ideas?

Upvotes: 2

Views: 461

Answers (1)

Matthias Benkard
Matthias Benkard

Reputation: 15769

The kind of warnings you get is relevant. compile-file is specified to signify failure whenever compilation triggers a condition “of type error or warning (other than style-warning)”. What a Common Lisp compiler calls a warning (as opposed to a style warning) is usually something that needs fixing.

Upvotes: 6

Related Questions