[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Illegal instruction....
From: |
Martin Burnicki |
Subject: |
Re: Illegal instruction.... |
Date: |
Tue, 26 May 2020 11:01:46 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.8.0 |
David,
David J Taylor wrote:
[...]
> Trying a very simple program:
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> #include <gps.h>
> #include <stdio.h>
> #include <string.h>
>
> int main (int argc, char **argv) {
> struct gps_data_t gpsdata;
>
> #if GPSD_API_MAJOR_VERSION >= 7
> printf ("GPSD API >= 7");
> #else
> printf ("GPSD API < 7");
> #endif
> return 0;
> }
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> Also produces the "illegal instruction". I seem to have three include
> files so how can I force the use of the more recent one?
This doesn't sound like the version of the include file is the problem,
and "illegal instruction" is not related to the API version but to the
machine code compiled from that source code.
If my assumption is correct you should also get the "illegal
instruction" if you remove the line
#include <gps.h>
and add one of the following instead:
#define GPSD_API_MAJOR_VERSION 6
#define GPSD_API_MAJOR_VERSION 8
> I thought
> compiling in the /home/pi/gpsd directory might do that, but I recall
> there being something about different include file locations - system
> and local? I wonder how the build of gpsd got it right! Changing
> <gps.h> to "gps.h" while compiling in the gpsd directory still produced
> the illegal instruction.
how do you compile the program? Using a single command line, or is there
a Makefile?
Martin
- Illegal instruction...., David J Taylor, 2020/05/25
- Re: Illegal instruction...., Martin Burnicki, 2020/05/25
- Re: Illegal instruction...., David J Taylor, 2020/05/25
- Re: Illegal instruction...., Gary E. Miller, 2020/05/25
- Re: Illegal instruction...., Paul Theodoropoulos, 2020/05/25
- Re: Illegal instruction...., David J Taylor, 2020/05/26
- Re: Illegal instruction....,
Martin Burnicki <=
- Re: Illegal instruction...., David J Taylor, 2020/05/26
- Re: Illegal instruction...., Martin Burnicki, 2020/05/26
- Re: Illegal instruction...., David J Taylor, 2020/05/26
- Re: Illegal instruction...., Gary E. Miller, 2020/05/26
- Re: Illegal instruction...., David J Taylor, 2020/05/26
- Re: Illegal instruction...., Gary E. Miller, 2020/05/26
- Re: Illegal instruction...., David J Taylor, 2020/05/27
- Re: Illegal instruction...., Bryan Christianson, 2020/05/27
- Re: Illegal instruction...., David J Taylor, 2020/05/27
- Re: Illegal instruction...., Charles Curley, 2020/05/27