Hi Bert,
On 03.06.2013 16:10, Bert Huijben wrote:
+1 this is a problem with cross compiling.
Spend a few hours multiple times to get an x64 build working on a Win32only
the problem is that usally gen_test_char.c includes the APR/APU headers
for no real reason, an thwn will fail because target = x64 while build
where gen_test_char.exe should run is x86; but you can try:
cl -DCROSS_COMPILE get_test_char.c
this should enable to build a gen_test_char.exe for the build platform
without APR/APU headers but just those from PSDK, and then you can
create the test_char.h manually, or probably it works if you put the exe
into the source tree (and hopefully it will not be rebuild); or it may
work too if you add the -DCROSS_COMPILE to the gen_test_char.dsp ...
Gün.