Gcc can't find header files

Hello,

gcc or clang can not find header files cannot compile .

this is the error I get when I try to compile c source code,

[jimmy@jimmy-pc ~]$ gcc prog1.c
prog1.c:1:10: fatal error: stdio.h: No such file or directory
#include <stdio.h>
^~~~~~~~~
compilation terminated.
[jimmy@jimmy-pc ~]$

looked in /usr/lib64/gcc/x86_64-mandriva-linux-gnu/7.3.0/include/
did not find stdio.h
looked in
/usr/include/c++/7.3.0/tr1/ the stdio.h header there is for c++

do I need to reinstall gcc to get the header files that are missing ?

Nope:

$ rpm -qa | grep gcc
lib64gcc1-7.3.0-3-omv2015.0.x86_64
gcc-cpp-7.3.0-3-omv2015.0.x86_64
gcc-7.3.0-3-omv2015.0.x86_64

But! There are a lot more gcc packages:

$ urpmq --fuzzy gcc
colorgcc
cross-aarch64-mandriva-linux-gnu-gcc
cross-armv7hl-mandriva-linux-gnueabihf-gcc
cross-avr-gcc
cross-avr-gcc-c++
cross-i586-mandriva-linux-gnu-gcc
cross-i686-mandriva-linux-gnu-gcc
gcc
gcc-c++
gcc-cpp
gcc-gfortran
gcc-gnat
gcc-go
gcc-java
gcc-objc
gcc-objc++
gcc-plugin-devel
gccmakedep
gccxml
lib64gcc1
lib64gccpp1
libgcc1
relaxngcc
relaxngcc-javadoc

Edit: You can wait till a developer answers on this forum post which may happen today or may take weeks or you could save a ton of time and ask at #openmandriva-cooker on Freenode IRC. (That is not a criticism of devs it is just the nature of how busy they get.)

Edit2: We like for folks to post code as code in this forum as above in my post. To do so use the </> icon. This does make it easier for people trying to help to be able to tell what is what.

FWIW:

$ urpmq -y

is the same as:

$ urpmq --fuzzy

Sorry for the repeated posts, I’m trying to do several things at the same time.

Another helpful hint is simply to do Internet search of whatever problem you have like in this instance I searched the title of this thread and among other articles is this.

"Where does GCC look to find its header files?

I don’t know if that is in any way helpful to your issue but I know developers do this all the time to find out if a problem has been solved or at least encountered elsewhere.

did online search first but found nothing specific , I already have that page bookmarked.
the only thing I find odd is that on this query

lib64gcc1-7.3.0-omv2015,0x86_64
is installed …but on second

libgcc1 is installed and not lib64gcc1 , when I use the rpmdrake to download lib64gcc1 it has a block on it .
I might have to uinstall one and install the other , unless there are all kinds of dependency issues
let cha know what happens.

Well as you are fond of saying Ben…“Daggummit” !!!
swaping libgcc1 for lib64gcc1 is a major do over !!!

Edit: I was wrong what I posted before. stdio.h is on my system:

$ ls -l /usr/include
...
-rw-r--r--  1 root root   2799 Mar  3 20:38 stdio_ext.h
-rw-r--r--  1 root root  29665 Mar  3 20:38 stdio.h

so installing another package won’t help this. You need to either correct the path in whatever you are using or get you money back.

stdio.h is a very basic include files got C compilation. You might be better trying urpmf --provides stdio.h
Not sure what is going on here. Adding -I<inlcude_file_dir_path> to the command line of gcc will probably fix it.

doesn’t return anything but I know it is in /usr/include
Edit: On my system anyway

You could create a symbolic link to it as well.

This is it from @Colin the command to find that or any other file you are looking for.

$ urpmf stdio.h

run that and you will see what you shall see…

Edit: And these lines show where the file is and what package (glibc-devel) provides it:

glibc-devel:/usr/include/bits/stdio.h
glibc-devel:/usr/include/stdio.h

Edit some more: You already should have glibc-devel if you have gcc.

@jimmyc on #openmandriva-cooker on IRC at Freenode this sugestion:

ben79: Best suggestion “urpmi task-devel”

Edit: Except for @Colin’s posts here all the useful answers came from #openmandriva-cooker on IRC. So let that there be a lesson to all of us…

I searched the entire system , normally it is in /usr/include , but no dice.
I checked open suse on my laptop just out of curiosity and all the correct header files are located there.
the only place I could find stdio.h on machine is /usr/include/c++/7.3.0/tr1/stdio.h
this is for c++ , when I issue the command cpp -v for the c pre processor it lists the paths the for header files
as [jimmy@jimmy-pc ~]$ cpp -v
Using built-in specs.
COLLECT_GCC=cpp
Target: x86_64-mandriva-linux-gnu
Configured with: …/configure --prefix=/usr --libexecdir=/usr/libexec --libdir=/usr/lib64 --with-slibdir=/lib64 --mandir=/usr/share/man --infodir=/usr/share/info --disable-libgcj --with-cloog --with-ppl --enable-cloog-backend=isl --disable-cloog-version-check --disable-isl-version-check --disable-libssp --disable-werror --enable-__cxa_atexit --enable-gold=default --with-plugin-ld=/usr/bin/x86_64-mandriva-linux-gnu-ld --enable-bootstrap --enable-checking=release --enable-gnu-unique-object --with-default-libstdcxx-abi=gcc4-compatible --enable-gnu-indirect-function --with-linker-hash-style=gnu --enable-languages=c,ada,c++,fortran,go,lto,objc,obj-c++ --enable-linker-build-id --enable-plugin --enable-lto --enable-libatomic --enable-threads=posix --enable-shared --enable-static --with-system-zlib --with-bugurl=https://issues.openmandriva.org --host=x86_64-mandriva-linux-gnu --build=x86_64-mandriva-linux-gnu --with-cpu=generic --with-arch_32=i586 --with-multilib-list=m32,m64 --with-multilib-list=m64,m32
Thread model: posix
gcc version 7.3.0 20180125 (OpenMandriva) (GCC)
COLLECT_GCC_OPTIONS=’-E’ ‘-v’ ‘-mtune=generic’ ‘-march=x86-64’
/usr/libexec/gcc/x86_64-mandriva-linux-gnu/7.3.0/cc1 -E -quiet -v - -mtune=generic -march=x86-64
ignoring nonexistent directory “/usr/lib64/gcc/x86_64-mandriva-linux-gnu/7.3.0/include-fixed”
ignoring nonexistent directory “/usr/lib64/gcc/x86_64-mandriva-linux-gnu/7.3.0/…/…/…/…/x86_64-mandriva-linux-gnu/include”
#include “…” search starts here:
#include <…> search starts here:
/usr/lib64/gcc/x86_64-mandriva-linux-gnu/7.3.0/include
/usr/local/include
/usr/include
End of search list.
I checked all of them and found nothing …I don’t think all of the header files were installed .
I will try urpmi task glibc-devel and see what I get

1 Like

It worked …yeaaaaaaa :joy:

GOT: kernel-release-headers-4.15.15-1-omv2015.0.x86_64
GOT: kernel-rc-headers-4.6.0-0.rc7.1-omv2015.0.x86_64
In order to satisfy the ‘kernel-headers’ dependency, one of the following packages is needed:
1- kernel-release-headers-4.15.15-1-omv2015.0.x86_64: Linux kernel header files mostly used by your C library (to install)
2- kernel-rc-headers-4.6.0-0.rc7.1-omv2015.0.x86_64: Linux kernel header files mostly used by your C library (to install)
What is your choice? (1-2) 1
To satisfy dependencies, the following packages are going to be installed:
Package Version Release Dist DEpoch Arch
(medium “main updates”)
glibc-devel 2.27 9 omv 2015.0 x86_64
kernel-release-headers 4.15.15 1 omv 2015.0 x86_64
(medium “contrib”)
task 2.1.2 2 omv 2015.0 x86_64
10MB of additional disk space will be used.
2.9MB of packages will be retrieved.
Proceed with the installation of the 3 packages? (Y/n) y

http://downloads.openmandriva.org/mirrors/openmandriva.3.0.x86_64.list: media/main/updates/kernel-release-headers-4.15.15-1-omv2015.0.x86_64.rpm
http://downloads.openmandriva.org/mirrors/openmandriva.3.0.x86_64.list: media/main/updates/glibc-devel-2.27-9-omv2015.0.x86_64.rpm
http://downloads.openmandriva.org/mirrors/openmandriva.3.0.x86_64.list: media/contrib/release/task-2.1.2-2-omv2015.0.x86_64.rpm

installing glibc-devel-2.27-9-omv2015.0.x86_64.rpm task-2.1.2-2-omv2015.0.x86_64.rpm kernel-release-headers-4.15.15-1-omv2015.0.x86_64.rpm from /var/cache/urpmi/rpms
Preparing… ####################################################################################
1/3: task ####################################################################################
2/3: glibc-devel ####################################################################################
3/3: kernel-release-headers
####################################################################################
gcc is now compiling …!!!

thanks for your suggestion Ben …

that command returned " no package found devel"
but then I tried it with glibc-devel and it worked …I could not find a glibc-devel when using rpmdrake earlier that was my first line of thinking …but anywho …this worked .

1 Like

For What it is Freaking Worth:

  1. Normally to have glibc-devel you get that because you installed some kernel-release-desktop-devel package (or kernel-release-server-devel). So for what you are doing you should be sure you have that which will install some other package like kernel-release-headers. It will make things easier on you to have these. Now I already have all of these but:

  2. There is a package ‘task-devel’ which on my system would install 174 packages in addition to the above mentioned packages. Again you want to be sure you have this for what you are trying to do. It will make things easier on you to have these.

     # urpmi -v task-devel
     ...
     found package(s): task-devel-2015.0-0.2-omv2015.0.x86_64 task-devel-2015.0-0.5-omv2015.0.x86_64
     To satisfy dependencies, the following packages are going to be installed:
      Package                                Version      Release       Dist  DEpoch Arch 
     (medium "main2")
      autoconf                               2.69         15            omv   2015.0 noarch 
      chrpath                                0.15         9             omv   2015.0 x86_64 
      patch                                  2.7.5        2             omv   2015.0 x86_64 
      pkgconfig                              0.29.1       1             omv   2015.0 x86_64 
      python-enchant                         1.6.6        3             omv   2015.0 noarch (suggested)
      python-parsing                         2.1.5        1             omv   2015.0 noarch 
      python2-parsing                        2.1.5        1             omv   2015.0 noarch 
      rpm-build                              5.4.15       40            omv   2015.0 x86_64 
      rpmlint                                1.5          5             omv   2015.0 noarch 
      rpmlint-distro-policy                  0.3.31       7             omv   2015.0 noarch 
     (medium "main updates2")
      automake                               1.15.1       1             omv   2015.0 noarch 
      clang                                  5.0.1        1             omv   2015.0 x86_64 
      elfutils                               0.170        1             omv   2015.0 x86_64 
      gcc-c++                                7.3.0        3             omv   2015.0 x86_64 
      gettext                                0.19.8.1     3             omv   2015.0 x86_64 
      lib64LLVMAArch64AsmParser5             5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMAArch64AsmPrinter5            5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMAArch64CodeGen5               5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMAArch64Desc5                  5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMAArch64Disassembler5          5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMAArch64Info5                  5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMAArch64Utils5                 5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMAMDGPUDisassembler5           5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMARMAsmParser5                 5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMARMAsmPrinter5                5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMARMCodeGen5                   5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMARMDesc5                      5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMARMDisassembler5              5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMARMInfo5                      5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMBPFAsmPrinter5                5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMBPFCodeGen5                   5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMBPFDesc5                      5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMBPFDisassembler5              5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMBPFInfo5                      5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMCoroutines5                   5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMCoverage5                     5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMDebugInfoDWARF5               5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMDebugInfoMSF5                 5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMDebugInfoPDB5                 5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMDemangle5                     5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMDlltoolDriver5                5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMHexagonAsmParser5             5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMHexagonCodeGen5               5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMHexagonDesc5                  5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMHexagonDisassembler5          5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMHexagonInfo5                  5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMInterpreter5                  5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMLTO5                          5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMLanaiAsmParser5               5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMLanaiAsmPrinter5              5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMLanaiCodeGen5                 5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMLanaiDesc5                    5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMLanaiDisassembler5            5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMLanaiInfo5                    5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMLibDriver5                    5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMLineEditor5                   5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMMIRParser5                    5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMMSP430AsmPrinter5             5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMMSP430CodeGen5                5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMMSP430Desc5                   5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMMSP430Info5                   5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMMipsAsmParser5                5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMMipsAsmPrinter5               5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMMipsCodeGen5                  5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMMipsDesc5                     5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMMipsDisassembler5             5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMMipsInfo5                     5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMNVPTXAsmPrinter5              5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMNVPTXCodeGen5                 5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMNVPTXDesc5                    5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMNVPTXInfo5                    5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMObjCARCOpts5                  5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMObjectYAML5                   5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMOption5                       5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMOrcJIT5                       5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMPasses5                       5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMPowerPCAsmParser5             5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMPowerPCAsmPrinter5            5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMPowerPCCodeGen5               5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMPowerPCDesc5                  5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMPowerPCDisassembler5          5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMPowerPCInfo5                  5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMSparcAsmParser5               5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMSparcAsmPrinter5              5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMSparcCodeGen5                 5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMSparcDesc5                    5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMSparcDisassembler5            5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMSparcInfo5                    5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMSymbolize5                    5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMSystemZAsmParser5             5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMSystemZAsmPrinter5            5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMSystemZCodeGen5               5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMSystemZDesc5                  5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMSystemZDisassembler5          5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMSystemZInfo5                  5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMTableGen5                     5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMX86AsmParser5                 5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMXCoreAsmPrinter5              5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMXCoreCodeGen5                 5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMXCoreDesc5                    5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMXCoreDisassembler5            5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMXCoreInfo5                    5.0.1        1             omv   2015.0 x86_64 
      lib64LLVMXRay5                         5.0.1        1             omv   2015.0 x86_64 
      lib64LTO5                              5.0.1        1             omv   2015.0 x86_64 
      lib64clang5                            5.0.1        1             omv   2015.0 x86_64 
      lib64clangARCMigrate5                  5.0.1        1             omv   2015.0 x86_64 
      lib64clangAST5                         5.0.1        1             omv   2015.0 x86_64 
      lib64clangASTMatchers5                 5.0.1        1             omv   2015.0 x86_64 
      lib64clangAnalysis5                    5.0.1        1             omv   2015.0 x86_64 
      lib64clangApplyReplacements5           5.0.1        1             omv   2015.0 x86_64 
      lib64clangBasic5                       5.0.1        1             omv   2015.0 x86_64 
      lib64clangChangeNamespace5             5.0.1        1             omv   2015.0 x86_64 
      lib64clangCodeGen5                     5.0.1        1             omv   2015.0 x86_64 
      lib64clangDaemon5                      5.0.1        1             omv   2015.0 x86_64 
      lib64clangDriver5                      5.0.1        1             omv   2015.0 x86_64 
      lib64clangDynamicASTMatchers5          5.0.1        1             omv   2015.0 x86_64 
      lib64clangEdit5                        5.0.1        1             omv   2015.0 x86_64 
      lib64clangFormat5                      5.0.1        1             omv   2015.0 x86_64 
      lib64clangFrontend5                    5.0.1        1             omv   2015.0 x86_64 
      lib64clangFrontendTool5                5.0.1        1             omv   2015.0 x86_64 
      lib64clangIncludeFixer5                5.0.1        1             omv   2015.0 x86_64 
      lib64clangIncludeFixerPlugin5          5.0.1        1             omv   2015.0 x86_64 
      lib64clangIndex5                       5.0.1        1             omv   2015.0 x86_64 
      lib64clangLex5                         5.0.1        1             omv   2015.0 x86_64 
      lib64clangMove5                        5.0.1        1             omv   2015.0 x86_64 
      lib64clangParse5                       5.0.1        1             omv   2015.0 x86_64 
      lib64clangQuery5                       5.0.1        1             omv   2015.0 x86_64 
      lib64clangReorderFields5               5.0.1        1             omv   2015.0 x86_64 
      lib64clangRewrite5                     5.0.1        1             omv   2015.0 x86_64 
      lib64clangRewriteFrontend5             5.0.1        1             omv   2015.0 x86_64 
      lib64clangSema5                        5.0.1        1             omv   2015.0 x86_64 
      lib64clangSerialization5               5.0.1        1             omv   2015.0 x86_64 
      lib64clangStaticAnalyzerCheckers5      5.0.1        1             omv   2015.0 x86_64 
      lib64clangStaticAnalyzerCore5          5.0.1        1             omv   2015.0 x86_64 
      lib64clangStaticAnalyzerFrontend5      5.0.1        1             omv   2015.0 x86_64 
      lib64clangTidy5                        5.0.1        1             omv   2015.0 x86_64 
      lib64clangTidyAndroidModule5           5.0.1        1             omv   2015.0 x86_64 
      lib64clangTidyBoostModule5             5.0.1        1             omv   2015.0 x86_64 
      lib64clangTidyBugproneModule5          5.0.1        1             omv   2015.0 x86_64 
      lib64clangTidyCERTModule5              5.0.1        1             omv   2015.0 x86_64 
      lib64clangTidyCppCoreGuidelinesModule5 5.0.1        1             omv   2015.0 x86_64 
      lib64clangTidyGoogleModule5            5.0.1        1             omv   2015.0 x86_64 
      lib64clangTidyHICPPModule5             5.0.1        1             omv   2015.0 x86_64 
      lib64clangTidyLLVMModule5              5.0.1        1             omv   2015.0 x86_64 
      lib64clangTidyMPIModule5               5.0.1        1             omv   2015.0 x86_64 
      lib64clangTidyMiscModule5              5.0.1        1             omv   2015.0 x86_64 
      lib64clangTidyModernizeModule5         5.0.1        1             omv   2015.0 x86_64 
      lib64clangTidyPerformanceModule5       5.0.1        1             omv   2015.0 x86_64 
      lib64clangTidyPlugin5                  5.0.1        1             omv   2015.0 x86_64 
      lib64clangTidyReadabilityModule5       5.0.1        1             omv   2015.0 x86_64 
      lib64clangTidyUtils5                   5.0.1        1             omv   2015.0 x86_64 
      lib64clangTooling5                     5.0.1        1             omv   2015.0 x86_64 
      lib64clangToolingCore5                 5.0.1        1             omv   2015.0 x86_64 
      lib64clangToolingRefactor5             5.0.1        1             omv   2015.0 x86_64 
      lib64findAllSymbols5                   5.0.1        1             omv   2015.0 x86_64 
      lib64gettextmisc                       0.19.8.1     3             omv   2015.0 x86_64 
      lib64stdc++-devel                      7.3.0        3             omv   2015.0 x86_64 
      lib64unwind1.0                         5.0.1        1             omv   2015.0 x86_64 
      libgcc1                                7.3.0        3             omv   2015.0 x86_64 
      libstdc++6                             7.3.0        3             omv   2015.0 x86_64 
      libtool-base                           2.4.6        6             omv   2015.0 x86_64 
      llvm                                   5.0.1        1             omv   2015.0 x86_64 
      llvm-polly                             5.0.1        1             omv   2015.0 x86_64 
      m4                                     1.4.18       1             omv   2015.0 x86_64 
      python-appdirs                         1.4.3        1             omv   2015.0 noarch 
      python-magic                           5.32         1             omv   2015.0 noarch 
      python-packaging                       16.8         4             omv   2015.0 noarch 
      python-pkg-resources                   34.3.1       3             omv   2015.0 noarch 
      python2-appdirs                        1.4.3        1             omv   2015.0 noarch 
      python2-packaging                      16.8         4             omv   2015.0 noarch 
      python2-pkg-resources                  34.3.1       3             omv   2015.0 noarch 
      python2-six                            1.11.0       1             omv   2015.0 noarch 
      spec-helper                            0.31.44.1    1             omv   2015.0 noarch 
      task-devel                             2015.0       0.5           omv   2015.0 x86_64 
     188MB of additional disk space will be used.
     36MB of packages will be retrieved.
     Proceed with the installation of the 174 packages? (Y/n)

I think the last time I did not put the hyphen in the command " task-devel " …you know how everything is case sensitive …well this time it found all that …thanks for the info :+1:

gonna write some C code now just because I haven’t done so in a while …oh I found an open source COBOL
compiler to play around with too…going down memory lane …LOL
have a good one.

1 Like

Good luck, and let us know how goes.

When it comes to making mistakes and missing things I’m a champ myself…
:smiling_imp: