Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Login
Remember
Register
Ask
Q&A
All Activity
Hot!
Unanswered
Tags
Users
Ask a Question
Ask a Question
Categories
All categories
Topic[话题] (13)
Life[生活] (4)
Technique[技术] (2.1m)
Idea[创意] (3)
Jobs[工作] (2)
Others[杂七杂八] (18)
Code Example[编程示例] (0)
Recent questions tagged makefile
0
votes
564
views
1
answer
makefile - Why does GNU make delete a file
I've got a slightly hackish makefile for running tests: ### Run the tests tests := tests/test1 tests/ ... might have introduced some mistakes. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
675
views
1
answer
makefile - when multiple pattern rules match a target
The GNU make manual says It is possible that more than one pattern rule will meet these criteria. In that case, ... not. What am I missing? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
469
views
1
answer
makefile - How to get "at most once" semantics in variable assignments?
Shell commands sometimes take a long time to run, so you may not want to do VAR = $(shell slow-cmd) (with =, ... V2 VALUE)) .PHONY: all foo bar See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
649
views
1
answer
makefile - Linking shared library in linux kernel
I would like to modify the linux kernel. I would like to use functions from a shared library (an .so file) ... library to gain an object file. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
651
views
1
answer
makefile - How to use redirection in cmake add_test
I have a console application called "foo", which takes a reference text file as input (in.txt) and generates ... That would be the second step. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
758
views
1
answer
makefile - Installation of doxygen and error in make command
I am trying to install doxygen in my CentOs 6.3 machine and I am getting this error. Any ideas?? [root@dell1 doxygen ... : *** [install] Error 1 See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
650
views
1
answer
makefile - Run make in each subdirectory
I have a directory (root_dir), that contains a number of sub-directories (subdir1, subdir2, ...). I want to ... following: $(MAKE) -C subdir See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
608
views
1
answer
makefile - How to "make" existing Linux kernel module driver after modifying the driver source code
I have made some trivial modifications to a Linux USB Wi-Fi card driver to insert some logging (printk statements). ... need for the next step? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
595
views
1
answer
makefile - gcc error: wrong ELF class: ELFCLASS64
I was trying to compile a program using an external compiled object coreset.o. I wrote the public01.c test file ... : ld returned 1 exit status See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
807
views
1
answer
makefile - CMAKE RPATH not working - could not find shared object file
I am trying to get rid of setting LD_LIBRARY_PATH everytime time I run my program. After adding in the library and ... What else am I missing? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
556
views
1
answer
makefile pattern rules without recipes
I'm observing an interesting behavior of make and I wonder if there is a reasonable explanation to it besides a bug ... it's supposed to work? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
522
views
1
answer
makefile - How to make a failing $(shell) command interrupt Make
I have a Makefile that starts by running a tool before applying the build rules (which this tool writes for ... system shell. Any suggestion? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
460
views
1
answer
makefile - How to undo intermediate file deletion
I have a software stack that creates some intermediate files as a part of build process. There ... fact_test_main.c fact_test_without_proxies.o See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
472
views
1
answer
makefile - GNU Make. Why this complex syntax to generate dependencies?
I'm reading Managing Projects with GNU Make, and found this example in Chapter 2.7 - Automatic Dependency Generation. ... do these on the fly. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
575
views
1
answer
makefile - make: Using target specific variables in prerequisites
I'm trying to write a Makefile where prerequisites using target specific variables version= target1: override version=1 ... I'm doing wrong? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
433
views
1
answer
makefile - How does the make "-j" option actually work?
From the man pages: -j [jobs], --jobs[=jobs] Specifies the number of jobs (commands) to run simultaneously. ... are the criteria used. thanks. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
474
views
1
answer
makefile - Building GPL C program with CUDA module
I am attempting to modify a GPL program written in C. My goal is to replace one method with a CUDA implementation, ... I'm out of my realm) See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
429
views
1
answer
makefile - Cygwin make error : *** target pattern contains no `%'
I got this error while (re)building, using cygwin make.exe version :3.81. Error : *** target pattern contains no `%'. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
1.8k
views
1
answer
makefile - In GNU Make, how do I convert a variable to lower case?
This is a silly question, but.... with GNU Make: VAR = MixedCaseText LOWER_VAR = $(VAR,lc) default: ... in LOWER_VAR being an empty string. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
524
views
1
answer
makefile - Building Android from sources: unsupported reloc 43
When I'm compiling Android 5.1.1, I get dozens of errors like this: ... ... ... libnativehelper/ ... without it. What might be wrong? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
820
views
1
answer
makefile - gnu make: list the values of all variables (or "macros") in a particular run
How can I list the current value of all variables (also called macros) in a Makefile when running make? E.g. ... /home/johv/src/test/make-logs See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
1.4k
views
1
answer
makefile - How to change the extension of each file in a list with multiple extensions in GNU make?
In a GNU makefile, I am wondering if it is possible, with an file list input, to make a file list ... to replace it to correct extension. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
593
views
1
answer
makefile - GNU make: should the number of jobs equal the number of CPU cores in a system?
There seems to be some controversy on whether the number of jobs in GNU make is supposed to be equal to the ... that supports one or the other? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
504
views
1
answer
makefile - How to manage C header file dependencies?
I've a lot of C files, some have a header (.h), some files not. Here's my makefile : .SUFFIXES: SRC : ... . How can I manage this case? Thanks See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
567
views
1
answer
makefile - Make error of mixed implicit and normal rules
When building an open source project I met error of: make subdir=manual -C manual ..=../ subdir_lib Makefile ... target-directory) 237: touch $@ See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
589
views
1
answer
makefile - GNU Make pattern to build output in different directory than src
I'm trying to create a Makefile which places my .o files in a different directory than my source files. I'm trying ... (INC_DEBUG) -c $< -o $@ See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
1.4k
views
1
answer
makefile - Make error for ifeq: syntax error near unexpected token
I'm writing a Makefile that does string matching at one place, the code is like: if test ...; then shell ... to call the shell. Thank you. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
0
votes
887
views
1
answer
makefile - Hunk #1 FAILED at 1. What's that mean?
I get the following error when running make, and I have no idea what it means or what to do about it. Can ... VLC for win32 (using linux). See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
makefile
Page:
« prev
1
2
3
4
5
next »
Ask a question:
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question
Just Browsing Browsing
[1] Scale Y axis of matplotlib plot in jupyter notebook
[2] vue组件拆分
[3] java - Where is AOSP surfaceflinger initiated?
[4] 请教一下created,mounted,$nextTick的关系?
[5] 国外有Outsystems、Mendix、微软等低代码大厂,国内有哪些?
[6] react native - Retrieving multiple objects from Django REST API
[7] python - Setup the HstoreField type Django
[8] verilog - How can I automatically scale a $display column width?
[9] python - Numpy matrix multiplication gives slightly different result in multiprocessing pool
[10] 前端工作碰到哪些业务不能做?
2.1m
questions
2.1m
answers
60
comments
57.0k
users
Most popular tags
javascript
python
c#
java
How
android
c++
php
ios
html
sql
r
c
node.js
.net
iphone
asp.net
css
reactjs
jquery
ruby
What
Android
objective
mysql
linux
Is
git
Python
windows
Why
regex
angular
swift
amazon
excel
algorithm
macos
Java
visual
how
bash
Can
multithreading
PHP
Using
scala
angularjs
typescript
apache
spring
performance
postgresql
database
flutter
json
rust
arrays
C#
dart
vba
django
wpf
xml
vue.js
In
go
Get
google
jQuery
xcode
jsf
http
Google
mongodb
string
shell
oop
powershell
SQL
C++
security
assembly
docker
Javascript
Android:
Does
haskell
Convert
azure
debugging
delphi
vb.net
Spring
datetime
pandas
oracle
math
Django
联盟问答网站-Union QA website
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
广告位招租
...