About 9 results
Open links in new tab
  1. /usr/bin/ld: cannot find -lfl - Unix & Linux Stack Exchange

    May 5, 2012 · After running the following command: g++ lex.yy.c -lfl I get the following error: /usr/bin/ld: cannot find -lfl How can I solve it?

  2. Unable to use -lfl on NixOS - Unix & Linux Stack Exchange

    Mar 13, 2021 · -lfl is for libfl, which comes from flex package. That is completely different from -lc, which is for libc and comes from glibc package. How are you building the package and what is …

  3. What actually is causing `The System Can not find the file specified ...

    Nov 25, 2022 · The problem comes from the very first line in your Makefile: run.exe: link This causes Make to try to figure out how to create link. It knows how to build link from link.o, so it …

  4. Can I force dnf to install an old version of a package?

    I want to install an older version of package <x>, and when I use dnf it only shows the current version of the package <x>. Is there any way to install an older versions using dnf ?

  5. "find: .: No such file or directory" while using find on the current ...

    I'm using an ancient version of SunOS. SunOS 4.1.3 to be exact. SMH. The reason I was getting "no such file or directory" was because it was stumbling upon symbolic links. I thought perhaps …

  6. Gcc : ld cannot find -lc - Unix & Linux Stack Exchange

    Sep 11, 2015 · ld is the linker, i.e. the program that ties together the code that you wrote with the preexisting library code. -lc means the library which is stored in the file libc.a and which is …

  7. CentOS 8 - /usr/bin/ld: cannot find -lnsl - Unix & Linux Stack …

    Jan 4, 2021 · I am working on a new CentOS 8 server to replace an aging CentOS 6 server. Most everything is working and I am having the primary users test out everything they use the …

  8. How to install Splint? - Unix & Linux Stack Exchange

    Mar 5, 2022 · @jsbillings I have added the output from make and make install. Looking at near the end of the output of make, it appears that Splint got installed, but trying to use splint gives a …

  9. Replace string in a huge (70GB), one line, text file

    Dec 29, 2017 · I am thinking that a tool that can only do search and replace, but not any more complex regex, would be faster. It would also not benefit from doing a line at a time, so would …