make

  1. Incnis Mrsi

    How I built a module

    Hello. Due to non-standard operational requirements I attempted to modify a module, namely /usr/src/sys/net/if_stf.c (instead of trying more conventional workarounds). This has been a “FreeBSD 12.1-RELEASE r354233 GENERIC amd64” system without any prior attempts to build kernel, without changes...
  2. pcoppock1

    Compiling a Rust Kernel Module

    As part of an undergraduate project at the Georgia Institute of Technology I am attempting to compile a basic kernel module in Rust. I found this GitHub repository: https://github.com/johalun/echo, but the code is three years old, and I ran into an error I don't know how to fix. Since then...
  3. D

    make buildworld speed up possibilities

    Im new to freebsd and want/have to compile the system by myself. are there some tweaks or pro-tipps to speed up the whole process (besides the -j option)? what to do if the compilation fails? what will happen next if I cancel the process mid compilation? 'make' should begin from the point which...
  4. A

    Add C++ to Makefile

    I have 3rd party build Makefile for embedded application. The application "progress / results " is via the embedded hadrware ( I temporary do not have ) , not to "stadard" terminal / console. For software development / debugging I like to add ability to either do standard C "printf" or...
  5. Farhan Khan

    Append arguments to end of compile line - gcc fails where clang links

    Hi all, TLDR; Is there a way to have make append arguments at the end of the final build command or at least after the object files? I am trying to statically link against a library using the build process (pardon my terminological mistakes). In my Makefile, I am doing this: LDFLAGS+=...
  6. cederom

    12.0-RELEASE -> 13.0-CURRENT breaks make config

    Hello world :-) I have switched from 12.0-RELEASE to 13.0-CURRENT. Replaced kernel and base. Now I want to recompile all ports with poudriere.. 1. Make config on all ports shows some core dump thus defaulting all my configs. How can I fix that? How can I switch debug / verbose on 'make config'...
  7. arseniogut

    Automatic license agreement per package

    When I make install a port requiring several dependencies of varying licenses, what flag or option can I indicate to install all software and automatically accept their license terms?
  8. sidetone

    pkgbase instructions?

    These are the instructions for pkgbase? https://wiki.freebsd.org/PkgBase just relate it to 12.0 releng, instead of head. cd /usr/src make [make flags] buildworld make [make flags] buildkernel make packages /usr/local/etc/pkg/repos/FreeBSD-base.conf # FreeBSD base system repository...
  9. B

    Openoffice 4 install on FreeBSD 12 Fails Fast on Make

    Hello, I'm running on a fresh install of FreeBSD 12, with FAMP installed and the general 1st 10 things you do to a fresh install, as well as the latest gnome desktop. Until now, everything has gone quite smoothly. Now I'm installed Openoffice 4, and the first command line string I give it, and...
  10. DiscmanDaemon

    manually mark a port as installed

    Hello all, I am attempting to build firefox on ARM64. As you may know, this is problematic on account of Rust (a dependency of Firefox) being broken on aarch64. However, thanks to the efforts of the rust port team, there are some binary versions of Rust I want to try out and see if firefox can...
  11. S

    make release in custom directory

    Hi all, I'm trying to build FreeBSD from scratch in a custom directory. In my line of testing, I was able to get to start to finish by using the default directories (/usr/src and /usr/obj). However, I would like to now use a custom directory to specify where the source is and where the object...
  12. nik0tine

    Solved New Member! I made a mistake with make var: CPU_TYPE=typo and blocked make

    Hello Community! I made an account to interact with you, I am a semi-new user; 'young' enough to not be able to reset the variables you put after make install like this: (DISABLE_VULNERABILITES=YES). I put a wrong value and I cannot build unless i clear it. Where do I look? The handbook does...
  13. B

    Cannot mix incompatible libraries

    Hello whoever is reading this. I have been stuck in the same...you know what I mean. I have a problem with VirtualBox. NO matter of the procedure that I make for install this program, will be pkg, using ports, whatever. When it finish its installation, and I try to run this program, ALWAYS I get...
  14. J

    C POSIX compliant Makefile - Pattern Rules?

    I'm trying to remove any implementation specific (GNU Make) details from my Makefiles but having a hard time fixing some issues. The structure of my projects is like so; myapp/ Makefile src/ foo/ foo1.c foo2.c bar/ bar1.c obj/ 1) The mere presence of an...
  15. Maelstorm

    Solved make fails when building the docs

    I'm trying to compile the documentation from the documentation project, and I am getting this error: strata:/usr/doc 551 ### ->make Warning: Object directory not changed from original /usr/doc ===> en_US.ISO8859-1 (all) Warning: Object directory not changed from original...
  16. W

    Solved make doesn't recognize Makefile on FreeBSD 11

    Hi, After migrate some Makefile from FreeBSD6 to new one (FreeBSD11) make file doesn't work. Maybe this is caused by something else ? I don't know. Currently I have even such basic Makefile: first: @bin/generator.pl and after make command I get: make: exec(bin/generator.pl) failed...
  17. N

    PEFS no longer working after FreeBSD update

    Hello all, I have a problem with PEFS; I updated to FreeBSD RELEASE 11.1 using freebsd-update upgrade -r 11.1-RELEASE, as per the handbook, and PEFS stopped working: pefs: cannot find or load "pefs" kernel module Running kldstat showed no PEFS module loaded, and kldload pefs.ko also failed...
  18. N

    Solved Pidgin won't build

    Hello I would like to build and install net-im/pidgin, but the process halts due to a missing dependency: ... checking for X11... yes checking for XScreenSaverRegister in -lXext... no checking for XScreenSaverRegister in -lXss... no configure: error: XScreenSaver extension development headers...
  19. N

    Solved Maintaining packages with custom options

    Hi all, I'd like to follow the quarterly package repository (because I value stability and reliability over new features), but I need to have a few packages compiled with custom options, and this results in a problem: Ports does not have a quarterly release, only a "rolling release" of sorts...
  20. M

    clean reinstall of ssmtp port

    Yesterday I ran the following: cd /usr/ports/mail/ssmtp; make install replace clean After about a minute it looked like ssmtp was successfully installed. Since then I've been struggling to get ssmtp working, so would like to start again from scratch. I removed it with: cd /usr/ports/mail/ssmtp...
Back
Top