518 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
27
views
Can I trigger an nmake .mak file build target based on SVN revision?
I have a project in an SVN repository that is built with nmake on Windows. I have specified a mymak.mak file with a build target:
my_target: a_second_target a_third_target
... a build action ...
Helena's user avatar
- 1,127
0
votes
0
answers
177
views
How to dissect 5G RRC L3 messsages from L1 packets Tx_Data.request (FAPI logs) in wireshark using a custom dissector DLL?
I am working at the PHY (L1) layer in a 5G NR stack implementation. At this layer, I receive Tx_Data.request messages from MAC (as per Small Cell Forum FAPI interface). These contain transport blocks ...
0
votes
1
answer
225
views
How do I get nmake onto my system so pip / cmake can use it for installation
I'm trying to install an obscure scientific python package "pycotools3" on windows 10 in conda using pip (3.6.9 environment). I use it in my research software which runs fine on osx. It's an ...
0
votes
0
answers
363
views
Having problems building Libcurl x64 library for Visual Studio 2022
I have cloned the latest version of LibCurl onto my machine and am trying to build a static debug instance with nMake to use in my Visual Studio 2022 project. I have been referring to this winbuild ...
0
votes
0
answers
45
views
How do I nmake openssl3.4.0 in win32
I'm trying nmake openssl3.4.0 in win32, but occure some error, "error LNK2001: 无法解析的外部符号 OPENSSL_UplinkTable", could someone give me some suggestions?
libcrypto-shlib-bio_dump.obj : error ...
0
votes
1
answer
144
views
argon2_elixir -Has absolutely anyone in the world managed to install this natively on windows? or have any work arounds
It starts with this error:
could not compile dependency :argon2_elixir, "mix compile" failed. Errors may have been logged above. You can recompile this dependency with "mix deps....
2
votes
1
answer
182
views
build C++ program by qmake,nmake in windows11 ,but can not run
My C++ program source code at work is build with Qt5 on Windows 11(cross platform code, linux works well), which contains several project and all belong to One software of my company.I have question ...
2
votes
1
answer
857
views
How to compile PHP on Windows with Visual Studio 2022 Community Edition
Overall problem
Microsoft only offers their latest installer called VisualStudioSetup.exe for community edition which is at the time of writing VS2022: https://visualstudio.microsoft.com/vs/older-...
1
vote
1
answer
80
views
Preprocessors in the BSD and GNU make build systems
Microsoft's nmake build system has a wonderful thing called a preprocessor.
For example, if I write the following in my make file
!IFDEF SOMEMACRO
target1 : dependent1
command1
terget2 : ...
1
vote
1
answer
533
views
nmake Makefile Error: LINK : fatal error LNK1104: cannot open file 'LIBCMT.lib'
I am trying to compile a C project using a nmake makefile on Windows with Visual Studio 2019. When I run the compilation commands manually in the Developer Command Prompt, everything works fine. ...
1
vote
1
answer
61
views
Propagate error code from recursive nmake on Windows
I have the following recursive makefile for nmake on Windows:
MODULES = admin char mailnews merintr intro dm chess
all:
-@for %i in ($(MODULES)) do @if EXIST %i (cd %i && $(MAKE) /$(...
1
vote
2
answers
723
views
Using nmake for program slightly more complicated than hello world
I have Visual Studio 2022 Community and have downloaded some c astronomy software, NOVAS, from the US Naval Observatory. I have programmed in c years ago but am not up on compiling with the command ...
1
vote
0
answers
104
views
C code along with assembly code - debugging and knowing intermediate values
I have a repo where code is jumping from C/CPP code to assembly code. Although I want to debug the code parts of assembly code , I am not exactly sure on how to do the same. I want to know ...
2
votes
1
answer
110
views
The values of macros (variables) in the NMAKE preprocessor directive are not expanded
Makefile has a rule like this:
DIR_DEPENDS = F:\depends
!IF !EXIST ("$(DIR_DEPENDS)")
! IF [$(MKD) "$(DIR_DEPENDS)"]
! ENDIF
!ENDIF
DIR_DWNLOAD = $(DIR_DEPENDS)\download
!IF !...
1
vote
1
answer
249
views
How do I call nmake from a Makefile?
I have a directory with a Makefile, and a subdirectory, .\subdir, with its own Makefile. I am trying to call nmake from the top Makefile like so
SUB_DIR=.\subdir
test.exe:
$(MAKE) -C $(SUB_DIR)
...