-------------- Clean: Win32 Release in libapr ---------------
Cleaned "libapr - Win32 Release"
-------------- Build: Win32 Release in libapr ---------------
mingw32-gcc.exe -O2 -g -W -DWIN32 -DNDEBUG -D_WINDOWS -DAPR_DECLARE_EXPORT -DWINNT -I.\include -I.\include\private -I.\include\arch\win32 -I.\include\arch\unix -ID:\temp\expat\expat-2.0.1\lib -c D:\temp\asf\apr\trunk\atomic\win32\apr_atomic.c -o Release\atomic\win32\apr_atomic.o
...
mingw32-g++.exe -shared -Wl,--output-def=Release\libapr-2.dll.def -Wl,--out-implib=Release\libapr-2.dll.a -Wl,--dll -LD:\temp\expat\expat-2.0.1\win32\bin\Release\dlls Release\atomic\win32\apr_atomic.o Release\buckets\apr_brigade.o Release\buckets\apr_buckets.o Release\buckets\apr_buckets_alloc.o Release\buckets\apr_buckets_eos.o Release\buckets\apr_buckets_file.o Release\buckets\apr_buckets_flush.o Release\buckets\apr_buckets_heap.o Release\buckets\apr_buckets_mmap.o Release\buckets\apr_buckets_pipe.o Release\buckets\apr_buckets_pool.o Release\buckets\apr_buckets_refcount.o Release\buckets\apr_buckets_simple.o Release\buckets\apr_buckets_socket.o Release\crypto\apr_md4.o Release\crypto\apr_md5.o Release\crypto\apr_sha1.o Release\crypto\getuuid.o Release\crypto\uuid.o Release\dbd\apr_dbd.o Release\dbd\apr_dbd_freetds.o Release\dbd\apr_dbd_mysql.o Release\dbd\apr_dbd_odbc.o Release\dbd\apr_dbd_oracle.o Release\dbd\apr_dbd_pgsql.o Release\dbd\apr_dbd_sqlite2.o Release\dbd\apr_dbd_sqlite3.o Release\dbm\apr_dbm.o Release\dbm\apr_dbm_berkeleydb.o Release\dbm\apr_dbm_gdbm.o Release\dbm\apr_dbm_sdbm.o Release\dbm\sdbm\sdbm.o Release\dbm\sdbm\sdbm_hash.o Release\dbm\sdbm\sdbm_lock.o Release\dbm\sdbm\sdbm_pair.o Release\dso\win32\dso.o Release\encoding\apr_base64.o Release\file_io\unix\copy.o Release\file_io\unix\fileacc.o Release\file_io\unix\filepath_util.o Release\file_io\unix\fullrw.o Release\file_io\unix\mktemp.o Release\file_io\unix\tempdir.o Release\file_io\win32\buffer.o Release\file_io\win32\dir.o Release\file_io\win32\filedup.o Release\file_io\win32\filepath.o Release\file_io\win32\filestat.o Release\file_io\win32\filesys.o Release\file_io\win32\flock.o Release\file_io\win32\open.o Release\file_io\win32\pipe.o Release\file_io\win32\readwrite.o Release\file_io\win32\seek.o Release\hooks\apr_hooks.o Release\locks\win32\proc_mutex.o Release\locks\win32\thread_cond.o Release\locks\win32\thread_mutex.o Release\locks\win32\thread_rwlock.o Release\memcache\apr_memcache.o Release\memory\unix\apr_pools.o Release\misc\unix\errorcodes.o Release\misc\unix\getopt.o Release\misc\unix\otherchild.o Release\misc\unix\version.o Release\misc\win32\apr_app.o Release\misc\win32\charset.o Release\misc\win32\env.o Release\misc\win32\internal.o Release\misc\win32\misc.o Release\misc\win32\rand.o Release\misc\win32\start.o Release\misc\win32\utf8.o Release\mmap\unix\common.o Release\mmap\win32\mmap.o Release\network_io\unix\inet_ntop.o Release\network_io\unix\inet_pton.o Release\network_io\unix\multicast.o Release\network_io\unix\sockaddr.o Release\network_io\unix\socket_util.o Release\network_io\win32\sendrecv.o Release\network_io\win32\sockets.o Release\network_io\win32\sockopt.o Release\passwd\apr_getpass.o Release\poll\unix\poll.o Release\poll\unix\pollcb.o Release\poll\unix\pollset.o Release\poll\unix\select.o Release\poll\unix\wakeup.o Release\random\unix\apr_random.o Release\random\unix\sha2.o Release\random\unix\sha2_glue.o Release\shmem\win32\shm.o Release\strings\apr_cpystrn.o Release\strings\apr_fnmatch.o Release\strings\apr_snprintf.o Release\strings\apr_strings.o Release\strings\apr_strnatcmp.o Release\strings\apr_strtok.o Release\strmatch\apr_strmatch.o Release\tables\apr_hash.o Release\tables\apr_tables.o Release\threadproc\win32\proc.o Release\threadproc\win32\signals.o Release\threadproc\win32\thread.o Release\threadproc\win32\threadpriv.o Release\time\win32\time.o Release\time\win32\timestr.o Release\uri\apr_uri.o Release\user\win32\groupinfo.o Release\user\win32\userinfo.o Release\util-misc\apr_date.o Release\util-misc\apr_queue.o Release\util-misc\apr_reslist.o Release\util-misc\apr_rmm.o Release\util-misc\apr_thread_pool.o Release\util-misc\apu_dso.o Release\xlate\xlate.o Release\xml\apr_xml.o Release\xml\apr_xml_expat.o Release\libapr.res -o Release\libapr-2.dll --image-base 0x6EEC0000 --implib Release\libapr-2.lib -lkernel32 -ladvapi32 -lws2_32 -lmswsock -lole32 -lshell32 -lrpcrt4 -lexpat
mingw32-g++.exe: 0x6EEC0000: No such file or directory
mingw32-g++.exe: Release\libapr-2.lib: No such file or directory
Process terminated with status 1 (0 minutes, 25 seconds)
0 errors, 20 warnings
I suggest removing this linker option or fixing this linker option
The correct option might be this
or this
-Wl,--image-base=0x6EEC0000
or this
-Wl,"--image-base 0x6EEC0000"
Find the documentation of the compiler/Linker/ld to find the correct option.
Tim S.